Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
8e1e03b2
milvus
项目概览
BaiXuePrincess
/
milvus
与 Fork 源项目一致
从无法访问的项目Fork
通知
7
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
milvus
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
8e1e03b2
编写于
4月 19, 2019
作者:
X
Xu Peng
提交者:
xj.lin
4月 19, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(db): cleanup pre db destruction
Former-commit-id: 98270b53f6bafcde31d44039bb224d547ce71b07
上级
2de4f047
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
20 addition
and
6 deletion
+20
-6
cpp/src/db/DBImpl.cpp
cpp/src/db/DBImpl.cpp
+18
-6
cpp/src/db/DBImpl.h
cpp/src/db/DBImpl.h
+2
-0
未找到文件。
cpp/src/db/DBImpl.cpp
浏览文件 @
8e1e03b2
...
...
@@ -107,7 +107,9 @@ Status DBImpl::merge_files(const std::string& group_id, const meta::DateT& date,
group_file
.
group_id
=
group_id
;
group_file
.
date
=
date
;
Status
status
=
_pMeta
->
add_group_file
(
group_file
);
if
(
!
status
.
ok
())
{
std
::
cout
<<
status
.
ToString
()
<<
std
::
endl
;
return
status
;
}
...
...
@@ -127,7 +129,6 @@ Status DBImpl::merge_files(const std::string& group_id, const meta::DateT& date,
auto
index_size
=
group_file
.
dimension
*
index
->
ntotal
;
faiss
::
write_index
(
index
.
get
(),
group_file
.
location
.
c_str
());
std
::
cout
<<
"Merged size="
<<
index_size
<<
std
::
endl
;
if
(
index_size
>=
_options
.
index_trigger_size
)
{
group_file
.
file_type
=
meta
::
GroupFileSchema
::
TO_INDEX
;
}
else
{
...
...
@@ -201,6 +202,7 @@ Status DBImpl::build_index(const meta::GroupFileSchema& file) {
}
void
DBImpl
::
background_build_index
()
{
std
::
lock_guard
<
std
::
mutex
>
lock
(
build_index_mutex_
);
assert
(
bg_build_index_started_
);
meta
::
GroupFilesSchema
to_index_files
;
_pMeta
->
files_to_index
(
to_index_files
);
...
...
@@ -214,6 +216,7 @@ void DBImpl::background_build_index() {
}
bg_build_index_started_
=
false
;
bg_build_index_finish_signal_
.
notify_all
();
}
Status
DBImpl
::
try_build_index
()
{
...
...
@@ -230,7 +233,6 @@ void DBImpl::background_compaction() {
Status
status
;
for
(
auto
group_id
:
group_ids
)
{
/* std::cout << __func__ << " group_id=" << group_id << std::endl; */
status
=
background_merge_files
(
group_id
);
if
(
!
status
.
ok
())
{
_bg_error
=
status
;
...
...
@@ -240,11 +242,21 @@ void DBImpl::background_compaction() {
}
DBImpl
::~
DBImpl
()
{
std
::
unique_lock
<
std
::
mutex
>
lock
(
_mutex
);
_shutting_down
.
store
(
true
,
std
::
memory_order_release
);
while
(
_bg_compaction_scheduled
)
{
_bg_work_finish_signal
.
wait
(
lock
);
{
std
::
unique_lock
<
std
::
mutex
>
lock
(
_mutex
);
_shutting_down
.
store
(
true
,
std
::
memory_order_release
);
while
(
_bg_compaction_scheduled
)
{
_bg_work_finish_signal
.
wait
(
lock
);
}
}
{
std
::
unique_lock
<
std
::
mutex
>
lock
(
build_index_mutex_
);
while
(
bg_build_index_started_
)
{
bg_build_index_finish_signal_
.
wait
(
lock
);
}
}
std
::
vector
<
std
::
string
>
ids
;
_pMemMgr
->
serialize
(
ids
);
}
/*
...
...
cpp/src/db/DBImpl.h
浏览文件 @
8e1e03b2
...
...
@@ -64,7 +64,9 @@ private:
Status
_bg_error
;
std
::
atomic
<
bool
>
_shutting_down
;
std
::
mutex
build_index_mutex_
;
bool
bg_build_index_started_
;
std
::
condition_variable
bg_build_index_finish_signal_
;
std
::
shared_ptr
<
meta
::
Meta
>
_pMeta
;
std
::
shared_ptr
<
MemManager
>
_pMemMgr
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录