mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
50d59d91ee
Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
62 lines
1.1 KiB
Protocol Buffer
62 lines
1.1 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package milvus.proto.common;
|
|
option go_package="github.com/zilliztech/milvus-distributed/internal/proto/commonpb";
|
|
|
|
enum ErrorCode {
|
|
SUCCESS = 0;
|
|
UNEXPECTED_ERROR = 1;
|
|
CONNECT_FAILED = 2;
|
|
PERMISSION_DENIED = 3;
|
|
COLLECTION_NOT_EXISTS = 4;
|
|
ILLEGAL_ARGUMENT = 5;
|
|
ILLEGAL_DIMENSION = 7;
|
|
ILLEGAL_INDEX_TYPE = 8;
|
|
ILLEGAL_COLLECTION_NAME = 9;
|
|
ILLEGAL_TOPK = 10;
|
|
ILLEGAL_ROWRECORD = 11;
|
|
ILLEGAL_VECTOR_ID = 12;
|
|
ILLEGAL_SEARCH_RESULT = 13;
|
|
FILE_NOT_FOUND = 14;
|
|
META_FAILED = 15;
|
|
CACHE_FAILED = 16;
|
|
CANNOT_CREATE_FOLDER = 17;
|
|
CANNOT_CREATE_FILE = 18;
|
|
CANNOT_DELETE_FOLDER = 19;
|
|
CANNOT_DELETE_FILE = 20;
|
|
BUILD_INDEX_ERROR = 21;
|
|
ILLEGAL_NLIST = 22;
|
|
ILLEGAL_METRIC_TYPE = 23;
|
|
OUT_OF_MEMORY = 24;
|
|
|
|
// internal error code.
|
|
DD_REQUEST_RACE = 1000;
|
|
}
|
|
|
|
|
|
message Empty{}
|
|
|
|
|
|
message Status {
|
|
ErrorCode error_code = 1;
|
|
string reason = 2;
|
|
}
|
|
|
|
|
|
message KeyValuePair {
|
|
string key = 1;
|
|
string value = 2;
|
|
}
|
|
|
|
|
|
message Blob {
|
|
bytes value = 1;
|
|
}
|
|
|
|
|
|
message Address {
|
|
string ip = 1;
|
|
int64 port = 2;
|
|
}
|
|
|