2021-04-19 15:16:33 +08:00
|
|
|
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
|
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
|
|
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
|
|
// or implied. See the License for the specific language governing permissions and limitations under the License.
|
|
|
|
|
2021-01-19 11:37:16 +08:00
|
|
|
package datanode
|
|
|
|
|
|
|
|
import (
|
2021-03-05 10:15:27 +08:00
|
|
|
"errors"
|
|
|
|
|
2021-04-22 14:45:57 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/proto/schemapb"
|
2021-01-19 11:37:16 +08:00
|
|
|
)
|
|
|
|
|
2021-05-08 15:24:12 +08:00
|
|
|
// Collection stuct is the data structure of collections in data node replica.
|
2021-01-19 11:37:16 +08:00
|
|
|
type Collection struct {
|
|
|
|
schema *schemapb.CollectionSchema
|
|
|
|
id UniqueID
|
|
|
|
}
|
|
|
|
|
2021-02-04 20:31:23 +08:00
|
|
|
func (c *Collection) GetName() string {
|
|
|
|
if c.schema == nil {
|
|
|
|
return ""
|
|
|
|
}
|
2021-01-19 11:37:16 +08:00
|
|
|
return c.schema.Name
|
|
|
|
}
|
|
|
|
|
2021-02-04 20:31:23 +08:00
|
|
|
func (c *Collection) GetID() UniqueID {
|
2021-01-19 11:37:16 +08:00
|
|
|
return c.id
|
|
|
|
}
|
|
|
|
|
2021-02-04 20:31:23 +08:00
|
|
|
func (c *Collection) GetSchema() *schemapb.CollectionSchema {
|
2021-01-22 09:36:40 +08:00
|
|
|
return c.schema
|
|
|
|
}
|
|
|
|
|
2021-02-04 20:31:23 +08:00
|
|
|
func newCollection(collectionID UniqueID, schema *schemapb.CollectionSchema) (*Collection, error) {
|
|
|
|
if schema == nil {
|
2021-03-05 10:15:27 +08:00
|
|
|
return nil, errors.New("invalid schema")
|
2021-02-04 20:31:23 +08:00
|
|
|
}
|
|
|
|
|
2021-01-19 11:37:16 +08:00
|
|
|
var newCollection = &Collection{
|
2021-01-25 18:33:10 +08:00
|
|
|
schema: schema,
|
2021-01-19 11:37:16 +08:00
|
|
|
id: collectionID,
|
|
|
|
}
|
2021-02-04 20:31:23 +08:00
|
|
|
return newCollection, nil
|
2021-01-19 11:37:16 +08:00
|
|
|
}
|