mirror of
https://github.com/hibiken/asynq.git
synced 2026-04-26 07:25:56 +03:00
[GH-ISSUE #410] Can the consumer group function be supported? #1195
Labels
No labels
CLI
bug
designing
documentation
duplicate
enhancement
good first issue
good first issue
help wanted
idea
invalid
investigate
needs-more-info
performance
pr-welcome
pull-request
question
wontfix
work in progress
work in progress
work-around-available
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/asynq#1195
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @erosiners on GitHub (Mar 5, 2022).
Original GitHub issue: https://github.com/hibiken/asynq/issues/410
Originally assigned to: @hibiken on GitHub.
@hibiken commented on GitHub (Mar 6, 2022):
@erosiners Thank you for opening an issue!
Could you provide more details? It'd be easier to understand if you could provide an example use case.
@erosiners commented on GitHub (Mar 6, 2022):
For example, after a user has successfully registered, multiple consumers may send emails or text messages to users at the same time and add points to users when a message is published. Emails and text messages are independent services, and they all need to subscribe to receive messages before processing them. The current single-consumer model cannot complete the appeal function.
My English is not good, I hope you can understand
@hibiken commented on GitHub (Mar 6, 2022):
@erosiners Thank you for providing more details!
Asynq does not support something like Kafka consumer group, so you need to use a different approach.
Using the example above, I can think of two approaches:
Let me know if you have any questions :)
@hibiken commented on GitHub (Mar 22, 2022):
Closing this, feel free to reopen this issue if you have follow-up questions :)