Skip to content
代码片段 群组 项目
未验证 提交 391b5d79 编辑于 作者: Matthias Käppler's avatar Matthias Käppler 提交者: GitLab
浏览文件

Merge branch 'mg-sidekiq-version-queues' into 'master'

Register Sidekiq queues only from routing rules

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/149510



Merged-by: default avatarMatthias Käppler <mkaeppler@gitlab.com>
Approved-by: default avatarMatthias Käppler <mkaeppler@gitlab.com>
Reviewed-by: default avatarMatthias Käppler <mkaeppler@gitlab.com>
Co-authored-by: default avatarGregorius Marco <gmarco@gitlab.com>
Co-authored-by: default avatarSylvester Chin <schin@gitlab.com>
No related branches found
No related tags found
无相关合并请求
...@@ -6,11 +6,13 @@ def self.install! ...@@ -6,11 +6,13 @@ def self.install!
# The Sidekiq client API always adds the queue to the Sidekiq queue # The Sidekiq client API always adds the queue to the Sidekiq queue
# list, but mail_room and gitlab-shell do not. This is only necessary # list, but mail_room and gitlab-shell do not. This is only necessary
# for monitoring. # for monitoring.
queues = SidekiqConfig.worker_queues queues = ::Gitlab::SidekiqConfig.routing_queues
if queues.any? if queues.any?
Sidekiq.redis do |conn| Sidekiq.redis do |conn|
conn.sadd('queues', queues) conn.multi do |multi|
multi.del('queues')
multi.sadd('queues', queues)
end
end end
end end
rescue ::Redis::BaseError, SocketError, Errno::ENOENT, Errno::EADDRNOTAVAIL, Errno::EAFNOSUPPORT, Errno::ECONNRESET, Errno::ECONNREFUSED rescue ::Redis::BaseError, SocketError, Errno::ENOENT, Errno::EADDRNOTAVAIL, Errno::EAFNOSUPPORT, Errno::ECONNRESET, Errno::ECONNREFUSED
......
...@@ -4,16 +4,40 @@ ...@@ -4,16 +4,40 @@
RSpec.describe Gitlab::SidekiqVersioning, :clean_gitlab_redis_queues do RSpec.describe Gitlab::SidekiqVersioning, :clean_gitlab_redis_queues do
before do before do
allow(Gitlab::SidekiqConfig).to receive(:worker_queues).and_return(%w[foo bar]) allow(Gitlab::SidekiqConfig).to receive(:routing_queues).and_return(%w[foo bar])
end end
subject(:queues) { Sidekiq::Queue.all.map(&:name) }
describe '.install!' do describe '.install!' do
it 'registers all versionless and versioned queues with Redis' do it 'registers all versionless and versioned queues with Redis' do
described_class.install! described_class.install!
queues = Sidekiq::Queue.all.map(&:name)
expect(queues).to include('foo') expect(queues).to include('foo')
expect(queues).to include('bar') expect(queues).to include('bar')
end end
context 'when some queues outside routing rules were already registered' do
before do
Sidekiq.redis do |conn|
conn.sadd('queues', 'a', 'b', 'c', 'foo')
end
end
it 'removes the queues outside routing rules' do
described_class.install!
expect(queues).not_to include('a')
expect(queues).not_to include('b')
expect(queues).not_to include('c')
end
it 'registers all queues in routing rules' do
described_class.install!
expect(queues).to include('foo')
expect(queues).to include('bar')
end
end
end end
end end
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册