blob: 474f45f1aacdfba9915ef932d08c7177e8b570d9 [file] [log] [blame]
// Copyright 2022 CeresDB Project Authors. Licensed under Apache-2.0.
package procedure
import "github.com/CeresDB/ceresmeta/pkg/coderr"
var (
ErrShardLeaderNotFound = coderr.NewCodeError(coderr.Internal, "shard leader not found")
ErrProcedureNotFound = coderr.NewCodeError(coderr.Internal, "procedure not found")
ErrClusterConfigChanged = coderr.NewCodeError(coderr.Internal, "cluster config changed")
ErrTableAlreadyExists = coderr.NewCodeError(coderr.Internal, "table already exists")
ErrProcedureTypeNotMatch = coderr.NewCodeError(coderr.Internal, "procedure type not match")
ErrDecodeRawData = coderr.NewCodeError(coderr.Internal, "decode raw data")
ErrEncodeRawData = coderr.NewCodeError(coderr.Internal, "encode raw data")
ErrGetRequest = coderr.NewCodeError(coderr.Internal, "get request from event")
ErrNodeNumberNotEnough = coderr.NewCodeError(coderr.Internal, "node number not enough")
ErrEmptyPartitionNames = coderr.NewCodeError(coderr.Internal, "partition names is empty")
ErrShardNumberNotEnough = coderr.NewCodeError(coderr.Internal, "shard number not enough")
)