Loading CHANGELOG.md +2 −0 Original line number Diff line number Diff line Loading @@ -50,6 +50,8 @@ Please mark all change in change log and use the ticket from JIRA. - \#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 ## Feature - \#12 - Pure CPU version for Milvus Loading README.md +2 −2 Original line number Diff line number Diff line Loading @@ -5,8 +5,8 @@   [](https://codebeat.co/projects/github-com-jinhai-cn-milvus-master)     [](https://codecov.io/gh/milvus-io/milvus) [中文版](README_CN.md) | [日本語版](README_JP.md) Loading README_CN.md +2 −2 Original line number Diff line number Diff line Loading @@ -4,8 +4,8 @@   [](https://codebeat.co/projects/github-com-jinhai-cn-milvus-master)     [](https://codecov.io/gh/milvus-io/milvus) Loading README_JP.md +3 −2 Original line number Diff line number Diff line Loading @@ -5,8 +5,9 @@   [](https://codebeat.co/projects/github-com-jinhai-cn-milvus-master)     [](https://codecov.io/gh/milvus-io/milvus) # Milvus へようこそ Loading core/unittest/db/test_db.cpp +7 −1 Original line number Diff line number Diff line Loading @@ -338,7 +338,13 @@ TEST_F(DBTest, SEARCH_TEST) { { // search by specify index file milvus::engine::meta::DatesT dates; std::vector<std::string> file_ids = {"1", "2", "3", "4", "5", "6"}; std::vector<std::string> file_ids; // sometimes this case run fast to merge file and build index, old file will be deleted immediately, // so the QueryByFileID cannot get files to search // input 100 files ids to avoid random failure of this case for (int i = 0; i < 100; i++) { file_ids.push_back(std::to_string(i)); } milvus::engine::ResultIds result_ids; milvus::engine::ResultDistances result_distances; stat = db_->QueryByFileID(TABLE_NAME, file_ids, k, nq, 10, xq.data(), dates, result_ids, result_distances); Loading Loading
CHANGELOG.md +2 −0 Original line number Diff line number Diff line Loading @@ -50,6 +50,8 @@ Please mark all change in change log and use the ticket from JIRA. - \#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 ## Feature - \#12 - Pure CPU version for Milvus Loading
README.md +2 −2 Original line number Diff line number Diff line Loading @@ -5,8 +5,8 @@   [](https://codebeat.co/projects/github-com-jinhai-cn-milvus-master)     [](https://codecov.io/gh/milvus-io/milvus) [中文版](README_CN.md) | [日本語版](README_JP.md) Loading
README_CN.md +2 −2 Original line number Diff line number Diff line Loading @@ -4,8 +4,8 @@   [](https://codebeat.co/projects/github-com-jinhai-cn-milvus-master)     [](https://codecov.io/gh/milvus-io/milvus) Loading
README_JP.md +3 −2 Original line number Diff line number Diff line Loading @@ -5,8 +5,9 @@   [](https://codebeat.co/projects/github-com-jinhai-cn-milvus-master)     [](https://codecov.io/gh/milvus-io/milvus) # Milvus へようこそ Loading
core/unittest/db/test_db.cpp +7 −1 Original line number Diff line number Diff line Loading @@ -338,7 +338,13 @@ TEST_F(DBTest, SEARCH_TEST) { { // search by specify index file milvus::engine::meta::DatesT dates; std::vector<std::string> file_ids = {"1", "2", "3", "4", "5", "6"}; std::vector<std::string> file_ids; // sometimes this case run fast to merge file and build index, old file will be deleted immediately, // so the QueryByFileID cannot get files to search // input 100 files ids to avoid random failure of this case for (int i = 0; i < 100; i++) { file_ids.push_back(std::to_string(i)); } milvus::engine::ResultIds result_ids; milvus::engine::ResultDistances result_distances; stat = db_->QueryByFileID(TABLE_NAME, file_ids, k, nq, 10, xq.data(), dates, result_ids, result_distances); Loading