Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
204c6887
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,发现更多精彩内容 >>
提交
204c6887
编写于
4月 30, 2019
作者:
X
Xu Peng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor(db): replace faiss with serializer wrapper
Former-commit-id: 62b5a7d8353c2b0ef4017f43d03d1c6944685400
上级
713d1ec6
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
10 addition
and
21 deletion
+10
-21
cpp/src/db/MemManager.cpp
cpp/src/db/MemManager.cpp
+7
-16
cpp/src/db/MemManager.h
cpp/src/db/MemManager.h
+3
-5
未找到文件。
cpp/src/db/MemManager.cpp
浏览文件 @
204c6887
#include <faiss/AutoTune.h>
#include <iostream>
#include <sstream>
#include <thread>
#include <wrapper/Index.h>
#include <cache/CpuCacheMgr.h>
#include <easylogging++.h>
#include "MemManager.h"
#include "Meta.h"
#include "FaissSerializer.h"
namespace
zilliz
{
...
...
@@ -21,43 +19,36 @@ MemVectors::MemVectors(const std::shared_ptr<meta::Meta>& meta_ptr,
options_
(
options
),
schema_
(
schema
),
_pIdGenerator
(
new
SimpleIDGenerator
()),
p
Index_
(
faiss
::
index_factory
(
schema_
.
dimension
,
"IDMap,Flat"
))
{
p
Serializer_
(
new
FaissSerializer
(
schema_
.
dimension
,
schema_
.
location
))
{
}
void
MemVectors
::
add
(
size_t
n_
,
const
float
*
vectors_
,
IDNumbers
&
vector_ids_
)
{
_pIdGenerator
->
getNextIDNumbers
(
n_
,
vector_ids_
);
p
Index_
->
add_with_ids
(
n_
,
vectors_
,
&
vector_ids_
[
0
]
);
p
Serializer_
->
AddWithIds
(
n_
,
vectors_
,
vector_ids_
.
data
()
);
for
(
auto
i
=
0
;
i
<
n_
;
i
++
)
{
vector_ids_
.
push_back
(
i
);
}
}
size_t
MemVectors
::
total
()
const
{
return
p
Index_
->
ntotal
;
return
p
Serializer_
->
Count
()
;
}
size_t
MemVectors
::
approximate_size
()
const
{
return
total
()
*
schema_
.
dimension
;
return
pSerializer_
->
Size
()
;
}
Status
MemVectors
::
serialize
(
std
::
string
&
group_id
)
{
/* std::stringstream ss; */
/* ss << "/tmp/test/" << _pIdGenerator->getNextIDNumber(); */
/* faiss::write_index(pIndex_, ss.str().c_str()); */
/* std::cout << pIndex_->ntotal << std::endl; */
/* std::cout << _file_location << std::endl; */
/* faiss::write_index(pIndex_, _file_location.c_str()); */
group_id
=
schema_
.
group_id
;
auto
rows
=
approximate_size
();
write_index
(
pIndex_
.
get
(),
schema_
.
location
.
c_str
()
);
pSerializer_
->
Serialize
(
);
schema_
.
rows
=
rows
;
schema_
.
file_type
=
(
rows
>=
options_
.
index_trigger_size
)
?
meta
::
GroupFileSchema
::
TO_INDEX
:
meta
::
GroupFileSchema
::
RAW
;
auto
status
=
pMeta_
->
update_group_file
(
schema_
);
zilliz
::
vecwise
::
cache
::
CpuCacheMgr
::
GetInstance
(
)
->
InsertItem
(
schema_
.
location
,
std
::
make_shared
<
Index
>
(
pIndex_
));
pSerializer_
->
Cache
();
return
status
;
}
...
...
cpp/src/db/MemManager.h
浏览文件 @
204c6887
...
...
@@ -10,10 +10,6 @@
#include "Status.h"
#include "Meta.h"
namespace
faiss
{
class
Index
;
}
namespace
zilliz
{
namespace
vecwise
{
...
...
@@ -23,6 +19,8 @@ namespace meta {
class
Meta
;
}
class
Serializer
;
class
MemVectors
{
public:
explicit
MemVectors
(
const
std
::
shared_ptr
<
meta
::
Meta
>&
,
...
...
@@ -49,7 +47,7 @@ private:
Options
options_
;
meta
::
GroupFileSchema
schema_
;
IDGenerator
*
_pIdGenerator
;
std
::
shared_ptr
<
faiss
::
Index
>
pIndex
_
;
std
::
shared_ptr
<
Serializer
>
pSerializer
_
;
};
// MemVectors
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录