2022-07-22 10:20:29 +08:00
|
|
|
package metastore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/milvus-io/milvus/internal/metastore/model"
|
2022-08-20 10:24:51 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/proto/datapb"
|
|
|
|
"github.com/milvus-io/milvus/internal/proto/milvuspb"
|
2022-07-22 10:20:29 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/typeutil"
|
|
|
|
)
|
|
|
|
|
2022-08-20 10:24:51 +08:00
|
|
|
type RootCoordCatalog interface {
|
2022-07-22 10:20:29 +08:00
|
|
|
CreateCollection(ctx context.Context, collectionInfo *model.Collection, ts typeutil.Timestamp) error
|
|
|
|
GetCollectionByID(ctx context.Context, collectionID typeutil.UniqueID, ts typeutil.Timestamp) (*model.Collection, error)
|
|
|
|
GetCollectionByName(ctx context.Context, collectionName string, ts typeutil.Timestamp) (*model.Collection, error)
|
|
|
|
ListCollections(ctx context.Context, ts typeutil.Timestamp) (map[string]*model.Collection, error)
|
|
|
|
CollectionExists(ctx context.Context, collectionID typeutil.UniqueID, ts typeutil.Timestamp) bool
|
|
|
|
DropCollection(ctx context.Context, collectionInfo *model.Collection, ts typeutil.Timestamp) error
|
|
|
|
|
2022-08-10 10:22:38 +08:00
|
|
|
CreatePartition(ctx context.Context, partition *model.Partition, ts typeutil.Timestamp) error
|
|
|
|
DropPartition(ctx context.Context, collectionID typeutil.UniqueID, partitionID typeutil.UniqueID, ts typeutil.Timestamp) error
|
2022-07-22 10:20:29 +08:00
|
|
|
|
|
|
|
CreateIndex(ctx context.Context, col *model.Collection, index *model.Index) error
|
|
|
|
// AlterIndex newIndex only contains updated parts
|
|
|
|
AlterIndex(ctx context.Context, oldIndex *model.Index, newIndex *model.Index, alterType AlterType) error
|
2022-08-11 12:12:38 +08:00
|
|
|
DropIndex(ctx context.Context, collectionInfo *model.Collection, dropIdxID typeutil.UniqueID) error
|
2022-07-22 10:20:29 +08:00
|
|
|
ListIndexes(ctx context.Context) ([]*model.Index, error)
|
|
|
|
|
2022-08-10 10:22:38 +08:00
|
|
|
CreateAlias(ctx context.Context, alias *model.Alias, ts typeutil.Timestamp) error
|
|
|
|
DropAlias(ctx context.Context, alias string, ts typeutil.Timestamp) error
|
|
|
|
AlterAlias(ctx context.Context, alias *model.Alias, ts typeutil.Timestamp) error
|
|
|
|
ListAliases(ctx context.Context, ts typeutil.Timestamp) ([]*model.Alias, error)
|
2022-07-22 10:20:29 +08:00
|
|
|
|
|
|
|
GetCredential(ctx context.Context, username string) (*model.Credential, error)
|
|
|
|
CreateCredential(ctx context.Context, credential *model.Credential) error
|
2022-08-24 14:32:56 +08:00
|
|
|
AlterCredential(ctx context.Context, credential *model.Credential) error
|
2022-07-22 10:20:29 +08:00
|
|
|
DropCredential(ctx context.Context, username string) error
|
|
|
|
ListCredentials(ctx context.Context) ([]string, error)
|
|
|
|
|
2022-08-04 11:04:34 +08:00
|
|
|
CreateRole(ctx context.Context, tenant string, entity *milvuspb.RoleEntity) error
|
|
|
|
DropRole(ctx context.Context, tenant string, roleName string) error
|
2022-08-23 10:26:53 +08:00
|
|
|
AlterUserRole(ctx context.Context, tenant string, userEntity *milvuspb.UserEntity, roleEntity *milvuspb.RoleEntity, operateType milvuspb.OperateUserRoleType) error
|
|
|
|
ListRole(ctx context.Context, tenant string, entity *milvuspb.RoleEntity, includeUserInfo bool) ([]*milvuspb.RoleResult, error)
|
|
|
|
ListUser(ctx context.Context, tenant string, entity *milvuspb.UserEntity, includeRoleInfo bool) ([]*milvuspb.UserResult, error)
|
|
|
|
AlterGrant(ctx context.Context, tenant string, entity *milvuspb.GrantEntity, operateType milvuspb.OperatePrivilegeType) error
|
|
|
|
ListGrant(ctx context.Context, tenant string, entity *milvuspb.GrantEntity) ([]*milvuspb.GrantEntity, error)
|
2022-08-04 11:04:34 +08:00
|
|
|
ListPolicy(ctx context.Context, tenant string) ([]string, error)
|
|
|
|
ListUserRole(ctx context.Context, tenant string) ([]string, error)
|
|
|
|
|
2022-07-22 10:20:29 +08:00
|
|
|
Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
type AlterType int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
ADD AlterType = iota
|
|
|
|
DELETE
|
|
|
|
MODIFY
|
|
|
|
)
|
2022-08-20 10:24:51 +08:00
|
|
|
|
|
|
|
type DataCoordCatalog interface {
|
|
|
|
ListSegments(ctx context.Context) ([]*datapb.SegmentInfo, error)
|
|
|
|
AddSegment(ctx context.Context, segment *datapb.SegmentInfo) error
|
|
|
|
AlterSegments(ctx context.Context, segments []*datapb.SegmentInfo) error
|
|
|
|
// AlterSegmentsAndAddNewSegment for transaction
|
|
|
|
AlterSegmentsAndAddNewSegment(ctx context.Context, segments []*datapb.SegmentInfo, newSegment *datapb.SegmentInfo) error
|
|
|
|
SaveDroppedSegmentsInBatch(ctx context.Context, modSegments map[int64]*datapb.SegmentInfo) ([]int64, error)
|
|
|
|
DropSegment(ctx context.Context, segment *datapb.SegmentInfo) error
|
|
|
|
MarkChannelDeleted(ctx context.Context, channel string) error
|
|
|
|
IsChannelDropped(ctx context.Context, channel string) bool
|
|
|
|
DropChannel(ctx context.Context, channel string) error
|
|
|
|
}
|