Skip to content
代码片段 群组 项目
未验证 提交 58627ea4 编辑于 作者: Gregorius Marco's avatar Gregorius Marco 提交者: GitLab
浏览文件
上级 b9fe3f97
No related branches found
No related tags found
无相关合并请求
---
name: use_primary_and_secondary_stores_for_db_load_balancing
feature_issue_url: https://gitlab.com/gitlab-com/gl-infra/data-access/durability/team/-/issues/39
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/175822
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/509561
milestone: '17.8'
group: group::durability
type: gitlab_com_derisk
default_enabled: false
---
name: use_primary_store_as_default_for_db_load_balancing
feature_issue_url: https://gitlab.com/gitlab-com/gl-infra/data-access/durability/team/-/issues/39
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/175822
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/509562
milestone: '17.8'
group: group::durability
type: gitlab_com_derisk
default_enabled: false
...@@ -10,6 +10,7 @@ module Redis ...@@ -10,6 +10,7 @@ module Redis
ALL_CLASSES = [ ALL_CLASSES = [
Gitlab::Redis::BufferedCounter, Gitlab::Redis::BufferedCounter,
Gitlab::Redis::Cache, Gitlab::Redis::Cache,
Gitlab::Redis::ClusterDbLoadBalancing,
Gitlab::Redis::DbLoadBalancing, Gitlab::Redis::DbLoadBalancing,
Gitlab::Redis::FeatureFlag, Gitlab::Redis::FeatureFlag,
*Gitlab::Redis::Queues.instances.values, # dynamically adds QueueShard* classes *Gitlab::Redis::Queues.instances.values, # dynamically adds QueueShard* classes
......
# frozen_string_literal: true
module Gitlab
module Redis
class ClusterDbLoadBalancing < ::Gitlab::Redis::Wrapper
class << self
# The data we store on DbLoadBalancing used to be stored on SharedState.
def config_fallback
SharedState
end
end
end
end
end
...@@ -2,12 +2,16 @@ ...@@ -2,12 +2,16 @@
module Gitlab module Gitlab
module Redis module Redis
class DbLoadBalancing < ::Gitlab::Redis::Wrapper class DbLoadBalancing < ::Gitlab::Redis::MultiStoreWrapper
class << self class << self
# The data we store on DbLoadBalancing used to be stored on SharedState. # The data we store on DbLoadBalancing used to be stored on SharedState.
def config_fallback def config_fallback
SharedState SharedState
end end
def multistore
MultiStore.create_using_pool(ClusterDbLoadBalancing.pool, pool, store_name)
end
end end
end end
end end
......
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Gitlab::Redis::ClusterDbLoadBalancing, feature_category: :scalability do
include_examples "redis_new_instance_shared_examples", 'cluster_db_load_balancing', Gitlab::Redis::SharedState
end
...@@ -5,4 +5,10 @@ ...@@ -5,4 +5,10 @@
RSpec.describe Gitlab::Redis::DbLoadBalancing, feature_category: :scalability do RSpec.describe Gitlab::Redis::DbLoadBalancing, feature_category: :scalability do
include_examples "redis_new_instance_shared_examples", 'db_load_balancing', Gitlab::Redis::SharedState include_examples "redis_new_instance_shared_examples", 'db_load_balancing', Gitlab::Redis::SharedState
include_examples "redis_shared_examples" include_examples "redis_shared_examples"
include_examples "multi_store_wrapper_shared_examples"
it 'migrates from self to ClusterDbLoadBalancing' do
expect(described_class.multistore.secondary_pool).to eq(described_class.pool)
expect(described_class.multistore.primary_pool).to eq(Gitlab::Redis::ClusterDbLoadBalancing.pool)
end
end end
...@@ -22,12 +22,6 @@ ...@@ -22,12 +22,6 @@
end end
end end
it 'borrows connection' do
described_class.with do |conn|
expect(Thread.current[conn.borrow_counter]).to eq(1)
end
end
context 'when running on single-threaded runtime' do context 'when running on single-threaded runtime' do
before do before do
allow(Gitlab::Runtime).to receive(:multi_threaded?).and_return(false) allow(Gitlab::Runtime).to receive(:multi_threaded?).and_return(false)
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册