mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 10:59:32 +08:00
c9d0c157ec
Signed-off-by: jaime <yun.zhang@zilliz.com>
72 lines
2.8 KiB
Go
72 lines
2.8 KiB
Go
// 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.
|
|
|
|
package milvuserrors
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
)
|
|
|
|
const (
|
|
// MsgRootCoordNotServing means that root coordinator not serving
|
|
MsgRootCoordNotServing = "root coordinator is not serving"
|
|
// MsgQueryCoordNotServing means that QueryCoord not serving
|
|
MsgQueryCoordNotServing = "query coordinator is not serving"
|
|
// MsgDataCoordNotServing means that DataCoord not serving
|
|
MsgDataCoordNotServing = "data coordinator is not serving"
|
|
// MsgIndexCoordNotServing means that IndexCoord not serving
|
|
MsgIndexCoordNotServing = "index coordinator is not serving"
|
|
// MsgProxyNotServing means that ProxyNode not serving
|
|
MsgProxyNotServing = "proxy node is not serving"
|
|
)
|
|
|
|
// MsgCollectionAlreadyExist is used to construct an error message of collection already exist
|
|
func MsgCollectionAlreadyExist(name string) string {
|
|
return fmt.Sprintf("Collection %s already exist", name)
|
|
}
|
|
|
|
// ErrCollectionAlreadyExist is used to construct an error of collection already exist
|
|
func ErrCollectionAlreadyExist(name string) error {
|
|
return errors.New(MsgCollectionAlreadyExist(name))
|
|
}
|
|
|
|
// MsgCollectionNotExist is used to construct an error message of collection not exist
|
|
func MsgCollectionNotExist(name string) string {
|
|
return fmt.Sprintf("Collection %s not exist", name)
|
|
}
|
|
|
|
// ErrCollectionNotExist is used to construct an error of collection not exist
|
|
func ErrCollectionNotExist(name string) error {
|
|
return errors.New(MsgCollectionNotExist(name))
|
|
}
|
|
|
|
// MsgPartitionAlreadyExist is used to construct an error message of partition already exist
|
|
func MsgPartitionAlreadyExist(name string) string {
|
|
return fmt.Sprintf("Partition %s already exist", name)
|
|
}
|
|
|
|
// ErrPartitionAlreadyExist is used to construct an error of partition already exist
|
|
func ErrPartitionAlreadyExist(name string) error {
|
|
return errors.New(MsgPartitionAlreadyExist(name))
|
|
}
|
|
|
|
// MsgPartitionNotExist is used to construct an error message of partition not exist
|
|
func MsgPartitionNotExist(name string) string {
|
|
return fmt.Sprintf("Partition %s not exist", name)
|
|
}
|
|
|
|
// ErrPartitionNotExist is used to construct an error of partition not exist
|
|
func ErrPartitionNotExist(name string) error {
|
|
return errors.New(MsgPartitionNotExist(name))
|
|
}
|