mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +08:00
19 lines
639 B
Go
19 lines
639 B
Go
package test
|
|
|
|
import "sync"
|
|
|
|
var (
|
|
wg sync.WaitGroup
|
|
|
|
OriginMsgSchema = "{\"type\":\"record\",\"name\":\"suvlim\",\"namespace\":\"pulsar\",\"fields\":[" +
|
|
"{\"name\":\"CollectionName\",\"type\":\"string\"}," +
|
|
"{\"name\":\"Fields\",\"type\":\"[]*FieldValue\"}" +
|
|
"{\"name\":\"EntityId\",\"type\":\"int64\"}" +
|
|
"{\"name\":\"PartitionTag\",\"type\":\"string\"}" +
|
|
"{\"name\":\"VectorParam\",\"type\":\"*VectorParam\"}" +
|
|
"{\"name\":\"Segments\",\"type\":\"[]string\"}" +
|
|
"{\"name\":\"Timestamp\",\"type\":\"int64\"}" +
|
|
"{\"name\":\"ClientId\",\"type\":\"int64\"}" +
|
|
"{\"name\":\"MsgType\",\"type\":\"OpType\"}" +
|
|
"]}"
|
|
) |