forked from milvus-io/milvus-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
3,783 additions
and
3,539 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "internal/milvus-proto"] | ||
path = internal/milvus-proto | ||
url = [email protected]:milvus-io/milvus-proto.git | ||
url = [email protected]:wayblink/milvus-proto.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package entity | ||
|
||
type ImportState int32 | ||
|
||
const ( | ||
ImportState_ImportPending ImportState = 0 | ||
ImportState_ImportFailed ImportState = 1 | ||
ImportState_ImportStarted ImportState = 2 | ||
ImportState_ImportDownloaded ImportState = 3 | ||
ImportState_ImportParsed ImportState = 4 | ||
ImportState_ImportPersisted ImportState = 5 | ||
ImportState_ImportCompleted ImportState = 6 | ||
ImportState_ImportAllocSegment ImportState = 10 | ||
) | ||
|
||
type ImportTaskState struct { | ||
Id int64 | ||
State ImportState | ||
RowCount int64 | ||
IdList []int64 | ||
Infos map[string]string | ||
CollectionId int64 | ||
SegmentIds []int64 | ||
} |
Oops, something went wrong.