Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Public Interfaces(optional)

Briefly list any new interfaces that will be introduced as part of this proposal or any existing interfaces that will be removed or changed.

We will use Arrow format to replace all in-memory data format used for in Insert/Search/Query. 

All proto definitions which are used to communicate between SDK and proxy are listed below:

  • Proto changed for Insert
Code Block
// internal/proto/milvus.proto
message InsertRequest {
  ...
- repeated schema.FieldData fields_data = 5;
+ bytes batch_record = 5;
  ...
}

...