Help with evaluation: A few queries #6762
Roh-codeur
started this conversation in
General
Replies: 1 comment 4 replies
-
Hi 👋 , indeed support your use case. You can use JetStream to publish into a stream and have multiple consumers to receive both existing and new messages. You'll get that behavior if you set the Filters can be used to do server side filtering based on the subject, the consumer will then only get messages that match. With the deliver policy of all mentioned above, you'd get all messages matching the filter, and any subsequent messages. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
hi team,
I am evaluating this lib for my organization. I am wondering if this supports the below use cases. upon reading docs, I can see some of them are.
Publisher sends messages to a few topics
Multiple subscriber starts up
the subscribers should receive existing messages and then subsequent updates
Compaction/conflation
In order for above to work, messages with same id should be conflated/compacted. Subscribers should only ever receive the latest message for an id
Server side filtering
I want to be able to subscribe to a topic, but, with a filter. so, say, a topic has messages, I shoudl be able to subscribe with filter for id = xx. I should then receive state of world and subsequent updates with that filter
thanks!
Beta Was this translation helpful? Give feedback.
All reactions