Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
9f7995cb
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,发现更多精彩内容 >>
未验证
提交
9f7995cb
编写于
6月 06, 2020
作者:
G
groot
提交者:
GitHub
6月 06, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
default nlist 2048 (#2498)
Signed-off-by:
N
groot
<
yihua.mo@zilliz.com
>
上级
4b5eff36
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
3 addition
and
4 deletion
+3
-4
core/src/db/Types.h
core/src/db/Types.h
+1
-1
core/src/db/meta/MetaTypes.h
core/src/db/meta/MetaTypes.h
+0
-1
core/src/utils/ValidationUtil.cpp
core/src/utils/ValidationUtil.cpp
+2
-2
未找到文件。
core/src/db/Types.h
浏览文件 @
9f7995cb
...
...
@@ -38,7 +38,7 @@ typedef std::vector<faiss::Index::distance_t> ResultDistances;
struct
CollectionIndex
{
int32_t
engine_type_
=
(
int
)
EngineType
::
FAISS_IDMAP
;
int32_t
metric_type_
=
(
int
)
MetricType
::
L2
;
milvus
::
json
extra_params_
=
{{
"nlist"
,
16384
}};
milvus
::
json
extra_params_
=
{{
"nlist"
,
2048
}};
};
struct
VectorsData
{
...
...
core/src/db/meta/MetaTypes.h
浏览文件 @
9f7995cb
...
...
@@ -25,7 +25,6 @@ namespace engine {
namespace
meta
{
constexpr
int32_t
DEFAULT_ENGINE_TYPE
=
(
int
)
EngineType
::
FAISS_IDMAP
;
constexpr
int32_t
DEFAULT_NLIST
=
16384
;
constexpr
int32_t
DEFAULT_METRIC_TYPE
=
(
int
)
MetricType
::
L2
;
constexpr
int32_t
DEFAULT_INDEX_FILE_SIZE
=
GB
;
constexpr
char
CURRENT_VERSION
[]
=
MILVUS_VERSION
;
...
...
core/src/utils/ValidationUtil.cpp
浏览文件 @
9f7995cb
...
...
@@ -112,7 +112,7 @@ ValidationUtil::ValidateCollectionName(const std::string& collection_name) {
}
std
::
string
invalid_msg
=
"Invalid collection name: "
+
collection_name
+
". "
;
// Collection name size shouldn't exceed
16384
.
// Collection name size shouldn't exceed
255
.
if
(
collection_name
.
size
()
>
COLLECTION_NAME_SIZE_LIMIT
)
{
std
::
string
msg
=
invalid_msg
+
"The length of a collection name must be less than 255 characters."
;
LOG_SERVER_ERROR_
<<
msg
;
...
...
@@ -426,7 +426,7 @@ ValidationUtil::ValidatePartitionName(const std::string& partition_name) {
}
std
::
string
invalid_msg
=
"Invalid partition name: "
+
partition_name
+
". "
;
// Collection name size shouldn't exceed
16384
.
// Collection name size shouldn't exceed
255
.
if
(
partition_name
.
size
()
>
COLLECTION_NAME_SIZE_LIMIT
)
{
std
::
string
msg
=
invalid_msg
+
"The length of a partition name must be less than 255 characters."
;
LOG_SERVER_ERROR_
<<
msg
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录