mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
aa6b8af80d
Signed-off-by: yah01 <yang.cen@zilliz.com> Signed-off-by: yah01 <yang.cen@zilliz.com>
25 lines
596 B
Go
25 lines
596 B
Go
package model
|
|
|
|
import "github.com/milvus-io/milvus/internal/proto/querypb"
|
|
|
|
type CollectionLoadInfo struct {
|
|
CollectionID int64
|
|
PartitionIDs []int64
|
|
ReleasedPartitionIDs []int64
|
|
LoadType querypb.LoadType
|
|
LoadPercentage int64
|
|
Status querypb.LoadStatus
|
|
ReplicaNumber int32
|
|
FieldIndexID map[int64]int64
|
|
}
|
|
|
|
type PartitionLoadInfo struct {
|
|
CollectionID int64
|
|
PartitionID int64
|
|
LoadType querypb.LoadType
|
|
LoadPercentage int64
|
|
Status querypb.LoadStatus
|
|
ReplicaNumber int32
|
|
FieldIndexID map[int64]int64
|
|
}
|