milvus/internal/core/src/storage/FileManager.h
Jiquan Long 89bf226f0b
feat: support keyword text match (#35923)
fix: #35922

---------

Signed-off-by: longjiquan <jiquan.long@zilliz.com>
2024-09-10 15:11:08 +08:00

171 lines
5.3 KiB
C++

// Licensed to the LF AI & Data foundation under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 <string>
#include <optional>
#include <memory>
#include "common/Consts.h"
#include "knowhere/file_manager.h"
#include "log/Log.h"
#include "storage/ChunkManager.h"
#include "storage/Types.h"
namespace milvus::storage {
struct FileManagerContext {
FileManagerContext() : chunkManagerPtr(nullptr) {
}
FileManagerContext(const ChunkManagerPtr& chunkManagerPtr)
: chunkManagerPtr(chunkManagerPtr) {
}
FileManagerContext(const FieldDataMeta& fieldDataMeta,
const IndexMeta& indexMeta,
const ChunkManagerPtr& chunkManagerPtr)
: fieldDataMeta(fieldDataMeta),
indexMeta(indexMeta),
chunkManagerPtr(chunkManagerPtr) {
}
bool
Valid() const {
return chunkManagerPtr != nullptr;
}
FieldDataMeta fieldDataMeta;
IndexMeta indexMeta;
ChunkManagerPtr chunkManagerPtr;
};
#define FILEMANAGER_TRY try {
#define FILEMANAGER_CATCH \
} \
catch (SegcoreError & e) { \
LOG_ERROR("SegcoreError:{} code {}", e.what(), e.get_error_code()); \
return false; \
} \
catch (std::exception & e) { \
LOG_ERROR("Exception:{}", e.what()); \
return false;
#define FILEMANAGER_END }
class FileManagerImpl : public knowhere::FileManager {
public:
explicit FileManagerImpl(const FieldDataMeta& field_mata,
IndexMeta index_meta)
: field_meta_(field_mata), index_meta_(std::move(index_meta)) {
}
public:
/**
* @brief Load a file to the local disk, so we can use stl lib to operate it.
*
* @param filename
* @return false if any error, or return true.
*/
virtual bool
LoadFile(const std::string& filename) noexcept = 0;
/**
* @brief Add file to FileManager to manipulate it.
*
* @param filename
* @return false if any error, or return true.
*/
virtual bool
AddFile(const std::string& filename) noexcept = 0;
/**
* @brief Check if a file exists.
*
* @param filename
* @return std::nullopt if any error, or return if the file exists.
*/
virtual std::optional<bool>
IsExisted(const std::string& filename) noexcept = 0;
/**
* @brief Delete a file from FileManager.
*
* @param filename
* @return false if any error, or return true.
*/
virtual bool
RemoveFile(const std::string& filename) noexcept = 0;
public:
virtual std::string
GetName() const = 0;
virtual FieldDataMeta
GetFieldDataMeta() const {
return field_meta_;
}
virtual IndexMeta
GetIndexMeta() const {
return index_meta_;
}
virtual ChunkManagerPtr
GetChunkManager() const {
return rcm_;
}
virtual std::string
GetRemoteIndexObjectPrefix() const {
return rcm_->GetRootPath() + "/" + std::string(INDEX_ROOT_PATH) + "/" +
std::to_string(index_meta_.build_id) + "/" +
std::to_string(index_meta_.index_version) + "/" +
std::to_string(field_meta_.partition_id) + "/" +
std::to_string(field_meta_.segment_id);
}
virtual std::string
GetRemoteIndexObjectPrefixV2() const {
return std::string(INDEX_ROOT_PATH) + "/" +
std::to_string(index_meta_.build_id) + "/" +
std::to_string(index_meta_.index_version) + "/" +
std::to_string(field_meta_.partition_id) + "/" +
std::to_string(field_meta_.segment_id);
}
virtual std::string
GetRemoteTextLogPrefix() const {
return rcm_->GetRootPath() + "/" + std::string(TEXT_LOG_ROOT_PATH) +
"/" + std::to_string(index_meta_.build_id) + "/" +
std::to_string(index_meta_.index_version) + "/" +
std::to_string(field_meta_.collection_id) + "/" +
std::to_string(field_meta_.partition_id) + "/" +
std::to_string(field_meta_.segment_id) + "/" +
std::to_string(field_meta_.field_id);
}
protected:
// collection meta
FieldDataMeta field_meta_;
// index meta
IndexMeta index_meta_;
ChunkManagerPtr rcm_;
};
using FileManagerImplPtr = std::shared_ptr<FileManagerImpl>;
} // namespace milvus::storage