CHANGELOG.md 39.3 KB
Newer Older
J
jinhai 已提交
1 2
# Changelog

C
Cai Yudong 已提交
3
Please mark all changes in change log and use the issue from GitHub
Z
Zhiru Zhu 已提交
4

5 6 7
# Milvus 0.11.0 (TBD)

## Bug
8
-   \#2532 Fix Milvus docker image report illegal instruction
9
-   \#2551 Fix test_hybrid_db and test_rpc error
10
-   \#2582 CreateHybridIndex.cpp compile error
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
-   \#2693 Collection create success if no dimension value provided
-   \#2694 Collection create success if an invalid field name provided
-   \#2695 The number of fields should be limited
-   \#2696 Check the validity of the parameters of creating collection: segment_size
-   \#2697 Index can not be created
-   \#2698 Count entities got wrong result with binary vectors
-   \#2728 Index type name should returned if index type is not supported
-   \#2731 No entity returned with `get_entity_by_id`
-   \#2732 Server destroyed after `delete by id`
-   \#2733 The max value of top-k should be limited
-   \#2763 Unexpected error when insert binary entities
-   \#2765 Server crashed when calling `get_entity_by_id`
-   \#2783 Wrong result returned if searching with tags
-   \#2790 Distances returned by calling `search` is inaccurate
-   \#2818 Wrong result returned by `get_entity_by_id`
-   \#2823 Server crashed during inserting, and can not restart
-   \#2845 Server crashed after calling `delete_entity_by_id`
28
-   \#2852 Fix Prometheus rebuild problem.
29 30 31
-   \#2869 Create index failed with binary vectors
-   \#2893 Insert binary data failed
-   \#2957 There is no exisitence check of annoy search parameter
32 33

## Feature
34 35
-   \#2319 Redo metadata to support MVCC
-   \#2509 Count up query statistics for debug ease
Y
yukun 已提交
36
-   \#2572 Support structured data index
37
-   \#2585 Support IVF_PQ on GPU with using metric_type IP
38
-   \#2689 Construct Knowhere Index Without Data
39
-   \#2940 Add option to build.sh for cuda arch
O
op-hunter 已提交
40
-   \#3132 Refine the implementation of hnsw in faiss and add support for hnsw-flat, hnsw-pq and hnsw-sq8
41 42

## Improvement
43
-   \#2543 Remove secondary_path related code
C
Cai Yudong 已提交
44
-   \#2544 Optimize unittest build
C
Cai Yudong 已提交
45
-   \#2561 Clean util dependencies with other modules
46
-   \#2568 Upgrade thirdparty oatpp to v1.1.0
47
-   \#2612 Move all APIs in utils into namespace milvus 
48
-   \#2675 Print out system memory size when report invalid cpu cache size 
49
-   \#2686 Remove dependency on sqlite_orm
C
Cai Yudong 已提交
50
-   \#2841 Replace IndexType/EngineType/MetricType
51
-   \#2858 Unify index name in db
C
Cai Yudong 已提交
52
-   \#2884 Using BlockingQueue in JobMgr
53
-   \#3220 Enable -Werror to improve code quality
54 55 56

## Task

S
shengjun.li 已提交
57
# Milvus 0.10.2 (2020-08-15)
S
shengjun.li 已提交
58 59 60 61 62 63

## Bug
-   \#2890 Fix the index size caculation in cache
-   \#2952 Fix the result merging of IVF_PQ IP
-   \#2975 Fix config UT failed
-   \#3012 If the cache is too small, queries using multiple GPUs will cause to crash
S
shengjun.li 已提交
64
-   \#3133 Reverse query result in mishards if metric type is IP
S
shengjun.li 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103

## Feature

## Improvement
-   \#2653 Improve IVF search performance when NQ and nProbe are both large
-   \#2828 Let Faiss not to compile half float by default

## Task

# Milvus 0.10.1 (2020-07-20)

## Bug
-   \#2487 Enlarge timeout value for creating collection
-   \#2487 HotFix release lock failed on NAS
-   \#2557 Fix random crash of INSERT_DUPLICATE_ID case
-   \#2578 Result count doesn't match target vectors count
-   \#2585 Support IVF_PQ IP on GPU
-   \#2598 Fix Milvus docker image report illegal instruction
-   \#2617 Fix HNSW and RNSG index files size
-   \#2637 Suit the range of HNSW parameters
-   \#2642 Create index failed and server crashed
-   \#2649 Search parameter of annoy has conflict with document
-   \#2690 Remove body parser in show-partitions endpoints
-   \#2692 Milvus hangs during multi-thread concurrent search
-   \#2739 Fix mishards start failed
-   \#2752 Milvus formats vectors data to double-precision and return to http client
-   \#2767 Fix a bug of getting wrong nprobe limitation in knowhere on GPU version
-   \#2768 After building the index, the number of vectors increases
-   \#2774 Server down during loading data
-   \#2776 Fix too many data copies during creating IVF index
-   \#2813 To implemente RNSG IP

## Feature

## Improvement
-   \#2932 Upgrade mishards for milvus 0.10.1

## Task

104
# Milvus 0.10.0 (2020-6-15)
J
JinHai-CN 已提交
105

J
JinHai-CN 已提交
106
## Bug
107
-   \#2367 Fix inconsistent reading and writing when using mishards
108 109
-   \#2368 Make read node detect delete behavior
-   \#2373 Build index for small segment waste time on waiting background index thread finish
110
-   \#2394 Drop collection timeout if too many partitions created on collection
111
-   \#2549 Launch server fail using demo config
112
-   \#2564 cache.cache_size range check error
J
JinHai-CN 已提交
113 114 115

## Feature
-   \#2363 Update branch version
W
Wang XiangYu 已提交
116
-   \#2510 Upgrade Milvus config
J
JinHai-CN 已提交
117 118 119

## Improvement
-   \#2381 Upgrade FAISS to 1.6.3
C
Cai Yudong 已提交
120
-   \#2429 Fix Milvus 0.9.1 performance degrade issue
J
JinHai-CN 已提交
121
-   \#2441 Improve Knowhere code coverage
W
Wang XiangYu 已提交
122
-   \#2466 Optimize k-selection implemention of faiss gpu version
123
-   \#2489 Add exception throw on mysql meta error
124
-   \#2495 Add creating lock file failure reason.
B
BossZou 已提交
125
-   \#2516 Improve unit test coverage
126
-   \#2548 Upgrade mishards for milvus v0.10.0
J
JinHai-CN 已提交
127

J
jinhai 已提交
128
# Milvus 0.9.1 (2020-05-29)
J
JinHai-CN 已提交
129

J
JinHai-CN 已提交
130
## Bug
G
groot 已提交
131
-   \#2366 Reduce SQL execution times for collection contains lot of partitions
G
groot 已提交
132
-   \#2378 Duplicate data after server restart
133
-   \#2395 Fix large nq cudaMalloc error
S
shengjun.li 已提交
134
-   \#2399 The nlist set by the user may not take effect
135
-   \#2403 MySQL max_idle_time is 10 by default
S
shengjun.li 已提交
136
-   \#2450 The deleted vectors may be found on GPU
137
-   \#2456 openblas library install failed
J
JinHai-CN 已提交
138 139 140 141

## Feature

## Improvement
C
Cai Yudong 已提交
142
-   \#2307 Disable index SPTAG by default
143
-   \#2353 Remove log_config from code and scripts
C
Cai Yudong 已提交
144
-   \#2370 Clean compile warning
145
-   \#2410 Logging build index progress
B
BossZou 已提交
146
-   \#2461 Upgrade mishards for milvus 0.9.1
147

J
JinHai-CN 已提交
148
# Milvus 0.9.0 (2020-05-15)
149 150

## Bug
151
-   \#1705 Limit the insert data batch size
152
-   \#1776 Error out when index SQ8H run in CPU mode
G
groot 已提交
153
-   \#1925 To flush all collections, flush cannot work
154
-   \#1929 Skip MySQL meta schema field width check
155
-   \#1946 Fix load index file CPU2GPU fail during searching
G
groot 已提交
156
-   \#1955 Switch create_index operation to background once client break connection
157
-   \#1997 Index file missed after compact
158
-   \#2002 Remove log error msg `Attributes is null`
159
-   \#2073 Fix CheckDBConfigBackendUrl error message
160
-   \#2076 CheckMetricConfigAddress error message
B
BossZou 已提交
161 162
-   \#2120 Fix Search expected failed if search params set invalid
-   \#2121 Allow regex match partition tag when search
G
groot 已提交
163 164
-   \#2128 Check has_partition params
-   \#2131 Distance/ID returned is not correct if searching with duplicate ids
165
-   \#2141 Fix server start failed if wal directory exist
166
-   \#2169 Fix SingleIndexTest.IVFSQHybrid unittest
B
BossZou 已提交
167
-   \#2194 Fix get collection info failed
168
-   \#2196 Fix server start failed if wal is disabled
169
-   \#2203 0.8.0 id=-1 is returned when total count < topk
170
-   \#2228 Fix show partitions failed in http module
G
groot 已提交
171
-   \#2231 Use server_config to define hard-delete delay time for segment files
G
groot 已提交
172
-   \#2261 Re-define result returned by has_collection if collection in delete state
G
groot 已提交
173
-   \#2264 Milvus opened too many files when the metric_config.enable_monitor=true
G
groot 已提交
174
-   \#2266 Server hang when using multi-clients to query different collections
C
Cai Yudong 已提交
175
-   \#2280 has_partition should return true for `_default`
176

177
## Feature
178 179 180
-   \#1751 Add api SearchByID
-   \#1752 Add api GetVectorsByID
-   \#1962 Add api HasPartition
C
Cai Yudong 已提交
181
-   \#1965 FAISS/NSG/HNSW/ANNOY use unified distance calculation algorithm
B
BossZou 已提交
182
-   \#2054 Check if CPU instruction sets are illegal
183
-   \#2057 Add a config parameter to switch off http server
W
Wang XiangYu 已提交
184
-   \#2059 Add lock file avoid multiple instances modifying data at the same time
185
-   \#2064 Warn when use SQLite as metadata management
B
BossZou 已提交
186
-   \#2111 Check GPU environment before start server
W
Wang XiangYu 已提交
187
-   \#2206 Log file rotating
188
-   \#2240 Obtain running rpc requests information
O
op-hunter 已提交
189
-   \#2268 Intelligently detect openblas library in system to avoid installing from source code every time
190
-   \#2283 Suspend the building tasks when any query comand arrives.
O
op-hunter 已提交
191
-   \#2417 Support Structured Index Based on Sort
192 193 194

## Improvement
-   \#221 Refactor LOG macro
195
-   \#833 Catch exception in RolloutHandler and output in stderr
196
-   \#1796 Compile Openblas with source code to improve the performance
G
groot 已提交
197
-   \#1942 Background merge file strategy
C
Cai Yudong 已提交
198
-   \#2039 Support Milvus run on SSE CPUs
199
-   \#2149 Merge server_cpu_config.template and server_gpu_config.template
200
-   \#2153 Upgrade thirdparty oatpp to v1.0.0
F
feisiyicl 已提交
201
-   \#2167 Merge log_config.conf with server_config.yaml
B
BossZou 已提交
202
-   \#2173 Check storage permission
203
-   \#2178 Using elkan K-Means to improve IVF
B
BossZou 已提交
204 205
-   \#2185 Change id to string format in http module
-   \#2186 Update endpoints in http module
F
feisiyicl 已提交
206
-   \#2190 Fix memory usage is twice of index size when using GPU searching
207
-   \#2248 Use hostname and port as instance label of metrics
208
-   \#2252 Upgrade mishards APIs and requirements
S
shengjun.li 已提交
209
-   \#2256 k-means clustering algorithm use only Euclidean distance metric
210
-   \#2300 Upgrade mishrads configuration to version 0.4
211
-   \#2311 Update mishards methods
212
-   \#2330 Change url for behavior 'get_entities_by_id'
213
-   \#2347 Update http document for v0.9.0
214
-   \#2358 Upgrade mishards for v0.9.0
215 216 217

## Task

J
Jin Hai 已提交
218
# Milvus 0.8.0 (2020-04-15)
J
JinHai-CN 已提交
219 220

## Bug
221
-   \#1276 SQLite throw exception after create 50000+ partitions in a table
222
-   \#1762 Server is not forbidden to create new partition which tag is `_default`
223 224
-   \#1789 Fix multi-client search cause server crash
-   \#1832 Fix crash in tracing module
225
-   \#1873 Fix index file serialize to incorrect path
S
shengjun.li 已提交
226
-   \#1881 Fix bad alloc when index files lost
J
Jin Hai 已提交
227 228 229 230
-   \#1883 Fix inserted vectors becomes all zero when index_file_size >= 2GB
-   \#1901 Search failed with flat index
-   \#1903 Fix invalid annoy result
-   \#1910 C++ SDK GetIDsInSegment could not work for large dataset
J
JinHai-CN 已提交
231 232

## Feature
X
Xiaohai Xu 已提交
233
-   \#261  Integrate ANNOY into Milvus
234
-   \#1655 GPU index support delete vectors
X
Xiaohai Xu 已提交
235 236
-   \#1660 IVF PQ CPU support deleted vectors searching
-   \#1661 HNSW support deleted vectors searching
Y
yukun 已提交
237
-   \#1825 Add annoy index type in C++ sdk
X
Xiaohai Xu 已提交
238
-   \#1849 NSG support deleted vectors searching
239
-   \#1893 Log config information and device information
J
JinHai-CN 已提交
240 241

## Improvement
C
Cai Yudong 已提交
242
-   \#1627 Move read/write index APIs into codec
J
Jin Hai 已提交
243
-   \#1784 Add Substructure and Superstructure in http module
C
Cai Yudong 已提交
244
-   \#1858 Disable S3 build
245
-   \#1882 Add index annoy into http module
246
-   \#1885 Optimize knowhere unittest
247
-   \#1886 Refactor log on search and insert request
S
shengjun.li 已提交
248
-   \#1897 Heap pop and push can be realized by heap_swap_top
249
-   \#1921 Use TimeRecorder instead of chrono
J
Jin Hai 已提交
250 251
-   \#1928 Fix too many data and uid copies when loading files
-   \#1930 Upgrade mishards to v0.8.0
J
JinHai-CN 已提交
252 253 254

## Task

J
JinHai-CN 已提交
255
# Milvus 0.7.1 (2020-03-29)
Y
yudong.cai 已提交
256

Y
yudong.cai 已提交
257
## Bug
S
shengjun.li 已提交
258
-   \#1301 Data in WAL may be accidentally inserted into a new table with the same name.
259
-   \#1634 Fix search demo bug in HTTP doc
Z
update  
Zhiru Zhu 已提交
260
-   \#1635 Vectors can be returned by searching after vectors deleted if `cache_insert_data` set true
261 262
-   \#1648 The cache cannot be used all when the vector type is binary
-   \#1651 Check validity of dimension when collection metric type is binary one
263
-   \#1663 PQ index parameter 'm' validation
264
-   \#1686 API search_in_files cannot work correctly when vectors is stored in certain non-default partition
C
Cai Yudong 已提交
265
-   \#1689 Fix SQ8H search fail on SIFT-1B dataset
T
Tinkerrr 已提交
266 267
-   \#1667 Create index failed with type: rnsg if metric_type is IP
-   \#1708 NSG search crashed
J
Jin Hai 已提交
268
-   \#1724 Remove unused unittests
269
-   \#1728 Optimize request handler to combine similar query
G
groot 已提交
270
-   \#1734 Opentracing for combined search request
271
-   \#1735 Fix search out of memory with ivf_flat
T
Tinkerrr 已提交
272
-   \#1747 Expected error status if search with partition_tag not existed
273
-   \#1756 Fix memory exhausted during searching
J
Jin Hai 已提交
274
-   \#1781 Fix search hang with SQ8H
275
-   \#1812 Fix incorrect request method in search example in http readme
J
Jin Hai 已提交
276
-   \#1818 Duplicate data generated after restart milvus server
Y
yudong.cai 已提交
277 278

## Feature
279
-   \#1603 BinaryFlat add 2 Metric: Substructure and Superstructure
Y
yudong.cai 已提交
280 281

## Improvement
282
-   \#267 Improve search performance: reduce delay
C
Cai Yudong 已提交
283
-   \#342 Knowhere and Wrapper refactor
Y
yudong.cai 已提交
284 285 286
-   \#1537 Optimize raw vector and uids read/write
-   \#1546 Move Config.cpp to config directory
-   \#1547 Rename storage/file to storage/disk and rename classes
287
-   \#1548 Move store/Directory to storage/Operation and add FSHandler
J
Jin Hai 已提交
288
-   \#1572 Optimize config cpu/gpu cache_capacity setter
Z
Zhiru Zhu 已提交
289
-   \#1619 Improve compact performance
290
-   \#1649 Fix Milvus crash on old CPU
291
-   \#1653 IndexFlat (SSE) and IndexBinaryFlat performance improvement for small NQ
292
-   \#1678 Remove CUSTOMIZATION macro
B
BossZou 已提交
293
-   \#1698 Upgrade mishards to v0.7.0
J
Jin Hai 已提交
294
-   \#1719 Improve Milvus log
295
-   \#1754 Optimize behavior to get file ids from metadata in mishards
J
Jin Hai 已提交
296
-   \#1799 Update docker images to 0.7.1 in mishards
Y
yudong.cai 已提交
297 298 299

## Task

Y
yudong.cai 已提交
300
# Milvus 0.7.0 (2020-03-11)
Z
Zhiru Zhu 已提交
301 302

## Bug
J
Jin Hai 已提交
303 304 305 306 307 308
-   \#715 Milvus crash when searching and building index simultaneously using SQ8H
-   \#744 Don't return partition table for show_tables
-   \#770 Server unittest run failed on low-end server
-   \#805 IVFTest.gpu_seal_test unittest failed
-   \#831 Judge branch error in CommonUtil.cpp
-   \#977 Server crash when create tables concurrently
309
-   \#990 Check gpu resources setting when assign repeated value
G
typo  
groot 已提交
310
-   \#995 Table count set to 0 if no tables found
J
JinHai-CN 已提交
311
-   \#1010 Improve error message when offset or page_size is equal 0
J
JinHai-CN 已提交
312
-   \#1022 Check if partition name is valid
313 314
-   \#1028 Check if table exists when show partitions
-   \#1029 Check if table exists when try to delete partition
J
JinHai-CN 已提交
315
-   \#1066 Optimize http insert and search speed
G
typo  
groot 已提交
316 317 318 319
-   \#1022 Check if partition name is legal
-   \#1028 Check if table exists when show partitions
-   \#1029 Check if table exists when try to delete partition
-   \#1066 Optimize http insert and search speed
J
Jin Hai 已提交
320
-   \#1067 Add binary vectors support in http server
321 322
-   \#1075 Improve error message when page size or offset is illegal
-   \#1082 Check page_size or offset value to avoid float
G
typo  
groot 已提交
323
-   \#1115 Http server support load table into memory
J
Jin Hai 已提交
324 325 326
-   \#1152 Error log output continuously after server start
-   \#1211 Server down caused by searching with index_type: HNSW
-   \#1240 Update license declaration
T
Tinkerrr 已提交
327
-   \#1298 Unit test failed when on CPU2GPU case
J
Jin Hai 已提交
328
-   \#1359 Negative distance value returned when searching with HNSW index type
T
Tinkerrr 已提交
329
-   \#1429 Server crashed when searching vectors with GPU
330
-   \#1476 Fix vectors results bug when getting vectors from segments
G
groot 已提交
331 332
-   \#1484 Index type changed to IDMAP after compacted
-   \#1491 Server crashed during adding vectors
J
Jin Hai 已提交
333
-   \#1499 Fix duplicated ID number issue
G
groot 已提交
334
-   \#1504 Avoid possible race condition between delete and search
T
Tinkerrr 已提交
335
-   \#1507 set_config for insert_buffer_size is wrong
J
Jin Hai 已提交
336
-   \#1510 Add set interfaces for WAL configurations
337
-   \#1511 Fix big integer cannot pass to server correctly
338
-   \#1517 Result is not correct when search vectors in multi partition, index type is RNSG
Z
Zhiru Zhu 已提交
339
-   \#1518 Table count did not match after deleting vectors and compact
340
-   \#1521 Make cache_insert_data take effect in-service
341
-   \#1525 Add setter API for config preload_table
342
-   \#1529 Fix server crash when cache_insert_data enabled
343
-   \#1530 Set table file with correct engine type in meta
344
-   \#1532 Search with ivf_flat failed with open-dataset: sift-256-hamming
T
Tinkerrr 已提交
345
-   \#1535 Degradation searching performance with metric_type: binary_idmap
346
-   \#1549 Fix server/wal config setting bug
G
typo  
groot 已提交
347
-   \#1556 Index file not created after table and index created
X
xiaojun.lin 已提交
348
-   \#1560 Search crashed with Super-high dimensional binary vector
X
fix  
xiaojun.lin 已提交
349
-   \#1564 Too low recall for glove-200-angular, ivf_pq index
G
typo  
groot 已提交
350
-   \#1571 Meta engine type become IDMAP after dropping index for BINARY table
Z
update  
Zhiru Zhu 已提交
351
-   \#1574 Set all existing bitset in cache when applying deletes
Z
update  
Zhiru Zhu 已提交
352
-   \#1577 Row count incorrect if delete vectors then create index
353
-   \#1580 Old segment folder not removed after merge/compact if create_index is called before adding data
Z
update  
Zhiru Zhu 已提交
354
-   \#1590 Server down caused by failure to write file during concurrent mixed operations
Z
update  
Zhiru Zhu 已提交
355
-   \#1598 Server down during mixed operations
Y
Yhz 已提交
356
-   \#1601 External link bug in HTTP doc
G
groot 已提交
357
-   \#1609 Refine Compact function
358
-   \#1808 Building index params check for Annoy
359
-   \#1852 Search index type<Annoy> failed with reason `failed to load index file`
Z
Zhiru Zhu 已提交
360 361

## Feature
J
Jin Hai 已提交
362 363 364 365 366 367 368 369 370 371
-   \#216 Add CLI to get server info
-   \#343 Add Opentracing
-   \#665 Support get/set config via CLI
-   \#759 Put C++ sdk out of milvus/core
-   \#766 If partition tag is similar, wrong partition is searched
-   \#771 Add server build commit info interface
-   \#788 Add web server into server module
-   \#813 Add push mode for prometheus monitor
-   \#815 Support MinIO storage
-   \#823 Support binary vector tanimoto/jaccard/hamming metric
J
Jin Hai 已提交
372
-   \#830 Support WAL(write-ahead logging)
J
Jin Hai 已提交
373 374 375 376 377 378 379 380
-   \#853 Support HNSW
-   \#861 Support DeleteById / SearchByID / GetVectorById / Flush
-   \#910 Change Milvus c++ standard to c++17
-   \#1122 Support AVX-512 in FAISS
-   \#1204 Add api to get table data information
-   \#1250 Support CPU profiling
-   \#1302 Get all record IDs in a segment by given a segment id
-   \#1461 Add crud APIs and segments APIs into http module
381
-   \#1463 Update config version to 0.2
382
-   \#1531 Remove S3 related config
Z
Zhiru Zhu 已提交
383 384

## Improvement
J
Jin Hai 已提交
385 386 387
-   \#738 Use Openblas / lapack from apt install
-   \#758 Enhance config description
-   \#791 Remove Arrow
J
JinHai-CN 已提交
388
-   \#834 Add cpu mode for built-in Faiss
J
Jin Hai 已提交
389 390 391 392 393 394 395 396 397 398 399 400
-   \#848 Add ready-to-use config files to the Milvus repo for enhanced user experince
-   \#860 Remove redundant checks in CacheMgr's constructor
-   \#908 Move "primary_path" and "secondary_path" to storage config
-   \#931 Remove "collector" from config
-   \#966 Update NOTICE.md
-   \#1002 Rename minio to s3 in Storage Config section
-   \#1078 Move 'insert_buffer_size' to Cache Config section
-   \#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
-   \#1234 Do S3 server validation check when Milvus startup
-   \#1263 Allow system conf modifiable and some take effect directly
401
-   \#1310 Add default partition tag for a table
J
Jin Hai 已提交
402
-   \#1320 Remove debug logging from faiss
403
-   \#1426 Support to configure whether to enabled autoflush and the autoflush interval
J
Jin Hai 已提交
404
-   \#1444 Improve delete
405
-   \#1448 General proto api for NNS libraries
406
-   \#1480 Add return code for AVX512 selection
407
-   \#1524 Update config "preload_table" description
408
-   \#1544 Update resources name in HTTP module
409
-   \#1567 Update yaml config description
410

Z
Zhiru Zhu 已提交
411
## Task
J
Jin Hai 已提交
412 413
-   \#1327 Exclude third-party code from codebeat
-   \#1331 Exclude third-party code from codacy
Z
Zhiru Zhu 已提交
414

J
Jin Hai 已提交
415
# Milvus 0.6.0 (2019-12-07)
J
jinhai 已提交
416 417

## Bug
J
Jin Hai 已提交
418
-   \#228 Memory usage increased slowly during searching vectors
J
Jin Hai 已提交
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
-   \#246 Exclude src/external folder from code coverage for jenkin ci
-   \#248 Reside src/external in thirdparty
-   \#316 Some files not merged after vectors added
-   \#327 Search does not use GPU when index type is FLAT
-   \#331 Add exception handle when search fail
-   \#340 Test cases run failed on 0.6.0
-   \#353 Rename config.h.in to version.h.in
-   \#374 sdk_simple return empty result
-   \#377 Create partition success if tag name only contains spaces
-   \#397 sdk_simple return incorrect result
-   \#399 Create partition should be failed if partition tag existed
-   \#412 Message returned is confused when partition created with null partition name
-   \#416 Drop the same partition success repeatally
-   \#440 Query API in customization still uses old version
-   \#440 Server cannot startup with gpu_resource_config.enable=false in GPU version
-   \#458 Index data is not compatible between 0.5 and 0.6
-   \#465 Server hang caused by searching with nsg index
-   \#485 Increase code coverage rate
-   \#486 gpu no usage during index building
-   \#497 CPU-version search performance decreased
-   \#504 The code coverage rate of core/src/scheduler/optimizer is too low
-   \#509 IVF_PQ index build trapped into dead loop caused by invalid params
-   \#513 Unittest DELETE_BY_RANGE sometimes failed
-   \#523 Erase file data from cache once the file is marked as deleted
-   \#527 faiss benchmark not compatible with faiss 1.6.0
-   \#530 BuildIndex stop when do build index and search simultaneously
J
Jin Hai 已提交
445
-   \#532 Assigin value to `table_name` from confest shell
J
Jin Hai 已提交
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
-   \#533 NSG build failed with MetricType Inner Product
-   \#543 client raise exception in shards when search results is empty
-   \#545 Avoid dead circle of build index thread when error occurs
-   \#547 NSG build failed using GPU-edition if set gpu_enable false
-   \#548 NSG search accuracy is too low
-   \#552 Server down during building index_type: IVF_PQ using GPU-edition
-   \#561 Milvus server should report exception/error message or terminate on mysql metadata backend error
-   \#579 Build index hang in GPU version when gpu_resources disabled
-   \#596 Frequently insert operation cost too much disk space
-   \#599 Build index log is incorrect
-   \#602 Optimizer specify wrong gpu_id
-   \#606 No log generated during building index with CPU
-   \#616 IP search metric_type is not supported by IVF_PQ index
-   \#631 FAISS isn't compiled with O3 option
-   \#636 (CPU) Create index PQ should be failed if table metric type set Inner Product
-   \#649 Typo "partiton" should be "partition"
-   \#654 Random crash when frequently insert vector one by one
-   \#658 Milvus error out when building SQ8H index without GPU resources
-   \#668 Update badge of README
-   \#670 Random failure of unittest db_test::SEARCH_TEST
-   \#674 Server down in stability test
-   \#696 Metric_type changed from IP to L2
-   \#705 Fix search SQ8H crash without GPU resource
J
jinhai 已提交
469 470

## Feature
J
Jin Hai 已提交
471 472 473 474 475 476 477 478 479 480 481 482 483
-   \#12 Pure CPU version for Milvus
-   \#77 Support table partition
-   \#127 Support new Index type IVFPQ
-   \#226 Experimental shards middleware for Milvus
-   \#227 Support new index types SPTAG-KDT and SPTAG-BKT
-   \#346 Support build index with multiple gpu
-   \#420 Update shards merge part to match v0.5.3
-   \#488 Add log in scheduler/optimizer
-   \#502 C++ SDK support IVFPQ and SPTAG
-   \#560 Add version in server config file
-   \#605 Print more messages when server start
-   \#644 Add a new rpc command to get milvus build version whether cpu or gpu
-   \#709 Show last commit id when server start
J
jinhai 已提交
484 485

## Improvement
J
Jin Hai 已提交
486 487
-   \#255 Add ivfsq8 test report detailed version
-   \#260 C++ SDK README
J
Jin Hai 已提交
488
-   \#266 RPC request source code refactor
J
Jin Hai 已提交
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
-   \#274 Logger the time cost during preloading data
-   \#275 Rename C++ SDK IndexType
-   \#284 Change C++ SDK to shared library
-   \#306 Use int64 for all config integer
-   \#310 Add Q&A for 'protocol https not supported or disable in libcurl' issue
-   \#314 add Find FAISS in CMake
-   \#322 Add option to enable / disable prometheus
-   \#354 Build migration scripts into milvus docker image
-   \#358 Add more information in build.sh and install.md
-   \#404 Add virtual method Init() in Pass abstract class
-   \#409 Add a Fallback pass in optimizer
-   \#433 C++ SDK query result is not easy to use
-   \#449 Add ShowPartitions example for C++ SDK
-   \#470 Small raw files should not be build index
-   \#584 Intergrate internal FAISS
-   \#611 Remove MILVUS_CPU_VERSION
-   \#634 FAISS GPU version is compiled with O0
-   \#737 Refactor server module to separate Grpc from server handler and scheduler
J
jinhai 已提交
507 508 509

## Task

J
JinHai-CN 已提交
510
# Milvus 0.5.3 (2019-11-13)
J
jinhai 已提交
511

Y
yudong.cai 已提交
512
## Bug
J
Jin Hai 已提交
513
-   \#258 Bytes type in proto cause big-endian/little-endian problem
Y
yudong.cai 已提交
514 515 516 517

## Feature

## Improvement
J
Jin Hai 已提交
518 519
-   \#204 improve grpc performance in search
-   \#207 Add more unittest for config set/get
J
Jin Hai 已提交
520
-   \#208 Optimize unittest to support run single test more easily
J
Jin Hai 已提交
521 522
-   \#284 Change C++ SDK to shared library
-   \#260 C++ SDK README
Y
yudong.cai 已提交
523 524

## Task
J
jinhai 已提交
525

J
JinHai-CN 已提交
526
# Milvus 0.5.2 (2019-11-07)
J
jinhai 已提交
527 528

## Bug
J
Jin Hai 已提交
529
-   \#194 Search faild: message="Table file doesn't exist"
J
jinhai 已提交
530 531 532 533

## Feature

## Improvement
J
Jin Hai 已提交
534
-   \#190 Update default config:use_blas_threshold to 1100 and server version printout to 0.5.2
J
jinhai 已提交
535 536 537 538

## Task

# Milvus 0.5.1 (2019-11-04)
J
JinHai-CN 已提交
539 540

## Bug
J
Jin Hai 已提交
541 542 543
-   \#134 JFrog cache error
-   \#161 Search IVFSQHybrid crash on gpu
-   \#169 IVF_FLAT search out of memory
J
Jin Hai 已提交
544 545

## Feature
J
Jin Hai 已提交
546 547 548 549 550 551
-   \#90 The server start error messages could be improved to enhance user experience
-   \#104 test_scheduler core dump
-   \#115 Using new structure for tasktable
-   \#139 New config option use_gpu_threshold
-   \#146 Add only GPU and only CPU version for IVF_SQ8 and IVF_FLAT
-   \#164 Add CPU version for building index
F
fishpenguin 已提交
552

J
JinHai-CN 已提交
553
## Improvement
J
Jin Hai 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566
-   \#64 Improvement dump function in scheduler
-   \#80 Print version information into log during server start
-   \#82 Move easyloggingpp into "external" directory
-   \#92 Speed up CMake build process
-   \#96 Remove .a file in milvus/lib for docker-version
-   \#118 Using shared_ptr instead of weak_ptr to avoid performance loss
-   \#122 Add unique id for Job
-   \#130 Set task state MOVED after resource copy it completed
-   \#149 Improve large query optimizer pass
-   \#156 Not return error when search_resources and index_build_device set cpu
-   \#159 Change the configuration name from 'use_gpu_threshold' to 'gpu_search_threshold'
-   \#168 Improve result reduce
-   \#175 add invalid config unittest
W
wxyu 已提交
567

J
JinHai-CN 已提交
568 569
## Task

J
JinHai-CN 已提交
570
# Milvus 0.5.0 (2019-10-21)
J
jinhai 已提交
571 572

## Bug
J
Jin Hai 已提交
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
-   MS-568 Fix gpuresource free error
-   MS-572 Milvus crash when get SIGINT
-   MS-577 Unittest Query randomly hung
-   MS-587 Count get wrong result after adding vectors and index built immediately
-   MS-599 Search wrong result when table created with metric_type: IP
-   MS-601 Docker logs error caused by get CPUTemperature error
-   MS-605 Server going down during searching vectors
-   MS-620 Get table row counts display wrong error code
-   MS-622 Delete vectors should be failed if date range is invalid
-   MS-624 Search vectors failed if time ranges long enough
-   MS-637 Out of memory when load too many tasks
-   MS-639 SQ8H index created failed and server hang
-   MS-640 Cache object size calculate incorrect
-   MS-641 Segment fault(signal 11) in PickToLoad
-   MS-644 Search crashed with index-type: flat
-   MS-647 grafana display average cpu-temp
-   MS-652 IVFSQH quantization double free
-   MS-650 SQ8H index create issue
-   MS-653 When config check fail, Milvus close without message
-   MS-654 Describe index timeout when building index
-   MS-658 Fix SQ8 Hybrid can't search
-   MS-665 IVF_SQ8H search crash when no GPU resource in search_resources
-   \#9 Change default gpu_cache_capacity to 4
-   \#20 C++ sdk example get grpc error
-   \#23 Add unittest to improve code coverage
-   \#31 make clang-format failed after run build.sh -l
-   \#39 Create SQ8H index hang if using github server version
-   \#30 Some troubleshoot messages in Milvus do not provide enough information
-   \#48 Config unittest failed
-   \#59 Topk result is incorrect for small dataset
J
jinhai 已提交
603 604

## Improvement
J
Jin Hai 已提交
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
-   MS-552 Add and change the easylogging library
-   MS-553 Refine cache code
-   MS-555 Remove old scheduler
-   MS-556 Add Job Definition in Scheduler
-   MS-557 Merge Log.h
-   MS-558 Refine status code
-   MS-562 Add JobMgr and TaskCreator in Scheduler
-   MS-566 Refactor cmake
-   MS-574 Milvus configuration refactor
-   MS-578 Make sure milvus5.0 don't crack 0.3.1 data
-   MS-585 Update namespace in scheduler
-   MS-606 Speed up result reduce
-   MS-608 Update TODO names
-   MS-609 Update task construct function
-   MS-611 Add resources validity check in ResourceMgr
-   MS-619 Add optimizer class in scheduler
-   MS-626 Refactor DataObj to support cache any type data
-   MS-648 Improve unittest
-   MS-655 Upgrade SPTAG
-   \#42 Put union of index_build_device and search resources to gpu_pool
-   \#67 Avoid linking targets multiple times in cmake
J
jinhai 已提交
626

J
JinHai-CN 已提交
627
## Feature
J
Jin Hai 已提交
628 629 630 631
-   MS-614 Preload table at startup
-   MS-627 Integrate new index: IVFSQHybrid
-   MS-631 IVFSQ8H Index support
-   MS-636 Add optimizer in scheduler for FAISS_IVFSQ8H
J
jinhai 已提交
632 633

## Task
J
Jin Hai 已提交
634 635 636 637 638 639 640 641 642 643 644 645 646 647
-   MS-554 Change license to Apache 2.0
-   MS-561 Add contributing guidelines, code of conduct and README docs
-   MS-567 Add NOTICE.md
-   MS-569 Complete the NOTICE.md
-   MS-575 Add Clang-format & Clang-tidy & Cpplint
-   MS-586 Remove BUILD_FAISS_WITH_MKL option
-   MS-590 Refine cmake code to support cpplint
-   MS-600 Reconstruct unittest code
-   MS-602 Remove zilliz namespace
-   MS-610 Change error code base value from hex to decimal
-   MS-624 Re-organize project directory for open-source
-   MS-635 Add compile option to support customized faiss
-   MS-660 add ubuntu_build_deps.sh
-   \#18 Add all test cases
P
peng.xu 已提交
648

J
jinhai 已提交
649
# Milvus 0.4.0 (2019-09-12)
Z
zhiru 已提交
650 651

## Bug
J
Jin Hai 已提交
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
-   MS-119 The problem of combining the log files
-   MS-121 The problem that user can't change the time zone
-   MS-411 Fix metric unittest linking error
-   MS-412 Fix gpu cache logical error
-   MS-416 ExecutionEngineImpl::GpuCache has not return value cause crash
-   MS-417 YAML sequence load disable cause scheduler startup failed
-   MS-413 Create index failed and server exited
-   MS-427 Describe index error after drop index
-   MS-432 Search vectors params nprobe need to check max number
-   MS-431 Search vectors params nprobe: 0/-1, expected result: raise exception
-   MS-331 Crate Table : when table exists, error code is META_FAILED(code=15) rather than ILLEGAL TABLE NAME(code=9))
-   MS-430 Search no result if index created with FLAT
-   MS-443 Create index hang again
-   MS-436 Delete vectors failed if index created with index_type: IVF_FLAT/IVF_SQ8
-   MS-449 Add vectors twice success, once with ids, the other no ids
-   MS-450 server hang after run stop_server.sh
-   MS-458 Keep building index for one file when no gpu resource
-   MS-461 Mysql meta unittest failed
-   MS-462 Run milvus server twices, should display error
-   MS-463 Search timeout
-   MS-467 mysql db test failed
-   MS-470 Drop index success, which table not created
-   MS-471 code coverage run failed
-   MS-492 Drop index failed if index have been created with index_type: FLAT
-   MS-493 Knowhere unittest crash
-   MS-453 GPU search error when nprobe set more than 1024
-   MS-474 Create index hang if use branch-0.3.1 server config
-   MS-510 unittest out of memory and crashed
-   MS-507 Dataset 10m-512, index type sq8,performance in-normal when set CPU_CACHE to 16 or 64
-   MS-543 SearchTask fail without exception
-   MS-582 grafana displays changes frequently
Z
zhiru 已提交
683 684

## Improvement
J
Jin Hai 已提交
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
-   MS-327 Clean code for milvus
-   MS-336 Scheduler interface
-   MS-344 Add TaskTable Test
-   MS-345 Add Node Test
-   MS-346 Add some implementation of scheduler to solve compile error
-   MS-348 Add ResourceFactory Test
-   MS-350 Remove knowhere submodule
-   MS-354 Add task class and interface in scheduler
-   MS-355 Add copy interface in ExcutionEngine
-   MS-357 Add minimum schedule function
-   MS-359 Add cost test in new scheduler
-   MS-361 Add event in resource
-   MS-364 Modify tasktableitem in tasktable
-   MS-365 Use tasktableitemptr instead in event
-   MS-366 Implement TaskTable
-   MS-368 Implement cost.cpp
-   MS-371 Add TaskTableUpdatedEvent
-   MS-373 Add resource test
-   MS-374 Add action definition
-   MS-375 Add Dump implementation for Event
-   MS-376 Add loader and executor enable flag in Resource avoid diskresource execute task
-   MS-377 Improve process thread trigger in ResourceMgr, Scheduler and TaskTable
-   MS-378 Debug and Update normal_test in scheduler unittest
-   MS-379 Add Dump implementation in Resource
-   MS-380 Update resource loader and executor, work util all finished
-   MS-383 Modify condition variable usage in scheduler
-   MS-384 Add global instance of ResourceMgr and Scheduler
-   MS-389 Add clone interface in Task
-   MS-390 Update resource construct function
-   MS-391 Add PushTaskToNeighbourHasExecutor action
-   MS-394 Update scheduler unittest
-   MS-400 Add timestamp record in task state change function
-   MS-402 Add dump implementation for TaskTableItem
-   MS-406 Add table flag for meta
-   MS-403 Add GpuCacheMgr
-   MS-404 Release index after search task done avoid memory increment continues
-   MS-405 Add delete task support
-   MS-407 Reconstruct MetricsCollector
-   MS-408 Add device_id in resource construct function
-   MS-409 Using new scheduler
-   MS-413 Remove thrift dependency
-   MS-410 Add resource config comment
-   MS-414 Add TaskType in Scheduler::Task
-   MS-415 Add command tasktable to dump all tasktables
-   MS-418 Update server_config.template file, set CPU compute only default
-   MS-419 Move index_file_size from IndexParam to TableSchema
-   MS-421 Add TaskLabel in scheduler
-   MS-422 Support DeleteTask in Multi-GpuResource case
-   MS-428 Add PushTaskByDataLocality in scheduler
-   MS-440 Add DumpTaskTables in sdk
-   MS-442 Merge Knowhere
-   MS-445 Rename CopyCompleted to LoadCompleted
-   MS-451 Update server_config.template file, set GPU compute default
-   MS-455 Distribute tasks by minimal cost in scheduler
-   MS-460 Put transport speed as weight when choosing neighbour to execute task
-   MS-459 Add cache for pick function in tasktable
-   MS-476 Improve search performance
-   MS-482 Change search stream transport to unary in grpc
-   MS-487 Define metric type in CreateTable
-   MS-488 Improve code format in scheduler
-   MS-495 cmake: integrated knowhere
-   MS-496 Change the top_k limitation from 1024 to 2048
-   MS-502 Update tasktable_test in scheduler
-   MS-504 Update node_test in scheduler
-   MS-505 Install core unit test and add to coverage
-   MS-508 Update normal_test in scheduler
-   MS-532 Add grpc server unittest
-   MS-511 Update resource_test in scheduler
-   MS-517 Update resource_mgr_test in scheduler
-   MS-518 Add schedinst_test in scheduler
-   MS-519 Add event_test in scheduler
-   MS-520 Update resource_test in scheduler
-   MS-524 Add some unittest in event_test and resource_test
-   MS-525 Disable parallel reduce in SearchTask
-   MS-527 Update scheduler_test and enable it
-   MS-528 Hide some config used future
-   MS-530 Add unittest for SearchTask->Load
-   MS-531 Disable next version code
-   MS-533 Update resource_test to cover dump function
-   MS-523 Config file validation
-   MS-539 Remove old task code
-   MS-546 Add simple mode resource_config
-   MS-570 Add prometheus docker-compose file
-   MS-576 Scheduler refactor
-   MS-592 Change showtables stream transport to unary
Z
zhiru 已提交
770

J
JinHai-CN 已提交
771
## Feature
J
Jin Hai 已提交
772 773 774 775
-   MS-343 Implement ResourceMgr
-   MS-338 NewAPI: refine code to support CreateIndex
-   MS-339 NewAPI: refine code to support DropIndex
-   MS-340 NewAPI: implement DescribeIndex
Z
zhiru 已提交
776 777

## Task
J
Jin Hai 已提交
778
-   MS-297 disable mysql unit test
779 780 781 782 783

# Milvus 0.3.1 (2019-07-10)

## Bug

J
Jin Hai 已提交
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
-   MS-148 Disable cleanup if mode is read only
-   MS-149 Fixed searching only one index file issue in distributed mode
-   MS-153 Fix c_str error when connecting to MySQL
-   MS-157 Fix changelog
-   MS-190 Use env variable to switch mem manager and fix cmake
-   MS-217 Fix SQ8 row count bug
-   MS-224 Return AlreadyExist status in MySQLMetaImpl::CreateTable if table already exists
-   MS-232 Add MySQLMetaImpl::UpdateTableFilesToIndex and set maximum_memory to default if config value = 0
-   MS-233 Remove mem manager log
-   MS-230 Change parameter name: Maximum_memory to insert_buffer_size
-   MS-234 Some case cause background merge thread stop
-   MS-235 Some test cases random fail
-   MS-236 Add MySQLMetaImpl::HasNonIndexFiles
-   MS-257 Update bzip2 download url
-   MS-288 Update compile scripts
-   MS-330 Stability test failed caused by server core dumped
-   MS-347 Build index hangs again
-   MS-382 fix MySQLMetaImpl::CleanUpFilesWithTTL unknown column bug
Z
zhiru 已提交
802

803
## Improvement
J
Jin Hai 已提交
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
-   MS-156 Add unittest for merge result functions
-   MS-152 Delete assert in MySQLMetaImpl and change MySQLConnectionPool impl
-   MS-204 Support multi db_path
-   MS-206 Support SQ8 index type
-   MS-208 Add buildinde interface for C++ SDK
-   MS-212 Support Inner product metric type
-   MS-241 Build Faiss with MKL if using Intel CPU; else build with OpenBlas
-   MS-242 Clean up cmake and change MAKE_BUILD_ARGS to be user defined variable
-   MS-245 Improve search result transfer performance
-   MS-248 Support AddVector/SearchVector profiling
-   MS-256 Add more cache config
-   MS-260 Refine log
-   MS-249 Check machine hardware during initialize
-   MS-261 Update faiss version to 1.5.3 and add BUILD_FAISS_WITH_MKL as an option
-   MS-266 Improve topk reduce time by using multi-threads
-   MS-275 Avoid sqlite logic error excetion
-   MS-278 add IndexStatsHelper
-   MS-313 add GRPC
-   MS-325 add grpc status return for C++ sdk and modify some format
-   MS-278 Add IndexStatsHelper
-   MS-312 Set openmp thread number by config
-   MS-305 Add CPU core percent metric
-   MS-310 Add milvus CPU utilization ratio and CPU/GPU temperature metrics
-   MS-324 Show error when there is not enough gpu memory to build index
-   MS-328 Check metric type on server start
-   MS-332 Set grpc and thrift server run concurrently
-   MS-352 Add hybrid index
Z
zhiru 已提交
831

J
JinHai-CN 已提交
832
## Feature
J
Jin Hai 已提交
833 834 835
-   MS-180 Add new mem manager
-   MS-195 Add nlist and use_blas_threshold conf
-   MS-137 Integrate knowhere
836

837 838
## Task

J
Jin Hai 已提交
839 840
-   MS-125 Create 0.3.1 release branch
-   MS-306 Optimize build efficiency
841 842

# Milvus 0.3.0 (2019-06-30)
J
jinhai 已提交
843

J
jinhai 已提交
844
## Bug
J
Jin Hai 已提交
845 846 847 848 849 850 851
-   MS-104 Fix unittest lcov execution error
-   MS-102 Fix build script file condition error
-   MS-80 Fix server hang issue
-   MS-89 Fix compile failed, libgpufaiss.a link missing
-   MS-90 Fix arch match incorrect on ARM
-   MS-99 Fix compilation bug
-   MS-110 Avoid huge file size
J
jinhai 已提交
852

J
jinhai 已提交
853
## Improvement
J
Jin Hai 已提交
854 855 856 857 858 859 860 861 862 863 864
-   MS-82 Update server startup welcome message
-   MS-83 Update vecwise to Milvus
-   MS-77 Performance issue of post-search action
-   MS-22 Enhancement for MemVector size control
-   MS-92 Unify behavior of debug and release build
-   MS-98 Install all unit test to installation directory
-   MS-115 Change is_startup of metric_config switch from true to on
-   MS-122 Archive criteria config
-   MS-124 HasTable interface
-   MS-126 Add more error code
-   MS-128 Change default db path
G
groot 已提交
865

J
JinHai-CN 已提交
866
## Feature
J
jinhai 已提交
867

J
Jin Hai 已提交
868 869 870 871 872 873 874 875 876 877 878 879 880
-   MS-57 Implement index load/search pipeline
-   MS-56 Add version information when server is started
-   MS-64 Different table can have different index type
-   MS-52 Return search score
-   MS-66 Support time range query
-   MS-68 Remove rocksdb from third-party
-   MS-70 cmake: remove redundant libs in src
-   MS-71 cmake: fix faiss dependency
-   MS-72 cmake: change prometheus source to git
-   MS-73 cmake: delete civetweb
-   MS-65 Implement GetTableRowCount interface
-   MS-45 Implement DeleteTable interface
-   MS-75 cmake: change faiss version to 1.5.2; add CUDA gencode
881
-   MS-81 Fix faiss ptx issue; change cuda gencode
J
Jin Hai 已提交
882 883 884 885 886 887 888 889 890
-   MS-84 cmake: add arrow, jemalloc and jsoncons third party; default build option OFF
-   MS-85 add NetIO metric
-   MS-96 add new query interface for specified files
-   MS-97 Add S3 SDK for MinIO Storage
-   MS-105 Add MySQL
-   MS-130 Add prometheus_test
-   MS-144 Add nprobe config
-   MS-147 Enable IVF
-   MS-130 Add prometheus_test
S
starlord 已提交
891

J
jinhai 已提交
892
## Task
J
Jin Hai 已提交
893 894
-   MS-74 Change README.md in cpp
-   MS-88 Add support for arm architecture
J
jinhai 已提交
895

G
groot 已提交
896
# Milvus 0.2.0 (2019-05-31)
J
jinhai 已提交
897 898 899

## Bug

J
Jin Hai 已提交
900 901 902 903
-   MS-32 Fix thrift error
-   MS-34 Fix prometheus-cpp thirdparty
-   MS-67 Fix license check bug
-   MS-76 Fix pipeline crash bug
J
Jin Hai 已提交
904
-   MS-100 CMake: fix AWS build issue
G
groot 已提交
905
-   MS-101 Change AWS build type to Release
J
jinhai 已提交
906 907 908

## Improvement

J
Jin Hai 已提交
909
-   MS-20 Clean Code Part 1
J
jinhai 已提交
910

J
JinHai-CN 已提交
911
## Feature
J
jinhai 已提交
912

J
Jin Hai 已提交
913 914 915 916
-   MS-5 Implement Auto Archive Feature
-   MS-6 Implement SDK interface part 1
-   MS-16 Implement metrics without prometheus
-   MS-21 Implement SDK interface part 2
J
Jin Hai 已提交
917
-   MS-26 CMake. Add thirdparty packages
J
Jin Hai 已提交
918
-   MS-31 CMake: add prometheus
J
jinhai 已提交
919
-   MS-33 CMake: add -j4 to make third party packages build faster
920
-   MS-27 Support gpu config and disable license build config in cmake
J
Jin Hai 已提交
921 922 923
-   MS-47 Add query vps metrics
-   MS-37 Add query, cache usage, disk write speed and file data size metrics
-   MS-30 Use faiss v1.5.2
J
jinhai 已提交
924
-   MS-54 CMake: Change Thrift third party URL to github.com
J
Jin Hai 已提交
925
-   MS-69 Prometheus: add all proposed metrics
G
groot 已提交
926

J
jinhai 已提交
927
## Task
J
jinhai 已提交
928

J
Jin Hai 已提交
929 930 931
-   MS-1 Add CHANGELOG.md
-   MS-4 Refactor the vecwise_engine code structure
-   MS-62 Search range to all if no date specified
932