Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
0d176701
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,发现更多精彩内容 >>
提交
0d176701
编写于
4月 14, 2019
作者:
X
Xu Peng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(cpp/db): add meta related method in db api
Former-commit-id: b1fd80b76ae93535dacc049d9ec3ce909fa73b28
上级
e06bcc47
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
35 addition
and
13 deletion
+35
-13
cpp/src/db/db.h
cpp/src/db/db.h
+1
-10
cpp/src/db/db_impl.cpp
cpp/src/db/db_impl.cpp
+19
-2
cpp/src/db/db_impl.h
cpp/src/db/db_impl.h
+8
-1
cpp/src/db/db_meta.h
cpp/src/db/db_meta.h
+1
-0
cpp/src/db/db_meta_impl.cpp
cpp/src/db/db_meta_impl.cpp
+1
-0
cpp/src/db/db_meta_impl.h
cpp/src/db/db_meta_impl.h
+1
-0
cpp/src/db/options.h
cpp/src/db/options.h
+4
-0
未找到文件。
cpp/src/db/db.h
浏览文件 @
0d176701
...
...
@@ -21,17 +21,8 @@ public:
GroupSchema
&
group_info_
)
=
0
;
virtual
Status
get_group
(
const
std
::
string
&
group_id_
,
GroupSchema
&
group_info_
)
=
0
;
virtual
Status
has_group
(
const
std
::
string
&
group_id_
,
bool
&
has_or_not_
)
=
0
;
virtual
Status
add_group_file
(
const
std
::
string
&
group_id_
,
GroupFileSchema
&
group_file_info_
)
=
0
;
virtual
Status
has_group_file
(
const
std
::
string
&
group_id_
,
const
std
::
string
&
file_id_
,
bool
&
has_or_not_
)
=
0
;
virtual
Status
get_group_file
(
const
std
::
string
&
group_id_
,
const
std
::
string
&
file_id_
,
GroupFileSchema
&
group_file_info_
)
=
0
;
virtual
Status
get_group_files
(
const
std
::
string
&
group_id_
,
const
int
date_delta_
,
GroupFilesSchema
&
group_files_info_
)
=
0
;
DB
()
=
default
;
...
...
cpp/src/db/db_impl.cpp
浏览文件 @
0d176701
...
...
@@ -8,15 +8,32 @@ DBImpl::DBImpl(const Options& options_, const std::string& name_)
_env
(
options_
.
env
),
_options
(
options_
),
_bg_work_finish_signal
(
_mutex
),
_bg_compaction_scheduled
(
false
)
{
_bg_compaction_scheduled
(
false
),
_pMeta
(
new
DBMetaImpl
(
*
(
_options
.
pMetaOptions
)))
{
}
Status
DBImpl
::
add_group
(
const
GroupOptions
&
options_
,
const
std
::
string
&
group_id_
,
std
::
string
&
gid
_
)
{
GroupSchema
&
group_info
_
)
{
assert
((
!
options_
.
has_id
)
||
(
options_
.
has_id
&&
(
""
!=
group_id_
)));
return
_pMeta
->
add_group
(
options_
,
group_id
,
group_info_
);
}
Status
DBImpl
::
get_group
(
const
std
::
string
&
group_id_
,
GroupSchema
&
group_info_
)
{
return
_pMeta
->
get_group
(
group_id_
,
group_info_
);
}
Status
DBImpl
::
has_group
(
const
std
::
string
&
group_id_
,
bool
&
has_or_not_
)
{
return
_pMeta
->
has_group
(
group_id_
,
has_or_not_
);
}
Status
DBImpl
::
get_group_files
(
const
std
::
string
&
group_id_
,
const
int
date_delta_
,
GroupFilesSchema
&
group_files_info_
)
{
return
_pMeta
->
get_group_files
(
group_id_
,
date_delta_
,
group_file_info_
);
}
void
DBImpl
::
try_schedule_compaction
()
{
...
...
cpp/src/db/db_impl.h
浏览文件 @
0d176701
...
...
@@ -19,7 +19,13 @@ public:
virtual
Status
add_group
(
GroupOptions
options_
,
const
std
::
string
&
group_id_
,
std
::
string
&
gid_
)
override
;
GroupSchema
&
group_info_
)
override
;
virtual
Status
get_group
(
const
std
::
string
&
group_id_
,
GroupSchema
&
group_info_
)
override
;
virtual
Status
has_group
(
const
std
::
string
&
group_id_
,
bool
&
has_or_not_
)
override
;
virtual
Status
get_group_files
(
const
std
::
string
&
group_id_
,
const
int
date_delta_
,
GroupFilesSchema
&
group_files_info_
)
override
;
void
try_schedule_compaction
();
...
...
@@ -43,6 +49,7 @@ private:
Status
_bg_error
;
MemManager
_memMgr
;
std
::
shared_ptr
<
Meta
>
_pMeta
;
};
// DBImpl
...
...
cpp/src/db/db_meta.h
浏览文件 @
0d176701
...
...
@@ -50,6 +50,7 @@ public:
virtual
Status
update_group_file
(
const
GroupFileSchema
&
group_file_
)
=
0
;
virtual
Status
get_group_files
(
const
std
::
string
&
group_id_
,
const
int
date_delta_
,
GroupFilesSchema
&
group_files_info_
)
=
0
;
};
// MetaData
...
...
cpp/src/db/db_meta_impl.cpp
浏览文件 @
0d176701
...
...
@@ -52,6 +52,7 @@ Status DBMetaImpl::get_group_file(const std::string& group_id_,
}
Status
DBMetaImpl
::
get_group_files
(
const
std
::
string
&
group_id_
,
const
int
date_delta_
,
GroupFilesSchema
&
group_files_info_
)
{
// PXU TODO
return
Status
.
OK
();
...
...
cpp/src/db/db_meta_impl.h
浏览文件 @
0d176701
...
...
@@ -29,6 +29,7 @@ public:
virtual
Status
update_group_file
(
const
GroupFileSchema
&
group_file_
)
override
;
virtual
Status
get_group_files
(
const
std
::
string
&
group_id_
,
const
int
date_delta_
,
GroupFilesSchema
&
group_files_info_
)
override
;
private:
...
...
cpp/src/db/options.h
浏览文件 @
0d176701
...
...
@@ -2,15 +2,19 @@
#define VECENGINE_OPTIONS_H_
#include <string>
#include <memory>
namespace
zilliz
{
namespace
vecwise
{
namespace
engine
{
class
MetaOptions
;
struct
Options
{
uint16_t
memory_sync_interval
=
10
;
uint16_t
raw_file_merge_trigger_number
=
100
;
size_t
raw_to_index_trigger_size
=
100000
;
std
::
shared_ptr
<
MetaOptions
>
pMetaOptions
;
};
// Options
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录