Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
1829624a
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,发现更多精彩内容 >>
提交
1829624a
编写于
3月 08, 2020
作者:
G
groot
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
#1556 Index file not create after table and index create
Signed-off-by:
N
groot
<
yihua.mo@zilliz.com
>
上级
748e1b46
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
3 addition
and
20 deletion
+3
-20
CHANGELOG.md
CHANGELOG.md
+1
-0
core/src/db/meta/MySQLMetaImpl.cpp
core/src/db/meta/MySQLMetaImpl.cpp
+1
-10
core/src/db/meta/SqliteMetaImpl.cpp
core/src/db/meta/SqliteMetaImpl.cpp
+1
-10
未找到文件。
CHANGELOG.md
浏览文件 @
1829624a
...
@@ -43,6 +43,7 @@ Please mark all change in change log and use the issue from GitHub
...
@@ -43,6 +43,7 @@ Please mark all change in change log and use the issue from GitHub
-
\#
1530 Set table file with correct engine type in meta
-
\#
1530 Set table file with correct engine type in meta
-
\#
1532 Search with ivf_flat failed with open-dataset: sift-256-hamming
-
\#
1532 Search with ivf_flat failed with open-dataset: sift-256-hamming
-
\#
1535 Degradation searching performance with metric_type: binary_idmap
-
\#
1535 Degradation searching performance with metric_type: binary_idmap
-
\#
1556 Index file not create after table and index create
## Feature
## Feature
-
\#
216 Add CLI to get server info
-
\#
216 Add CLI to get server info
...
...
core/src/db/meta/MySQLMetaImpl.cpp
浏览文件 @
1829624a
...
@@ -674,16 +674,7 @@ MySQLMetaImpl::CreateTableFile(TableFileSchema& file_schema) {
...
@@ -674,16 +674,7 @@ MySQLMetaImpl::CreateTableFile(TableFileSchema& file_schema) {
file_schema
.
updated_time_
=
file_schema
.
created_on_
;
file_schema
.
updated_time_
=
file_schema
.
created_on_
;
file_schema
.
index_file_size_
=
table_schema
.
index_file_size_
;
file_schema
.
index_file_size_
=
table_schema
.
index_file_size_
;
file_schema
.
index_params_
=
table_schema
.
index_params_
;
file_schema
.
index_params_
=
table_schema
.
index_params_
;
file_schema
.
engine_type_
=
table_schema
.
engine_type_
;
if
(
file_schema
.
file_type_
==
TableFileSchema
::
FILE_TYPE
::
NEW
||
file_schema
.
file_type_
==
TableFileSchema
::
FILE_TYPE
::
NEW_MERGE
)
{
file_schema
.
engine_type_
=
server
::
ValidationUtil
::
IsBinaryMetricType
(
table_schema
.
metric_type_
)
?
(
int32_t
)
EngineType
::
FAISS_BIN_IDMAP
:
(
int32_t
)
EngineType
::
FAISS_IDMAP
;
}
else
{
file_schema
.
engine_type_
=
table_schema
.
engine_type_
;
}
file_schema
.
metric_type_
=
table_schema
.
metric_type_
;
file_schema
.
metric_type_
=
table_schema
.
metric_type_
;
std
::
string
id
=
"NULL"
;
// auto-increment
std
::
string
id
=
"NULL"
;
// auto-increment
...
...
core/src/db/meta/SqliteMetaImpl.cpp
浏览文件 @
1829624a
...
@@ -375,16 +375,7 @@ SqliteMetaImpl::CreateTableFile(TableFileSchema& file_schema) {
...
@@ -375,16 +375,7 @@ SqliteMetaImpl::CreateTableFile(TableFileSchema& file_schema) {
file_schema
.
updated_time_
=
file_schema
.
created_on_
;
file_schema
.
updated_time_
=
file_schema
.
created_on_
;
file_schema
.
index_file_size_
=
table_schema
.
index_file_size_
;
file_schema
.
index_file_size_
=
table_schema
.
index_file_size_
;
file_schema
.
index_params_
=
table_schema
.
index_params_
;
file_schema
.
index_params_
=
table_schema
.
index_params_
;
file_schema
.
engine_type_
=
table_schema
.
engine_type_
;
if
(
file_schema
.
file_type_
==
TableFileSchema
::
FILE_TYPE
::
NEW
||
file_schema
.
file_type_
==
TableFileSchema
::
FILE_TYPE
::
NEW_MERGE
)
{
file_schema
.
engine_type_
=
server
::
ValidationUtil
::
IsBinaryMetricType
(
table_schema
.
metric_type_
)
?
(
int32_t
)
EngineType
::
FAISS_BIN_IDMAP
:
(
int32_t
)
EngineType
::
FAISS_IDMAP
;
}
else
{
file_schema
.
engine_type_
=
table_schema
.
engine_type_
;
}
file_schema
.
metric_type_
=
table_schema
.
metric_type_
;
file_schema
.
metric_type_
=
table_schema
.
metric_type_
;
// multi-threads call sqlite update may get exception('bad logic', etc), so we add a lock here
// multi-threads call sqlite update may get exception('bad logic', etc), so we add a lock here
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录