-
Notifications
You must be signed in to change notification settings - Fork 639
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Support disruptor as memory queue #4788
Comments
I want to try it. Can you tell me where to start? |
@jevinjiang The existing |
@Pil0tXia thank you~ |
I have a question while modifying the MessageQueue. If there are no subscribers, can I create a MessageQueue to store messages? 我有一个疑问, 如果说一个messageQueue不存在订阅者,我应该创建它吗 |
I think disruptor is not suitable for long-term storage of events。 |
The ideal relationship between producer, MessageQueue, and consumer is one-to-one-to-one. A consumer cannot subscribe to or retrieve messages from a non-existent MessageQueue. If the consumer declares the queue, there is a potential risk of discarding messages sent by the producer before declaring the queue. After a producer creates a new MessageQueue, you need to ensure that there is a corresponding consumer subscribing to this queue.
Messages stored in standalone mode will be lost after a reboot. This is acceptable. |
Search before asking
Feature Request
Support disruptor[1] as memory queue, for event processing.
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: