// 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 #include #include #include #include #include "db/Types.h" #include "utils/Status.h" namespace milvus { namespace engine { class MemManager { public: virtual Status InsertVectors(const std::string& collection_id, int64_t length, const IDNumber* vector_ids, int64_t dim, const float* vectors, uint64_t lsn, std::set& flushed_tables) = 0; virtual Status InsertVectors(const std::string& collection_id, int64_t length, const IDNumber* vector_ids, int64_t dim, const uint8_t* vectors, uint64_t lsn, std::set& flushed_tables) = 0; virtual Status InsertEntities(const std::string& collection_id, int64_t length, const IDNumber* vector_ids, int64_t dim, const float* vectors, const std::unordered_map& attr_nbytes, const std::unordered_map& attr_size, const std::unordered_map>& attr_data, uint64_t lsn, std::set& flushed_tables) = 0; virtual Status DeleteVector(const std::string& collection_id, IDNumber vector_id, uint64_t lsn) = 0; virtual Status DeleteVectors(const std::string& collection_id, int64_t length, const IDNumber* vector_ids, uint64_t lsn) = 0; virtual Status Flush(const std::string& collection_id, bool apply_delete = true) = 0; virtual Status Flush(std::set& collection_ids, bool apply_delete = true) = 0; // virtual Status // Serialize(std::set& table_ids) = 0; virtual Status EraseMemVector(const std::string& collection_id) = 0; virtual size_t GetCurrentMutableMem() = 0; virtual size_t GetCurrentImmutableMem() = 0; virtual size_t GetCurrentMem() = 0; }; // MemManagerAbstract using MemManagerPtr = std::shared_ptr; } // namespace engine } // namespace milvus