| // Licensed to the Apache Software Foundation (ASF) 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 <cstdint> |
| #include <string> |
| #include <unordered_map> |
| |
| #include "common/gpid.h" |
| #include "runtime/rpc/rpc_address.h" |
| #include "utils/flags.h" |
| |
| DSN_DECLARE_uint32(bulk_load_node_max_ingesting_count); |
| DSN_DECLARE_uint32(bulk_load_node_min_disk_count); |
| |
| namespace dsn { |
| class partition_configuration; |
| |
| namespace replication { |
| class config_context; |
| |
| // Meta bulk load helper class, used to manage ingesting partitions |
| class ingestion_context |
| { |
| public: |
| explicit ingestion_context(); |
| ~ingestion_context(); |
| |
| private: |
| struct partition_node_info |
| { |
| gpid pid; |
| // node address -> disk_tag |
| std::unordered_map<rpc_address, std::string> node_disk; |
| |
| partition_node_info() {} |
| partition_node_info(const partition_configuration &config, const config_context &cc) |
| { |
| create(config, cc); |
| } |
| void create(const partition_configuration &config, const config_context &cc); |
| }; |
| |
| struct node_context |
| { |
| rpc_address address; |
| uint32_t node_ingesting_count; |
| // disk tag -> ingesting partition count |
| std::unordered_map<std::string, int32_t> disk_ingesting_counts; |
| |
| node_context() {} |
| node_context(const rpc_address &address, const std::string &disk_tag) |
| : address(address), node_ingesting_count(0) |
| { |
| init_disk(disk_tag); |
| } |
| |
| void init_disk(const std::string &disk_tag); |
| uint32_t get_max_disk_ingestion_count(const uint32_t max_node_ingestion_count) const; |
| bool check_if_add(const std::string &disk_tag); |
| void add(const std::string &disk_tag); |
| void decrease(const std::string &disk_tag); |
| }; |
| |
| bool try_partition_ingestion(const partition_configuration &config, const config_context &cc); |
| bool check_node_ingestion(const rpc_address &node, const std::string &disk_tag); |
| void add_partition(const partition_node_info &info); |
| void remove_partition(const gpid &pid); |
| uint32_t get_app_ingesting_count(const uint32_t app_id) const; |
| void reset_app(const uint32_t app_id); |
| void reset_all(); |
| |
| private: |
| friend class bulk_load_service; |
| friend class node_context_test; |
| friend class ingestion_context_test; |
| |
| // ingesting partitions |
| std::unordered_map<gpid, partition_node_info> _running_partitions; |
| // every node and every disk ingesting partition count |
| std::unordered_map<rpc_address, node_context> _nodes_context; |
| }; |
| |
| } // namespace replication |
| } // namespace dsn |