// 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 #include #include #include #include #include #include "storage/IndexData.h" #include "storage/FileManager.h" #include "storage/ChunkManager.h" #include "storage/Types.h" #include "milvus-storage/filesystem/fs.h" namespace milvus::storage { class MemFileManagerImpl : public FileManagerImpl { public: explicit MemFileManagerImpl(const FileManagerContext& fileManagerContext); virtual bool LoadFile(const std::string& filename) noexcept; virtual bool AddFile(const std::string& filename /* unused */) noexcept; virtual std::optional IsExisted(const std::string& filename) noexcept; virtual bool RemoveFile(const std::string& filename) noexcept; virtual bool AddFileMeta(const FileMeta& file_meta) override; virtual std::shared_ptr OpenInputStream(const std::string& filename) override; virtual std::shared_ptr OpenOutputStream(const std::string& filename) override; public: virtual std::string GetName() const { return "MemIndexFileManagerImpl"; } std::map> LoadIndexToMemory(const std::vector& remote_files, milvus::proto::common::LoadPriority priority); std::vector CacheRawDataToMemory(const Config& config); bool AddFile(const BinarySet& binary_set); bool AddTextLog(const BinarySet& binary_set); std::map GetRemotePathsToFileSize() const { return remote_paths_to_size_; } size_t GetAddedTotalMemSize() const { return added_total_mem_size_; } std::unordered_map>> CacheOptFieldToMemory(const Config& config); private: bool AddBinarySet(const BinarySet& binary_set, const std::string& prefix); std::vector cache_raw_data_to_memory_internal(const Config& config); std::vector cache_raw_data_to_memory_storage_v2(const Config& config); std::unordered_map>> cache_opt_field_memory(const Config& config); std::unordered_map>> cache_opt_field_memory_v2(const Config& config); private: // remote file path std::map remote_paths_to_size_; size_t added_total_mem_size_ = 0; }; using MemFileManagerImplPtr = std::shared_ptr; } // namespace milvus::storage