Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 27 additions & 13 deletions go-api/msgpb/msg.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions proto/msg.proto
Original file line number Diff line number Diff line change
Expand Up @@ -146,4 +146,10 @@ message ImportMsg {
schema.CollectionSchema schema = 8;
int64 jobID = 9;
string idempotency_key = 10;
// Internal execution compatibility marker preserved by pending broadcaster
// tasks, WAL recovery, and CDC forwarding during rolling upgrades.
// 0: unspecified or absent; interpreted by Milvus as the legacy V2 path.
// 2: execute with ImportTaskV2.
// 3: execute with ReshardTask and ImportTaskV3.
int64 version = 11;
Comment on lines +150 to +154
}
Loading