1. fix bzip2 download url

2. update exception


Former-commit-id: f9f9c4e49933f3e60c7245a886882ca187722cc7
pull/191/head
yudong.cai 2019-07-21 11:57:12 +08:00 committed by xj.lin
parent 100bdc0d4a
commit 4cff638c30
2 changed files with 6 additions and 5 deletions

View File

@ -230,7 +230,7 @@ endif()
if(DEFINED ENV{MILVUS_BZIP2_URL})
set(BZIP2_SOURCE_URL "$ENV{MILVUS_BZIP2_URL}")
else()
set(BZIP2_SOURCE_URL "https://fossies.org/linux/misc/bzip2-${BZIP2_VERSION}.tar.gz")
set(BZIP2_SOURCE_URL "https://sourceware.org/pub/bzip2/bzip2-${BZIP2_VERSION}.tar.gz")
endif()
if(DEFINED ENV{MILVUS_EASYLOGGINGPP_URL})

View File

@ -7,6 +7,7 @@
#include "cache/CpuCacheMgr.h"
#include "cache/GpuCacheMgr.h"
#include "utils/Error.h"
#include "wrapper/Index.h"
#include "wrapper/knowhere/vec_index.h"
@ -29,7 +30,7 @@ public:
class MockVecIndex : public engine::VecIndex {
public:
virtual void BuildAll(const long &nb,
virtual server::KnowhereError BuildAll(const long &nb,
const float *xb,
const long *ids,
const engine::Config &cfg,
@ -42,14 +43,14 @@ public:
return engine::IndexType::INVALID;
}
virtual void Add(const long &nb,
virtual server::KnowhereError Add(const long &nb,
const float *xb,
const long *ids,
const engine::Config &cfg = engine::Config()) {
}
virtual void Search(const long &nq,
virtual server::KnowhereError Search(const long &nq,
const float *xq,
float *dist,
long *ids,
@ -70,7 +71,7 @@ public:
return binset;
}
virtual void Load(const zilliz::knowhere::BinarySet &index_binary) {
virtual server::KnowhereError Load(const zilliz::knowhere::BinarySet &index_binary) {
}