mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
b1a1cca10b
issue: #30436 --------- Signed-off-by: SimFG <bang.fu@zilliz.com>
22 lines
478 B
Go
22 lines
478 B
Go
package model
|
|
|
|
import (
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
)
|
|
|
|
type Segment struct {
|
|
SegmentID int64
|
|
CollectionID int64
|
|
PartitionID int64
|
|
NumRows int64
|
|
BinLogs []string
|
|
MemSize int64
|
|
DmChannel string
|
|
CompactionFrom []int64
|
|
CreatedByCompaction bool
|
|
SegmentState commonpb.SegmentState
|
|
// IndexInfos []*SegmentIndex
|
|
ReplicaIDs []int64
|
|
NodeIDs []int64
|
|
}
|