Skip to content
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

Ring sharding issues after v9.3.1 #2877

Open
dgreif opened this issue Jan 30, 2024 · 3 comments
Open

Ring sharding issues after v9.3.1 #2877

dgreif opened this issue Jan 30, 2024 · 3 comments

Comments

@dgreif
Copy link

dgreif commented Jan 30, 2024

Issue tracker is used for reporting bugs and discussing new features. Please use
stackoverflow for supporting issues.

After updating from v9.3.0 to v9.3.1, we started seeing issues where a pipeline to create a Redis Stream is no longer properly setting up the Stream. This issue persists on v9.4.0

Expected Behavior

Redis Ring should be able to run a pipeline to create a stream, then read from the same stream.

Current Behavior

Redis Ring sporadically fails. We run 80+ servers and a small percentage (1-5%) of them seem to write/read from mismatched shards.

Steps to Reproduce

  1. Set up a Ring shard
  2. Run an xgroup command and notice the firstKeyPosition is 1 instead of 2

Context (Environment)

We are running Redis Ring with 3 shards, with 80+ servers reading from them.

Detailed Description

I went through the v9.3.1 release one commit at a time to see which produced the issue, and I landed on 8c69548 as the source of the issue (cc @ofekshenawa as this was from your PR). Once I pinned that down, I focused in on some specific commands we are having issues with:

  1. Pipeline (These are used to create a Stream and set an expiration on it. This is a bit of a hack to get an empty stream created.)
  • xgroup create
  • xgroup destroy
  • expire
  1. exists (this checks to verify the stream exists and isn't expired)

After the changes from 8c69548, these commands execute without errors, but the exists check returns false on a small percentage of our servers. To me, the most likely reason is that the stream was created on a different shard than it's being read from.

I did a little digging locally and noticed that the changes to cmdFirstKeyPos do indeed change the first key position for the xgroup command. When it checked from CommandInfo, it got a key position of 2, but with the removal of CommandInfo, it now receives a key position of 1 (the default return value).

Possible Implementation

In terms of a fix, we could either bring back the CommandInfo being passed in to cmdFirstKeyPos, or we could add another case to the switch within cmdFirstKeyPos to explicitly handle the xgroup command and return 2

@dgreif
Copy link
Author

dgreif commented Feb 26, 2024

@ofekshenawa any thoughts on the best way to proceed here? Happy to open a PR, just not sure the right way to go in terms of reverting your changes vs making an exception for the xgroup command

@notcool11
Copy link

@dgreif , any progress here? Maybe the issue here is related?
#3009

There certainly seems to be something broken with Rings + Pipelines. Thanks!

@dgreif
Copy link
Author

dgreif commented May 31, 2024

@notcool11 unfortunately I haven't made any progress here due to lack of response from the project maintainers. I'd be happy to open a PR, but I'm not positive what the best approach would be. Looking through your issue, it does sound very similar, especially the idea of data simply not showing up in the shard, likely because it's in a different shard than expected

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants