milvus/core/src/db/insert/MemManager.h
Zhiru Zhu 52124d70e1
Improve delete (#1474)
* remove build openblas/lapack and use find_package

* update ubuntu_build_deps.sh

* update build image

* update build image

* update CHANGELOG

* trigger ci

* update image

* update centos build envvironment image on Jenkins CI

* trigger ci

* add serialize benchmark

Signed-off-by: Zhiru Zhu <zhiru.zhu@zilliz.com>

* update deleted doc codec

Signed-off-by: Zhiru Zhu <zhiru.zhu@zilliz.com>

* update delete in mem

Signed-off-by: Zhiru Zhu <zhiru.zhu@zilliz.com>

* update CHANGELOG

Signed-off-by: Zhiru Zhu <zhiru.zhu@zilliz.com>

* don't apply delete when force flush

Signed-off-by: Zhiru Zhu <zhiru.zhu@zilliz.com>

* lint

Signed-off-by: Zhiru Zhu <zhiru.zhu@zilliz.com>
2020-03-02 20:59:37 +08:00

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