mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
26f06dd732
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
|
|
}
|