milvus/internal/proto/write_node.proto
zhenshan.cao 9694203f8b Add writer client and metatable for writer
Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
2020-12-21 10:06:46 +08:00

19 lines
407 B
Protocol Buffer

syntax = "proto3";
package milvus.proto.service;
option go_package="github.com/zilliztech/milvus-distributed/internal/proto/writerpb";
message FieldFlushMeta {
int32 fieldID = 1;
repeated string binlog_paths = 2;
}
//etcd meta
message SegmentFlushMeta{
int64 segmentID = 1;
bool is_closed = 2;
uint64 open_time =3;
uint64 close_time = 4;
repeated FieldFlushMeta fields = 5;
}