Skip to content
GitLab
菜单
为什么选择 GitLab
定价
联系销售
探索
为什么选择 GitLab
定价
联系销售
探索
登录
获取免费试用
主导航
搜索或转到…
项目
GitLab
管理
动态
成员
标记
计划
议题
议题看板
里程碑
迭代
需求
代码
合并请求
仓库
分支
提交
标签
仓库图
比较修订版本
代码片段
锁定的文件
构建
流水线
作业
流水线计划
测试用例
产物
部署
发布
Package registry
Container registry
模型注册表
运维
环境
Terraform 模块
监控
事件
服务台
分析
价值流分析
贡献者分析
CI/CD 分析
仓库分析
代码评审分析
议题分析
洞察
模型实验
效能分析
帮助
帮助
支持
GitLab 文档
比较 GitLab 各版本
社区论坛
为极狐GitLab 提交贡献
提交反馈
隐私声明
快捷键
?
新增功能
4
代码片段
群组
项目
显示更多面包屑
gitlab-cn
GitLab
提交
7d4ffdbb
未验证
提交
7d4ffdbb
编辑于
1 year ago
作者:
Manoj M J
提交者:
GitLab
1 year ago
浏览文件
操作
下载
补丁
差异文件
Add specs for changes surrounding "next" desired sharding key
上级
1a6efe58
No related branches found
No related tags found
无相关合并请求
变更
1
隐藏空白变更内容
行内
左右并排
显示
1 个更改的文件
ee/spec/lib/gitlab/database/desired_sharding_key_spec.rb
+75
-33
75 个添加, 33 个删除
ee/spec/lib/gitlab/database/desired_sharding_key_spec.rb
有
75 个添加
和
33 个删除
ee/spec/lib/gitlab/database/desired_sharding_key_spec.rb
+
75
−
33
浏览文件 @
7d4ffdbb
...
@@ -15,43 +15,67 @@
...
@@ -15,43 +15,67 @@
end
end
end
end
it
'must be possible to backfill it via backfill_via'
do
context
'for tables that already have a backfilled, non-nullable sharding key on their parent'
do
desired_sharding_key_entries
.
each
do
|
entry
|
it
'must be possible to backfill it via backfill_via'
do
entry
.
desired_sharding_key
.
each
do
|
desired_column
,
details
|
desired_sharding_key_entries_not_awaiting_backfill_on_parent
.
each
do
|
entry
|
table
=
entry
.
table_name
entry
.
desired_sharding_key
.
each
do
|
desired_column
,
details
|
connection
=
Gitlab
::
Database
.
schemas_to_base_models
[
entry
.
gitlab_schema
].
first
.
connection
table
=
entry
.
table_name
sharding_key
=
desired_column
connection
=
Gitlab
::
Database
.
schemas_to_base_models
[
entry
.
gitlab_schema
].
first
.
connection
parent
=
details
[
'backfill_via'
][
'parent'
]
sharding_key
=
desired_column
foreign_key
=
parent
[
'foreign_key'
]
parent
=
details
[
'backfill_via'
][
'parent'
]
parent_table
=
parent
[
'table'
]
foreign_key
=
parent
[
'foreign_key'
]
parent_sharding_key
=
parent
[
'sharding_key'
]
parent_table
=
parent
[
'table'
]
parent_sharding_key
=
parent
[
'sharding_key'
]
connection
.
execute
(
"ALTER TABLE
#{
table
}
ADD COLUMN IF NOT EXISTS
#{
sharding_key
}
bigint"
)
connection
.
execute
(
"ALTER TABLE
#{
table
}
ADD COLUMN IF NOT EXISTS
#{
sharding_key
}
bigint"
)
# Confirming it at least produces a valid query
connection
.
execute
<<~
SQL
# Confirming it at least produces a valid query
UPDATE
#{
table
}
connection
.
execute
<<~
SQL
SET
#{
sharding_key
}
=
#{
parent_table
}
.
#{
parent_sharding_key
}
EXPLAIN UPDATE
#{
table
}
FROM
#{
parent_table
}
SET
#{
sharding_key
}
=
#{
parent_table
}
.
#{
parent_sharding_key
}
WHERE
#{
table
}
.
#{
foreign_key
}
=
#{
parent_table
}
.id
FROM
#{
parent_table
}
SQL
WHERE
#{
table
}
.
#{
foreign_key
}
=
#{
parent_table
}
.id
SQL
end
end
end
it
'the parent.belongs_to must be a model with the parent.sharding_key column'
do
desired_sharding_key_entries_not_awaiting_backfill_on_parent
.
each
do
|
entry
|
model
=
entry
.
classes
.
first
.
constantize
entry
.
desired_sharding_key
.
each
do
|
_column
,
details
|
parent
=
details
[
'backfill_via'
][
'parent'
]
parent_sharding_key
=
parent
[
'sharding_key'
]
belongs_to
=
parent
[
'belongs_to'
]
parent_association
=
model
.
reflect_on_association
(
belongs_to
)
expect
(
parent_association
).
not_to
be_nil
,
"Invalid backfill_via.parent.belongs_to:
#{
belongs_to
}
in db/docs for
#{
entry
.
table_name
}
"
parent_columns
=
parent_association
.
klass
.
columns
.
map
(
&
:name
)
expect
(
parent_columns
).
to
include
(
parent_sharding_key
)
end
end
end
end
end
end
end
it
'the parent.belongs_to must be a model with the parent.sharding_key column'
do
context
'for tables that do not already have a backfilled, non-nullable sharding key on their parent'
\
desired_sharding_key_entries
.
each
do
|
entry
|
'but only has a desired sharding key on their parent'
do
model
=
entry
.
classes
.
first
.
constantize
it
'the parent.belongs_to must be a model with a desired_sharding_key'
do
entry
.
desired_sharding_key
.
each
do
|
_column
,
details
|
desired_sharding_key_entries_awaiting_backfill_on_parent
.
each
do
|
entry
|
parent
=
details
[
'backfill_via'
][
'parent'
]
model
=
entry
.
classes
.
first
.
constantize
parent_sharding_key
=
parent
[
'sharding_key'
]
entry
.
desired_sharding_key
.
each
do
|
column
,
details
|
belongs_to
=
parent
[
'belongs_to'
]
parent
=
details
[
'backfill_via'
][
'parent'
]
parent_association
=
model
.
reflect_on_association
(
belongs_to
)
parent_table
=
parent
[
'table'
]
expect
(
parent_association
).
not_to
be_nil
,
belongs_to
=
parent
[
'belongs_to'
]
"Invalid backfil_via.parent.belongs_to:
#{
belongs_to
}
in db/docs for
#{
entry
.
table_name
}
"
sharding_key_of_parent
=
parent
[
'sharding_key'
]
parent_columns
=
parent_association
.
klass
.
columns
.
map
(
&
:name
)
parent_association
=
model
.
reflect_on_association
(
belongs_to
)
expect
(
parent_columns
).
to
include
(
parent_sharding_key
)
expect
(
parent_association
).
not_to
be_nil
,
"Invalid backfill_via.parent.belongs_to:
#{
belongs_to
}
in db/docs for
#{
entry
.
table_name
}
"
expect
(
desired_sharding_keys_of
(
parent_table
).
keys
).
to
include
(
column
)
expect
(
desired_sharding_keys_of
(
parent_table
).
keys
).
to
include
(
sharding_key_of_parent
)
end
end
end
end
end
end
end
...
@@ -72,4 +96,22 @@ def desired_sharding_key_entries
...
@@ -72,4 +96,22 @@ def desired_sharding_key_entries
entry
.
desired_sharding_key
.
present?
entry
.
desired_sharding_key
.
present?
end
end
end
end
def
desired_sharding_key_entries_not_awaiting_backfill_on_parent
::
Gitlab
::
Database
::
Dictionary
.
entries
.
select
do
|
entry
|
entry
.
desired_sharding_key
.
present?
&&
entry
.
desired_sharding_key
.
all?
{
|
_
,
details
|
details
[
'awaiting_backfill_on_parent'
].
blank?
}
end
end
def
desired_sharding_key_entries_awaiting_backfill_on_parent
::
Gitlab
::
Database
::
Dictionary
.
entries
.
select
do
|
entry
|
entry
.
desired_sharding_key
.
present?
&&
entry
.
desired_sharding_key
.
all?
{
|
_
,
details
|
details
[
'awaiting_backfill_on_parent'
]
}
end
end
def
desired_sharding_keys_of
(
table_name
)
Gitlab
::
Database
::
Dictionary
.
entries
.
find_by_table_name
(
table_name
).
desired_sharding_key
end
end
end
此差异已折叠。
点击以展开。
预览
0%
加载中
请重试
或
添加新附件
.
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
保存评论
取消
想要评论请
注册
或
登录