-
Notifications
You must be signed in to change notification settings - Fork 999
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
Redis STREAM consumer group have duplicates #2294
Labels
bug
Something isn't working
Comments
@kirinnee thx for reporting the bug, I've already reproduced it and will fix it soon. |
BorysTheDev
added a commit
that referenced
this issue
Dec 20, 2023
partly fixes #2294 bug: id ">" means that the consumer want to receive only messages that were never delivered to any other consumer fix: added temporary tests results, the correct ones are commented out until we fix the blocking mechanism. Fix requested range for blocking operations
BorysTheDev
added a commit
that referenced
this issue
Dec 21, 2023
partly fixes #2294 bug: id ">" means that the consumer want to receive only messages that were never delivered to any other consumer fix: added temporary tests results, the correct ones are commented out until we fix the blocking mechanism. Fix requested range for blocking operations
BorysTheDev
added a commit
that referenced
this issue
Dec 22, 2023
partly fixes #2294 bug: id ">" means that the consumer want to receive only messages that were never delivered to any other consumer fix: added temporary tests results, the correct ones are commented out until we fix the blocking mechanism. Fix requested range for blocking operations
BorysTheDev
added a commit
that referenced
this issue
Dec 27, 2023
fixes #2294 bug: we unblock XREADGROUP cmd even if we don't have new values fix: added check with custom requirements for blocking comands
BorysTheDev
added a commit
that referenced
this issue
Dec 27, 2023
fixes #2294 bug: we unblock XREADGROUP cmd even if we don't have new values fix: added check with custom requirements for blocking comands
BorysTheDev
added a commit
that referenced
this issue
Jan 2, 2024
fixes #2294 bug: we unblock XREADGROUP cmd even if we don't have new values fix: added check with custom requirements for blocking comands
BorysTheDev
added a commit
that referenced
this issue
Jan 2, 2024
fixes #2294 bug: we unblock XREADGROUP cmd even if we don't have new values fix: added check with custom requirements for blocking comands
BorysTheDev
added a commit
that referenced
this issue
Jan 2, 2024
fixes #2294 bug: we unblock XREADGROUP cmd even if we don't have new values fix: added check with custom requirements for blocking comands
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Redis STREAM Consumer groups have duplicates
To Reproduce
Steps to reproduce the behavior:
dragonflydb
with dockerdocker exec -ti <container> redis-cli -a <password>
XGROUP CREATE pokenews pokenews-group 0 MKSTREAM
XREADGROUP GROUP pokenews-group ash COUNT 1 BLOCK 0 STREAMS pokenews >
XREADGROUP GROUP pokenews-group ash COUNT 1 BLOCK 0 STREAMS pokenews >
XADD pokenews * pokemon entei
both session 2 and session 3 receives the message.
Expected behavior
Only session 2 OR session 3 should receive the message, both of them are in the same consumer group
Environment (please complete the following information):
13.4.1
ghcr.io/dragonflydb/dragonfly:v1.13.0-ubuntu
1.13.0
Additional context
None
The text was updated successfully, but these errors were encountered: