mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 06:55:27 +08:00
57 lines
1.6 KiB
C++
57 lines
1.6 KiB
C++
// 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.
|
|
|
|
#pragma once
|
|
|
|
#include "db/Types.h"
|
|
#include "utils/Json.h"
|
|
#include "utils/Status.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace milvus {
|
|
namespace server {
|
|
|
|
constexpr int64_t QUERY_MAX_TOPK = 2048;
|
|
|
|
extern Status
|
|
ValidateCollectionName(const std::string& collection_name);
|
|
|
|
extern Status
|
|
ValidateFieldName(const std::string& field_name);
|
|
|
|
extern Status
|
|
ValidateDimension(int64_t dimension, bool is_binary);
|
|
|
|
extern Status
|
|
ValidateIndexType(std::string& index_type);
|
|
|
|
extern Status
|
|
ValidateIndexParams(const milvus::json& index_params, int64_t dimension, const std::string& index_type);
|
|
|
|
extern Status
|
|
ValidateSegmentRowCount(int64_t segment_row_count);
|
|
|
|
extern Status
|
|
ValidateIndexMetricType(const std::string& metric_type, const std::string& index_type);
|
|
|
|
extern Status
|
|
ValidateSearchTopk(int64_t top_k);
|
|
|
|
extern Status
|
|
ValidatePartitionTags(const std::vector<std::string>& partition_tags);
|
|
|
|
// extern Status
|
|
// ValidateInsertDataSize(const engine::DataChunkPtr& data);
|
|
} // namespace server
|
|
} // namespace milvus
|