When upgrading to 16.8.1 ( from 16.7 ), sidekiq stopped working with "You are connecting to Redis 6.0.16, Sidekiq requires Redis 6.2.0 or greater" message. We are using omnibus but with an external redis instance.
Roll back to Sidekiq 6.x and announce Redis 6.0 deprecation.
announcing the sidekiq deprecation would provide better user experience but rolling back to Sidekiq 6 would block
redis gem upgrade which blocks Redis Cluster scaling since "redirection support in pipeline during resharding" is only supported in redis-cluster-client (https://github.com/redis-rb/redis-cluster-client/issues/37) -- on that note, I'll make a note to pause on the MR's progress until we make this decision
It looks like the zrangebyscore->zrange is the only change that requires redis 6.2. Could another option be to patch the https://github.com/sidekiq/sidekiq/blob/main/lib/sidekiq/redis_client_adapter.rb#L57 with a zrange to convert commands with byscore option into a zrangebyscore? Also override LUA_ZPOPBYSCORE to use the older zrangebyscore option. But this is similar to option 3 since the goal is to maintain sidekiq 7.x while giving users time to upgrade.
Option 3 might be a better balance between 1 and 2; we keep Sidekiq 7 while letting us announce the deprecation.
Yeah, if we are going to patch Sidekiq anyway, I was thinking we could just patch the zrange call and keep it at 7.2. So we keep the bug fixes from 7.1 to 7.2.
Not sure if we are affected with any of those though.
Would we have to vendor it to remove the Redis check?
I went ahead and prepared !142986 (merged) as a draft. Though vendoring the gem is not as ideal since that would prevent us from upgrading sidekiq easily for as long as the deprecation notice lasts.
Given we have a number of customers using Azure Cache for Redis, which only supports Redis 6 right now, I think vendoring may be the best short-term solution for now.
Given we have a number of customers using Azure Cache for Redis, which only supports Redis 6 right now, I think vendoring may be the best short-term solution for now.
To summarise the state of this issue: We have updated the documentation and the system check for Redis. Tentative follow-up tasks in bold below:
Next, we can (1) add Redis 6.0 support using !142986 (merged) and also pick it into 16.8 to support users in cloud ecosystems without managed Redis >= 6.2.
Once the Redis 6 support is available, we can (2) re-update the documentation and system checks. As highlighted in !142881 (comment 1747063752), the system check should warn about Redis 6.0 usage since it has reached EOL.
We could also (3) use Redis 6.0 docker containers in our CI instead of 6.2 so that we can catch such issues earlier.
To set expectations, GitLab product managers or team members can't make any promise if they will proceed with this.
However, we believe everyone can contribute,
and welcome you to work on this proposed change, feature or bug fix.
There is a bias for action,
so you don't need to wait. Try and spin up that merge request yourself.
If you need help doing so, we're always open to mentor you
to drive this change.