Add Redis pub/sub datastore#516
Merged
Merged
Conversation
30e48cd to
2fb9bc5
Compare
aaronpkahn
reviewed
Jun 17, 2026
|
|
||
| ## Reliable Acks | ||
| Fleet Telemetry can send ack messages back to the vehicle. This is useful for applications that need to ensure the data was received and processed. To enable this feature, set `reliable_ack_sources` to one of configured dispatchers (`kafka`,`kinesis`,`pubsub`,`zmq`, `mqtt`) in the config file. Reliable acks can only be set to one dispatcher per recordType. See [here](./test/integration/config.json#L8) for sample config. | ||
| Fleet Telemetry can send ack messages back to the vehicle. This is useful for applications that need to ensure the data was received and processed. To enable this feature, set `reliable_ack_sources` to one of configured dispatchers (`kafka`,`kinesis`,`pubsub`,`zmq`, `mqtt`, `redis`) in the config file. Reliable acks can only be set to one dispatcher per recordType. See [here](./test/integration/config.json#L8) for sample config. |
Collaborator
There was a problem hiding this comment.
minor:
Fleet Telemetry can send ack messages -> Fleet Telemetry sends ack messages
then
To tie acks to a datasource, set...
aaronpkahn
approved these changes
Jun 17, 2026
- Add a Redis dispatcher that publishes telemetry records over Redis
pub/sub, selectable per record type via the "redis" dispatch rule.
- Route each record to the per-VIN subscriber channels in a sorted set
(configurable prefix); entries scored with an epoch lease expiry are
purged when past due. With publish_vin_topics, also publish to the VIN
channel <namespace>_<txtype>_{<vin>}.
2fb9bc5 to
c97ef8c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
pub/sub, selectable per record type via the "redis" dispatch rule.
(configurable prefix); entries scored with an epoch lease expiry are
purged when past due. With publish_vin_topics, also publish to the VIN
channel {}.
Please select all options that apply to this change:
Checklist:
Confirm you have completed the following steps: