Skip to content
GitLab
菜单
为什么选择 GitLab
定价
联系销售
探索
为什么选择 GitLab
定价
联系销售
探索
登录
获取免费试用
主导航
搜索或转到…
项目
GitLab
管理
动态
成员
标记
计划
议题
议题看板
里程碑
迭代
需求
代码
合并请求
仓库
分支
提交
标签
仓库图
比较修订版本
代码片段
锁定的文件
构建
流水线
作业
流水线计划
测试用例
产物
部署
发布
Package registry
Container registry
模型注册表
运维
环境
Terraform 模块
监控
事件
服务台
分析
价值流分析
贡献者分析
CI/CD 分析
仓库分析
代码评审分析
议题分析
洞察
模型实验
效能分析
帮助
帮助
支持
GitLab 文档
比较 GitLab 各版本
社区论坛
为极狐GitLab 提交贡献
提交反馈
隐私声明
快捷键
?
新增功能
4
代码片段
群组
项目
显示更多面包屑
gitlab-cn
GitLab
提交
be61bd22
提交
be61bd22
编辑于
1 year ago
作者:
Dmitry Gruzd
浏览文件
操作
下载
补丁
差异文件
Fix cluster reindexing preflight check
EE: true Changelog: fixed
上级
a3d87a08
Loading
Loading
无相关合并请求
变更
2
隐藏空白变更内容
行内
左右并排
显示
2 个更改的文件
ee/app/services/elastic/cluster_reindexing_service.rb
+7
-1
7 个添加, 1 个删除
ee/app/services/elastic/cluster_reindexing_service.rb
ee/spec/services/elastic/cluster_reindexing_service_spec.rb
+12
-0
12 个添加, 0 个删除
ee/spec/services/elastic/cluster_reindexing_service_spec.rb
有
19 个添加
和
1 个删除
ee/app/services/elastic/cluster_reindexing_service.rb
+
7
−
1
浏览文件 @
be61bd22
...
...
@@ -61,7 +61,13 @@ def initial!
return
false
end
expected_free_size
=
alias_names
.
sum
{
|
name
|
elastic_helper
.
index_size_bytes
(
index_name:
name
)
}
*
2
target_classes
=
current_task
.
target_classes
current_size
=
target_classes
.
sum
do
|
klass
|
name
=
elastic_helper
.
klass_to_alias_name
(
klass:
klass
)
elastic_helper
.
index_size_bytes
(
index_name:
name
)
end
expected_free_size
=
current_size
*
2
if
elastic_helper
.
cluster_free_size_bytes
<
expected_free_size
abort_reindexing!
(
"You should have at least
#{
expected_free_size
}
bytes of storage available to perform reindexing. Please increase the storage in your Elasticsearch cluster before reindexing."
)
return
false
...
...
此差异已折叠。
点击以展开。
ee/spec/services/elastic/cluster_reindexing_service_spec.rb
+
12
−
0
浏览文件 @
be61bd22
...
...
@@ -43,6 +43,18 @@
expect
(
Gitlab
::
CurrentSettings
.
elasticsearch_pause_indexing
).
to
eq
(
true
)
end
context
'when partial reindexing'
do
let
(
:task
)
{
create
(
:elastic_reindexing_task
,
state: :initial
,
targets:
%w[Project User]
)
}
it
'errors when there is not enough space'
do
allow
(
helper
).
to
receive
(
:index_size_bytes
).
twice
.
and_return
(
10
.
megabytes
)
allow
(
helper
).
to
receive
(
:cluster_free_size_bytes
).
and_return
(
30
.
megabytes
)
expect
{
cluster_reindexing_service
.
execute
}.
to
change
{
task
.
reload
.
state
}.
from
(
'initial'
).
to
(
'failure'
)
expect
(
task
.
reload
.
error_message
).
to
match
(
/storage available/
)
end
end
end
context
'state: indexing_paused'
do
...
...
此差异已折叠。
点击以展开。
GitLab CN Bot
@gitlab-cn-bot
mentioned in commit
cce32b9c
·
1 year ago
mentioned in commit
cce32b9c
mentioned in commit cce32b9cf16dc46dc2526ee01b8afa04a283f6d3
展开或隐藏提交列表
预览
0%
加载中
请重试
或
添加新附件
.
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
保存评论
取消
想要评论请
注册
或
登录