mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 21:09:06 +08:00
2b7ee1968f
issue: #33285 --------- Signed-off-by: chyezh <chyezh@outlook.com>
19 lines
398 B
Protocol Buffer
19 lines
398 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package milvus.proto.log;
|
|
|
|
option go_package = "github.com/milvus-io/milvus/internal/proto/logpb";
|
|
|
|
import "milvus.proto";
|
|
import "google/protobuf/empty.proto";
|
|
|
|
//
|
|
// Common
|
|
//
|
|
|
|
// Message is the basic unit of communication between publisher and consumer.
|
|
message Message {
|
|
bytes payload = 1; // message body
|
|
map<string, string> properties = 2; // message properties
|
|
}
|