From 2a101eaab1fbf18de27a087c03e6ec2d271c2861 Mon Sep 17 00:00:00 2001 From: Cai Yudong Date: Sat, 7 Mar 2020 13:18:14 +0800 Subject: [PATCH] #1524 update config preload_table description (#1543) Signed-off-by: yudong.cai --- CHANGELOG.md | 4 ++-- core/conf/demo/server_config.yaml | 3 ++- core/conf/server_cpu_config.template | 3 ++- core/conf/server_gpu_config.template | 3 ++- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd2e15b6ff..29d5ab642c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -80,14 +80,14 @@ Please mark all change in change log and use the issue from GitHub - \#1105 Error message is not clear when creating IVFSQ8H index without gpu resources - \#740, #849, #878, #972, #1033, #1161, #1173, #1199, #1190, #1223, #1222, #1257, #1264, #1269, #1164, #1303, #1304, #1324, #1388, #1459 Various fixes and improvements for Milvus documentation. - \#1297 Hide partition_name parameter, avid user directly access partition table -- \#1310 Add default partition tag for a table - \#1234 Do S3 server validation check when Milvus startup - \#1263 Allow system conf modifiable and some take effect directly +- \#1310 Add default partition tag for a table - \#1320 Remove debug logging from faiss - \#1426 Support to configure whether to enabled autoflush and the autoflush interval - \#1444 Improve delete - \#1480 Add return code for AVX512 selection - +- \#1524 Update config "preload_table" description ## Task - \#1327 Exclude third-party code from codebeat diff --git a/core/conf/demo/server_config.yaml b/core/conf/demo/server_config.yaml index 33ff90c099..cb15b1487f 100644 --- a/core/conf/demo/server_config.yaml +++ b/core/conf/demo/server_config.yaml @@ -44,7 +44,8 @@ server_config: #----------------------+------------------------------------------------------------+------------+-----------------+ # preload_table | A comma-separated list of table names that need to be pre- | StringList | | # | loaded when Milvus server starts up. | | | -# | '*' means preload all existing tables. | | | +# | '*' means preload all existing tables (single-quote or | | | +# | double-quote required). | | | #----------------------+------------------------------------------------------------+------------+-----------------+ # auto_flush_interval | The interval, in seconds, at which Milvus automatically | Integer | 1 (s) | # | flushes data to disk. | | | diff --git a/core/conf/server_cpu_config.template b/core/conf/server_cpu_config.template index 4c0ea91089..e511bc22f7 100644 --- a/core/conf/server_cpu_config.template +++ b/core/conf/server_cpu_config.template @@ -44,7 +44,8 @@ server_config: #----------------------+------------------------------------------------------------+------------+-----------------+ # preload_table | A comma-separated list of table names that need to be pre- | StringList | | # | loaded when Milvus server starts up. | | | -# | '*' means preload all existing tables. | | | +# | '*' means preload all existing tables (single-quote or | | | +# | double-quote required). | | | #----------------------+------------------------------------------------------------+------------+-----------------+ # auto_flush_interval | The interval, in seconds, at which Milvus automatically | Integer | 1 (s) | # | flushes data to disk. | | | diff --git a/core/conf/server_gpu_config.template b/core/conf/server_gpu_config.template index e27578586a..2a926f3f6a 100644 --- a/core/conf/server_gpu_config.template +++ b/core/conf/server_gpu_config.template @@ -44,7 +44,8 @@ server_config: #----------------------+------------------------------------------------------------+------------+-----------------+ # preload_table | A comma-separated list of table names that need to be pre- | StringList | | # | loaded when Milvus server starts up. | | | -# | '*' means preload all existing tables. | | | +# | '*' means preload all existing tables (single-quote or | | | +# | double-quote required). | | | #----------------------+------------------------------------------------------------+------------+-----------------+ # auto_flush_interval | The interval, in seconds, at which Milvus automatically | Integer | 1 (s) | # | flushes data to disk. | | |