2022-05-01 07:57:05 +00:00
|
|
|
use std::collections::HashMap;
|
2022-09-21 12:39:59 +00:00
|
|
|
use std::collections::HashSet;
|
2023-11-09 10:19:43 +00:00
|
|
|
use std::convert::TryInto;
|
2022-09-21 12:39:59 +00:00
|
|
|
|
2022-11-07 20:12:11 +00:00
|
|
|
use bytesize::ByteSize;
|
2022-09-22 17:30:01 +00:00
|
|
|
use itertools::Itertools;
|
2021-11-09 11:24:04 +00:00
|
|
|
|
2023-11-14 11:48:38 +00:00
|
|
|
use garage_util::crdt::{Crdt, LwwMap};
|
2021-11-09 11:24:04 +00:00
|
|
|
use garage_util::data::*;
|
2022-05-24 10:16:39 +00:00
|
|
|
use garage_util::error::*;
|
2022-05-01 07:54:19 +00:00
|
|
|
|
2023-11-09 10:19:43 +00:00
|
|
|
use super::graph_algo::*;
|
2023-11-08 16:49:06 +00:00
|
|
|
use super::schema::*;
|
|
|
|
use super::*;
|
2023-11-08 14:41:24 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// The Message type will be used to collect information on the algorithm.
|
2023-11-08 14:41:24 +00:00
|
|
|
pub type Message = Vec<String>;
|
2022-09-21 12:39:59 +00:00
|
|
|
|
2023-11-08 16:49:06 +00:00
|
|
|
impl LayoutVersion {
|
2022-10-05 13:29:48 +00:00
|
|
|
pub fn new(replication_factor: usize) -> Self {
|
2023-09-18 10:07:45 +00:00
|
|
|
// We set the default zone redundancy to be Maximum, meaning that the maximum
|
2023-09-18 09:57:36 +00:00
|
|
|
// possible value will be used depending on the cluster topology
|
2022-10-10 15:21:13 +00:00
|
|
|
let parameters = LayoutParameters {
|
2023-09-18 09:57:36 +00:00
|
|
|
zone_redundancy: ZoneRedundancy::Maximum,
|
2022-10-10 15:21:13 +00:00
|
|
|
};
|
2022-10-05 13:29:48 +00:00
|
|
|
|
2023-11-08 16:49:06 +00:00
|
|
|
LayoutVersion {
|
2021-11-09 11:24:04 +00:00
|
|
|
version: 0,
|
|
|
|
replication_factor,
|
2022-10-10 15:21:13 +00:00
|
|
|
partition_size: 0,
|
2021-11-09 11:24:04 +00:00
|
|
|
roles: LwwMap::new(),
|
|
|
|
node_id_vec: Vec::new(),
|
2023-11-14 11:48:38 +00:00
|
|
|
nongateway_node_count: 0,
|
2023-01-05 11:09:25 +00:00
|
|
|
ring_assignment_data: Vec::new(),
|
2022-10-10 15:21:13 +00:00
|
|
|
parameters,
|
2023-11-08 16:49:06 +00:00
|
|
|
}
|
2022-11-07 18:34:40 +00:00
|
|
|
}
|
|
|
|
|
2023-11-08 12:11:13 +00:00
|
|
|
// ===================== accessors ======================
|
2022-05-24 10:16:39 +00:00
|
|
|
|
2023-11-14 12:06:16 +00:00
|
|
|
/// Returns a list of IDs of nodes that have a role in this
|
|
|
|
/// version of the cluster layout, including gateway nodes
|
|
|
|
pub fn all_nodes(&self) -> &[Uuid] {
|
2021-11-09 11:24:04 +00:00
|
|
|
&self.node_id_vec[..]
|
|
|
|
}
|
|
|
|
|
2023-11-14 12:06:16 +00:00
|
|
|
/// Returns a list of IDs of nodes that have a storage capacity
|
|
|
|
/// assigned in this version of the cluster layout
|
2023-11-14 11:48:38 +00:00
|
|
|
pub fn nongateway_nodes(&self) -> &[Uuid] {
|
|
|
|
&self.node_id_vec[..self.nongateway_node_count]
|
|
|
|
}
|
|
|
|
|
2023-11-14 12:06:16 +00:00
|
|
|
/// Returns the role of a node in the layout, if it has one
|
2021-11-09 11:24:04 +00:00
|
|
|
pub fn node_role(&self, node: &Uuid) -> Option<&NodeRole> {
|
|
|
|
match self.roles.get(node) {
|
|
|
|
Some(NodeRoleV(Some(v))) => Some(v),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-14 12:06:16 +00:00
|
|
|
/// Returns the capacity of a node in the layout, if it has one
|
2023-11-14 11:48:38 +00:00
|
|
|
pub fn get_node_capacity(&self, uuid: &Uuid) -> Option<u64> {
|
2022-10-10 15:21:13 +00:00
|
|
|
match self.node_role(uuid) {
|
|
|
|
Some(NodeRole {
|
|
|
|
capacity: Some(cap),
|
|
|
|
zone: _,
|
|
|
|
tags: _,
|
2023-11-14 11:48:38 +00:00
|
|
|
}) => Some(*cap),
|
|
|
|
_ => None,
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
2022-09-21 12:39:59 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// Returns the number of partitions associated to this node in the ring
|
2022-10-11 15:17:13 +00:00
|
|
|
pub fn get_node_usage(&self, uuid: &Uuid) -> Result<usize, Error> {
|
|
|
|
for (i, id) in self.node_id_vec.iter().enumerate() {
|
|
|
|
if id == uuid {
|
|
|
|
let mut count = 0;
|
2023-01-05 11:09:25 +00:00
|
|
|
for nod in self.ring_assignment_data.iter() {
|
2022-10-11 15:17:13 +00:00
|
|
|
if i as u8 == *nod {
|
|
|
|
count += 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Ok(count);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(Error::Message(
|
|
|
|
"The Uuid does not correspond to a node present in the \
|
|
|
|
cluster or this node does not have a positive capacity."
|
|
|
|
.into(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
2023-11-08 14:41:24 +00:00
|
|
|
/// Get the partition in which data would fall on
|
|
|
|
pub fn partition_of(&self, position: &Hash) -> Partition {
|
|
|
|
let top = u16::from_be_bytes(position.as_slice()[0..2].try_into().unwrap());
|
|
|
|
top >> (16 - PARTITION_BITS)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the list of partitions and the first hash of a partition key that would fall in it
|
2023-11-11 11:08:32 +00:00
|
|
|
pub fn partitions(&self) -> impl Iterator<Item = (Partition, Hash)> + '_ {
|
|
|
|
(0..(1 << PARTITION_BITS)).map(|i| {
|
|
|
|
let top = (i as u16) << (16 - PARTITION_BITS);
|
|
|
|
let mut location = [0u8; 32];
|
|
|
|
location[..2].copy_from_slice(&u16::to_be_bytes(top)[..]);
|
|
|
|
(i as u16, Hash::from(location))
|
|
|
|
})
|
2023-11-08 14:41:24 +00:00
|
|
|
}
|
|
|
|
|
2023-11-09 15:32:31 +00:00
|
|
|
/// Return the n servers in which data for this hash should be replicated
|
2023-11-14 13:28:16 +00:00
|
|
|
pub fn nodes_of(&self, position: &Hash, n: usize) -> impl Iterator<Item = Uuid> + '_ {
|
2023-11-08 14:41:24 +00:00
|
|
|
assert_eq!(n, self.replication_factor);
|
|
|
|
|
|
|
|
let data = &self.ring_assignment_data;
|
|
|
|
|
2023-11-14 13:28:16 +00:00
|
|
|
let partition_nodes = if data.len() == self.replication_factor * (1 << PARTITION_BITS) {
|
|
|
|
let partition_idx = self.partition_of(position) as usize;
|
|
|
|
let partition_start = partition_idx * self.replication_factor;
|
|
|
|
let partition_end = (partition_idx + 1) * self.replication_factor;
|
|
|
|
&data[partition_start..partition_end]
|
|
|
|
} else {
|
2023-11-08 14:41:24 +00:00
|
|
|
warn!("Ring not yet ready, read/writes will be lost!");
|
2023-11-14 13:28:16 +00:00
|
|
|
&[]
|
|
|
|
};
|
2023-11-08 14:41:24 +00:00
|
|
|
|
|
|
|
partition_nodes
|
|
|
|
.iter()
|
2023-11-14 13:28:16 +00:00
|
|
|
.map(move |i| self.node_id_vec[*i as usize])
|
2023-11-08 14:41:24 +00:00
|
|
|
}
|
|
|
|
|
2023-11-08 12:11:13 +00:00
|
|
|
// ===================== internal information extractors ======================
|
|
|
|
|
|
|
|
/// Given a node uuids, this function returns the label of its zone
|
2023-11-11 12:10:59 +00:00
|
|
|
pub(crate) fn get_node_zone(&self, uuid: &Uuid) -> Result<&str, Error> {
|
2023-11-08 12:11:13 +00:00
|
|
|
match self.node_role(uuid) {
|
|
|
|
Some(role) => Ok(&role.zone),
|
|
|
|
_ => Err(Error::Message(
|
|
|
|
"The Uuid does not correspond to a node present in the cluster.".into(),
|
|
|
|
)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-14 11:48:38 +00:00
|
|
|
fn expect_get_node_capacity(&self, uuid: &Uuid) -> u64 {
|
|
|
|
self.get_node_capacity(&uuid)
|
|
|
|
.expect("non-gateway node with zero capacity")
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// Returns the sum of capacities of non gateway nodes in the cluster
|
2022-11-08 15:15:45 +00:00
|
|
|
fn get_total_capacity(&self) -> Result<u64, Error> {
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut total_capacity = 0;
|
2023-11-09 14:31:59 +00:00
|
|
|
for uuid in self.nongateway_nodes() {
|
2023-11-14 11:48:38 +00:00
|
|
|
total_capacity += self.expect_get_node_capacity(&uuid);
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
Ok(total_capacity)
|
|
|
|
}
|
2022-09-21 12:39:59 +00:00
|
|
|
|
2023-09-18 09:57:36 +00:00
|
|
|
/// Returns the effective value of the zone_redundancy parameter
|
2023-11-11 12:10:59 +00:00
|
|
|
pub(crate) fn effective_zone_redundancy(&self) -> usize {
|
2023-09-18 09:57:36 +00:00
|
|
|
match self.parameters.zone_redundancy {
|
|
|
|
ZoneRedundancy::AtLeast(v) => v,
|
|
|
|
ZoneRedundancy::Maximum => {
|
|
|
|
let n_zones = self
|
|
|
|
.roles
|
|
|
|
.items()
|
|
|
|
.iter()
|
|
|
|
.filter_map(|(_, _, role)| role.0.as_ref().map(|x| x.zone.as_str()))
|
|
|
|
.collect::<HashSet<&str>>()
|
|
|
|
.len();
|
|
|
|
std::cmp::min(n_zones, self.replication_factor)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-09 11:24:04 +00:00
|
|
|
/// Check a cluster layout for internal consistency
|
2023-01-05 11:09:25 +00:00
|
|
|
/// (assignment, roles, parameters, partition size)
|
2021-11-09 11:24:04 +00:00
|
|
|
/// returns true if consistent, false if error
|
2022-11-08 13:23:08 +00:00
|
|
|
pub fn check(&self) -> Result<(), String> {
|
2023-11-15 11:15:58 +00:00
|
|
|
// Check that the assignment data has the correct length
|
|
|
|
let expected_assignment_data_len = (1 << PARTITION_BITS) * self.replication_factor;
|
|
|
|
if self.ring_assignment_data.len() != expected_assignment_data_len {
|
|
|
|
return Err(format!(
|
|
|
|
"ring_assignment_data has incorrect length {} instead of {}",
|
|
|
|
self.ring_assignment_data.len(),
|
|
|
|
expected_assignment_data_len
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2021-11-09 11:24:04 +00:00
|
|
|
// Check that node_id_vec contains the correct list of nodes
|
|
|
|
let mut expected_nodes = self
|
|
|
|
.roles
|
|
|
|
.items()
|
|
|
|
.iter()
|
|
|
|
.filter(|(_, _, v)| v.0.is_some())
|
|
|
|
.map(|(id, _, _)| *id)
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
expected_nodes.sort();
|
|
|
|
let mut node_id_vec = self.node_id_vec.clone();
|
|
|
|
node_id_vec.sort();
|
|
|
|
if expected_nodes != node_id_vec {
|
2022-11-08 13:23:08 +00:00
|
|
|
return Err(format!("node_id_vec does not contain the correct set of nodes\nnode_id_vec: {:?}\nexpected: {:?}", node_id_vec, expected_nodes));
|
2021-11-09 11:24:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the assigned nodes are correct identifiers
|
|
|
|
// of nodes that are assigned a role
|
|
|
|
// and that role is not the role of a gateway nodes
|
2023-01-05 11:09:25 +00:00
|
|
|
for x in self.ring_assignment_data.iter() {
|
2021-11-09 11:24:04 +00:00
|
|
|
if *x as usize >= self.node_id_vec.len() {
|
2022-11-08 13:23:08 +00:00
|
|
|
return Err(format!(
|
2023-01-05 11:09:25 +00:00
|
|
|
"ring_assignment_data contains invalid node id {}",
|
2022-11-08 13:23:08 +00:00
|
|
|
*x
|
|
|
|
));
|
2021-11-09 11:24:04 +00:00
|
|
|
}
|
|
|
|
let node = self.node_id_vec[*x as usize];
|
|
|
|
match self.roles.get(&node) {
|
|
|
|
Some(NodeRoleV(Some(x))) if x.capacity.is_some() => (),
|
2023-01-05 11:09:25 +00:00
|
|
|
_ => return Err("ring_assignment_data contains id of a gateway node".into()),
|
2021-11-09 11:24:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// Check that every partition is associated to distinct nodes
|
2023-09-18 09:57:36 +00:00
|
|
|
let zone_redundancy = self.effective_zone_redundancy();
|
2022-10-10 15:21:13 +00:00
|
|
|
let rf = self.replication_factor;
|
|
|
|
for p in 0..(1 << PARTITION_BITS) {
|
2023-01-05 11:09:25 +00:00
|
|
|
let nodes_of_p = self.ring_assignment_data[rf * p..rf * (p + 1)].to_vec();
|
2022-10-10 15:21:13 +00:00
|
|
|
if nodes_of_p.iter().unique().count() != rf {
|
2022-11-08 13:23:08 +00:00
|
|
|
return Err(format!("partition does not contain {} unique node ids", rf));
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
2022-11-07 18:34:40 +00:00
|
|
|
// Check that every partition is spread over at least zone_redundancy zones.
|
2022-12-11 17:30:02 +00:00
|
|
|
let zones_of_p = nodes_of_p
|
2022-11-07 19:29:25 +00:00
|
|
|
.iter()
|
|
|
|
.map(|n| {
|
|
|
|
self.get_node_zone(&self.node_id_vec[*n as usize])
|
|
|
|
.expect("Zone not found.")
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
2023-09-18 09:57:36 +00:00
|
|
|
if zones_of_p.iter().unique().count() < zone_redundancy {
|
2022-11-08 13:23:08 +00:00
|
|
|
return Err(format!(
|
|
|
|
"nodes of partition are in less than {} distinct zones",
|
2023-09-18 09:57:36 +00:00
|
|
|
zone_redundancy
|
2022-11-08 13:23:08 +00:00
|
|
|
));
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// Check that the nodes capacities is consistent with the stored partitions
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut node_usage = vec![0; MAX_NODE_NUMBER];
|
2023-01-05 11:09:25 +00:00
|
|
|
for n in self.ring_assignment_data.iter() {
|
2022-10-10 15:21:13 +00:00
|
|
|
node_usage[*n as usize] += 1;
|
|
|
|
}
|
|
|
|
for (n, usage) in node_usage.iter().enumerate() {
|
|
|
|
if *usage > 0 {
|
|
|
|
let uuid = self.node_id_vec[n];
|
2022-11-08 13:23:08 +00:00
|
|
|
let partusage = usage * self.partition_size;
|
2023-11-14 11:48:38 +00:00
|
|
|
let nodecap = self.expect_get_node_capacity(&uuid);
|
2022-11-08 13:23:08 +00:00
|
|
|
if partusage > nodecap {
|
|
|
|
return Err(format!(
|
|
|
|
"node usage ({}) is bigger than node capacity ({})",
|
|
|
|
usage * self.partition_size,
|
|
|
|
nodecap
|
|
|
|
));
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-22 17:30:01 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// Check that the partition size stored is the one computed by the asignation
|
|
|
|
// algorithm.
|
2022-10-10 15:21:13 +00:00
|
|
|
let cl2 = self.clone();
|
2022-11-07 19:29:25 +00:00
|
|
|
let (_, zone_to_id) = cl2.generate_nongateway_zone_ids().unwrap();
|
2023-09-18 09:57:36 +00:00
|
|
|
match cl2.compute_optimal_partition_size(&zone_to_id, zone_redundancy) {
|
2022-11-08 13:23:08 +00:00
|
|
|
Ok(s) if s != self.partition_size => {
|
|
|
|
return Err(format!(
|
|
|
|
"partition_size ({}) is different than optimal value ({})",
|
|
|
|
self.partition_size, s
|
|
|
|
))
|
|
|
|
}
|
|
|
|
Err(e) => return Err(format!("could not calculate optimal partition size: {}", e)),
|
2022-10-11 15:17:13 +00:00
|
|
|
_ => (),
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
2022-09-22 17:30:01 +00:00
|
|
|
|
2022-11-08 13:23:08 +00:00
|
|
|
Ok(())
|
2021-11-09 11:24:04 +00:00
|
|
|
}
|
2022-09-21 12:39:59 +00:00
|
|
|
|
2023-11-08 12:11:13 +00:00
|
|
|
// ================== updates to layout, internals ===================
|
2023-09-18 09:57:36 +00:00
|
|
|
|
2023-11-14 11:48:38 +00:00
|
|
|
pub(crate) fn calculate_next_version(
|
|
|
|
mut self,
|
|
|
|
staging: &LayoutStaging,
|
|
|
|
) -> Result<(Self, Message), Error> {
|
|
|
|
self.version += 1;
|
|
|
|
|
|
|
|
self.roles.merge(&staging.roles);
|
|
|
|
self.roles.retain(|(_, _, v)| v.0.is_some());
|
|
|
|
self.parameters = *staging.parameters.get();
|
|
|
|
|
|
|
|
let msg = self.calculate_partition_assignment()?;
|
|
|
|
|
|
|
|
Ok((self, msg))
|
|
|
|
}
|
|
|
|
|
2023-01-05 11:09:25 +00:00
|
|
|
/// This function calculates a new partition-to-node assignment.
|
|
|
|
/// The computed assignment respects the node replication factor
|
2022-10-10 15:21:13 +00:00
|
|
|
/// and the zone redundancy parameter It maximizes the capacity of a
|
2022-05-01 07:57:05 +00:00
|
|
|
/// partition (assuming all partitions have the same size).
|
2023-01-05 11:09:25 +00:00
|
|
|
/// Among such optimal assignment, it minimizes the distance to
|
|
|
|
/// the former assignment (if any) to minimize the amount of
|
2022-10-06 10:54:51 +00:00
|
|
|
/// data to be moved.
|
2022-11-07 18:34:40 +00:00
|
|
|
/// Staged role changes must be merged with nodes roles before calling this function,
|
|
|
|
/// hence it must only be called from apply_staged_changes() and hence is not public.
|
2023-11-14 11:48:38 +00:00
|
|
|
fn calculate_partition_assignment(&mut self) -> Result<Message, Error> {
|
2022-11-07 18:34:40 +00:00
|
|
|
// We update the node ids, since the node role list might have changed with the
|
2023-01-05 11:09:25 +00:00
|
|
|
// changes in the layout. We retrieve the old_assignment reframed with new ids
|
|
|
|
let old_assignment_opt = self.update_node_id_vec()?;
|
2022-10-10 15:21:13 +00:00
|
|
|
|
2023-09-18 09:57:36 +00:00
|
|
|
let zone_redundancy = self.effective_zone_redundancy();
|
|
|
|
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut msg = Message::new();
|
2022-10-11 15:17:13 +00:00
|
|
|
msg.push("==== COMPUTATION OF A NEW PARTITION ASSIGNATION ====".into());
|
|
|
|
msg.push("".into());
|
2022-10-10 15:21:13 +00:00
|
|
|
msg.push(format!(
|
2022-10-11 15:17:13 +00:00
|
|
|
"Partitions are \
|
2022-10-10 15:21:13 +00:00
|
|
|
replicated {} times on at least {} distinct zones.",
|
2023-09-18 09:57:36 +00:00
|
|
|
self.replication_factor, zone_redundancy
|
2022-10-10 15:21:13 +00:00
|
|
|
));
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We generate for once numerical ids for the zones of non gateway nodes,
|
|
|
|
// to use them as indices in the flow graphs.
|
2022-10-11 16:29:21 +00:00
|
|
|
let (id_to_zone, zone_to_id) = self.generate_nongateway_zone_ids()?;
|
2022-10-10 15:21:13 +00:00
|
|
|
|
2023-11-14 11:48:38 +00:00
|
|
|
if self.nongateway_nodes().len() < self.replication_factor {
|
2022-10-10 15:21:13 +00:00
|
|
|
return Err(Error::Message(format!(
|
|
|
|
"The number of nodes with positive \
|
2022-10-06 10:54:51 +00:00
|
|
|
capacity ({}) is smaller than the replication factor ({}).",
|
2023-11-14 11:48:38 +00:00
|
|
|
self.nongateway_nodes().len(),
|
|
|
|
self.replication_factor
|
2022-10-10 15:21:13 +00:00
|
|
|
)));
|
|
|
|
}
|
2023-09-18 09:57:36 +00:00
|
|
|
if id_to_zone.len() < zone_redundancy {
|
2022-10-10 15:21:13 +00:00
|
|
|
return Err(Error::Message(format!(
|
|
|
|
"The number of zones with non-gateway \
|
2022-10-06 10:54:51 +00:00
|
|
|
nodes ({}) is smaller than the redundancy parameter ({})",
|
2022-10-10 15:21:13 +00:00
|
|
|
id_to_zone.len(),
|
2023-09-18 09:57:36 +00:00
|
|
|
zone_redundancy
|
2022-10-10 15:21:13 +00:00
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We compute the optimal partition size
|
|
|
|
// Capacities should be given in a unit so that partition size is at least 100.
|
|
|
|
// In this case, integer rounding plays a marginal role in the percentages of
|
|
|
|
// optimality.
|
2023-09-18 09:57:36 +00:00
|
|
|
let partition_size = self.compute_optimal_partition_size(&zone_to_id, zone_redundancy)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
|
2023-09-12 15:24:51 +00:00
|
|
|
msg.push("".into());
|
2023-09-18 10:17:07 +00:00
|
|
|
if old_assignment_opt.is_some() {
|
2022-10-10 15:21:13 +00:00
|
|
|
msg.push(format!(
|
2023-09-12 15:24:51 +00:00
|
|
|
"Optimal partition size: {} ({} in previous layout)",
|
2022-11-07 20:12:11 +00:00
|
|
|
ByteSize::b(partition_size).to_string_as(false),
|
|
|
|
ByteSize::b(self.partition_size).to_string_as(false)
|
2022-10-10 15:21:13 +00:00
|
|
|
));
|
|
|
|
} else {
|
|
|
|
msg.push(format!(
|
2023-09-12 15:24:51 +00:00
|
|
|
"Optimal partition size: {}",
|
2022-11-07 20:12:11 +00:00
|
|
|
ByteSize::b(partition_size).to_string_as(false)
|
2022-10-10 15:21:13 +00:00
|
|
|
));
|
|
|
|
}
|
2022-11-07 18:34:40 +00:00
|
|
|
// We write the partition size.
|
2022-10-10 15:21:13 +00:00
|
|
|
self.partition_size = partition_size;
|
|
|
|
|
|
|
|
if partition_size < 100 {
|
|
|
|
msg.push(
|
2022-11-08 15:15:45 +00:00
|
|
|
"WARNING: The partition size is low (< 100), make sure the capacities of your nodes are correct and are of at least a few MB"
|
2022-10-10 15:21:13 +00:00
|
|
|
.into(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-01-05 11:09:25 +00:00
|
|
|
// We compute a first flow/assignment that is heuristically close to the previous
|
|
|
|
// assignment
|
2023-09-18 09:57:36 +00:00
|
|
|
let mut gflow =
|
|
|
|
self.compute_candidate_assignment(&zone_to_id, &old_assignment_opt, zone_redundancy)?;
|
2023-01-05 11:09:25 +00:00
|
|
|
if let Some(assoc) = &old_assignment_opt {
|
|
|
|
// We minimize the distance to the previous assignment.
|
2022-10-10 15:21:13 +00:00
|
|
|
self.minimize_rebalance_load(&mut gflow, &zone_to_id, assoc)?;
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We display statistics of the computation
|
2023-01-05 11:09:25 +00:00
|
|
|
msg.extend(self.output_stat(&gflow, &old_assignment_opt, &zone_to_id, &id_to_zone)?);
|
2022-10-10 15:21:13 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We update the layout structure
|
2022-10-10 15:21:13 +00:00
|
|
|
self.update_ring_from_flow(id_to_zone.len(), &gflow)?;
|
2022-10-11 15:17:13 +00:00
|
|
|
|
2022-11-08 13:23:08 +00:00
|
|
|
if let Err(e) = self.check() {
|
2022-10-11 15:17:13 +00:00
|
|
|
return Err(Error::Message(
|
2022-11-08 13:23:08 +00:00
|
|
|
format!("Layout check returned an error: {}\nOriginal result of computation: <<<<\n{}\n>>>>", e, msg.join("\n"))
|
2022-10-11 15:17:13 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2022-10-10 15:21:13 +00:00
|
|
|
Ok(msg)
|
|
|
|
}
|
2022-05-01 07:57:05 +00:00
|
|
|
|
|
|
|
/// The LwwMap of node roles might have changed. This function updates the node_id_vec
|
2023-01-05 11:09:25 +00:00
|
|
|
/// and returns the assignment given by ring, with the new indices of the nodes, and
|
2022-09-21 12:39:59 +00:00
|
|
|
/// None if the node is not present anymore.
|
2023-01-05 11:09:25 +00:00
|
|
|
/// We work with the assumption that only this function and calculate_new_assignment
|
|
|
|
/// do modify assignment_ring and node_id_vec.
|
2022-10-10 15:21:13 +00:00
|
|
|
fn update_node_id_vec(&mut self) -> Result<Option<Vec<Vec<usize>>>, Error> {
|
|
|
|
// (1) We compute the new node list
|
2022-11-07 18:34:40 +00:00
|
|
|
// Non gateway nodes should be coded on 8bits, hence they must be first in the list
|
|
|
|
// We build the new node ids
|
2022-11-08 15:15:45 +00:00
|
|
|
let new_non_gateway_nodes: Vec<Uuid> = self
|
2022-10-10 15:21:13 +00:00
|
|
|
.roles
|
|
|
|
.items()
|
|
|
|
.iter()
|
2023-09-18 10:17:07 +00:00
|
|
|
.filter(|(_, _, v)| matches!(&v.0, Some(r) if r.capacity.is_some()))
|
2022-10-10 15:21:13 +00:00
|
|
|
.map(|(k, _, _)| *k)
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
if new_non_gateway_nodes.len() > MAX_NODE_NUMBER {
|
|
|
|
return Err(Error::Message(format!(
|
|
|
|
"There are more than {} non-gateway nodes in the new \
|
|
|
|
layout. This is not allowed.",
|
|
|
|
MAX_NODE_NUMBER
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
2022-11-08 15:15:45 +00:00
|
|
|
let new_gateway_nodes: Vec<Uuid> = self
|
2022-10-10 15:21:13 +00:00
|
|
|
.roles
|
|
|
|
.items()
|
|
|
|
.iter()
|
2023-09-18 10:17:07 +00:00
|
|
|
.filter(|(_, _, v)| matches!(v, NodeRoleV(Some(r)) if r.capacity.is_none()))
|
2022-10-10 15:21:13 +00:00
|
|
|
.map(|(k, _, _)| *k)
|
|
|
|
.collect();
|
|
|
|
|
2023-11-14 11:48:38 +00:00
|
|
|
let old_node_id_vec = std::mem::take(&mut self.node_id_vec);
|
|
|
|
|
|
|
|
self.nongateway_node_count = new_non_gateway_nodes.len();
|
|
|
|
self.node_id_vec.clear();
|
|
|
|
self.node_id_vec.extend(new_non_gateway_nodes);
|
|
|
|
self.node_id_vec.extend(new_gateway_nodes);
|
2022-10-10 15:21:13 +00:00
|
|
|
|
2023-11-14 11:48:38 +00:00
|
|
|
let new_node_id_vec = &self.node_id_vec;
|
2022-10-10 15:21:13 +00:00
|
|
|
|
|
|
|
// (2) We retrieve the old association
|
2022-11-07 18:34:40 +00:00
|
|
|
// We rewrite the old association with the new indices. We only consider partition
|
2023-01-05 11:09:25 +00:00
|
|
|
// to node assignments where the node is still in use.
|
|
|
|
if self.ring_assignment_data.is_empty() {
|
2022-11-07 18:34:40 +00:00
|
|
|
// This is a new association
|
2022-10-10 15:21:13 +00:00
|
|
|
return Ok(None);
|
|
|
|
}
|
2022-11-08 15:15:45 +00:00
|
|
|
|
2023-01-05 11:09:25 +00:00
|
|
|
if self.ring_assignment_data.len() != NB_PARTITIONS * self.replication_factor {
|
2022-10-10 15:21:13 +00:00
|
|
|
return Err(Error::Message(
|
2023-01-05 11:09:25 +00:00
|
|
|
"The old assignment does not have a size corresponding to \
|
2022-10-10 15:21:13 +00:00
|
|
|
the old replication factor or the number of partitions."
|
|
|
|
.into(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We build a translation table between the uuid and new ids
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut uuid_to_new_id = HashMap::<Uuid, usize>::new();
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We add the indices of only the new non-gateway nodes that can be used in the
|
|
|
|
// association ring
|
2022-10-10 15:21:13 +00:00
|
|
|
for (i, uuid) in new_node_id_vec.iter().enumerate() {
|
|
|
|
uuid_to_new_id.insert(*uuid, i);
|
|
|
|
}
|
|
|
|
|
2023-01-05 11:09:25 +00:00
|
|
|
let mut old_assignment = vec![Vec::<usize>::new(); NB_PARTITIONS];
|
2022-10-10 15:21:13 +00:00
|
|
|
let rf = self.replication_factor;
|
2022-11-08 15:15:45 +00:00
|
|
|
|
2023-01-05 11:09:25 +00:00
|
|
|
for (p, old_assign_p) in old_assignment.iter_mut().enumerate() {
|
|
|
|
for old_id in &self.ring_assignment_data[p * rf..(p + 1) * rf] {
|
2022-10-10 15:21:13 +00:00
|
|
|
let uuid = old_node_id_vec[*old_id as usize];
|
|
|
|
if uuid_to_new_id.contains_key(&uuid) {
|
|
|
|
old_assign_p.push(uuid_to_new_id[&uuid]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-14 11:48:38 +00:00
|
|
|
// We clear the ring assignemnt data
|
2023-01-05 11:09:25 +00:00
|
|
|
self.ring_assignment_data = Vec::<CompactNodeType>::new();
|
2022-10-10 15:21:13 +00:00
|
|
|
|
2023-01-05 11:09:25 +00:00
|
|
|
Ok(Some(old_assignment))
|
2022-05-01 07:57:05 +00:00
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function generates ids for the zone of the nodes appearing in
|
|
|
|
/// self.node_id_vec.
|
2023-11-11 12:10:59 +00:00
|
|
|
pub(crate) fn generate_nongateway_zone_ids(
|
|
|
|
&self,
|
|
|
|
) -> Result<(Vec<String>, HashMap<String, usize>), Error> {
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut id_to_zone = Vec::<String>::new();
|
|
|
|
let mut zone_to_id = HashMap::<String, usize>::new();
|
|
|
|
|
2023-11-14 11:48:38 +00:00
|
|
|
for uuid in self.nongateway_nodes().iter() {
|
2022-11-08 15:15:45 +00:00
|
|
|
let r = self.node_role(uuid).unwrap();
|
2023-09-18 10:17:07 +00:00
|
|
|
if !zone_to_id.contains_key(&r.zone) && r.capacity.is_some() {
|
2022-11-08 15:15:45 +00:00
|
|
|
zone_to_id.insert(r.zone.clone(), id_to_zone.len());
|
|
|
|
id_to_zone.push(r.zone.clone());
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok((id_to_zone, zone_to_id))
|
|
|
|
}
|
2022-05-01 07:57:05 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function computes by dichotomy the largest realizable partition size, given
|
|
|
|
/// the layout roles and parameters.
|
2022-10-10 15:21:13 +00:00
|
|
|
fn compute_optimal_partition_size(
|
|
|
|
&self,
|
|
|
|
zone_to_id: &HashMap<String, usize>,
|
2023-09-18 09:57:36 +00:00
|
|
|
zone_redundancy: usize,
|
2022-11-07 20:12:11 +00:00
|
|
|
) -> Result<u64, Error> {
|
2022-10-10 15:21:13 +00:00
|
|
|
let empty_set = HashSet::<(usize, usize)>::new();
|
2023-09-18 09:57:36 +00:00
|
|
|
let mut g = self.generate_flow_graph(1, zone_to_id, &empty_set, zone_redundancy)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
g.compute_maximal_flow()?;
|
2022-11-08 15:15:45 +00:00
|
|
|
if g.get_flow_value()? < (NB_PARTITIONS * self.replication_factor) as i64 {
|
2022-10-10 15:21:13 +00:00
|
|
|
return Err(Error::Message(
|
|
|
|
"The storage capacity of he cluster is to small. It is \
|
|
|
|
impossible to store partitions of size 1."
|
|
|
|
.into(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut s_down = 1;
|
|
|
|
let mut s_up = self.get_total_capacity()?;
|
|
|
|
while s_down + 1 < s_up {
|
2023-09-18 09:57:36 +00:00
|
|
|
g = self.generate_flow_graph(
|
|
|
|
(s_down + s_up) / 2,
|
|
|
|
zone_to_id,
|
|
|
|
&empty_set,
|
|
|
|
zone_redundancy,
|
|
|
|
)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
g.compute_maximal_flow()?;
|
2022-11-08 15:15:45 +00:00
|
|
|
if g.get_flow_value()? < (NB_PARTITIONS * self.replication_factor) as i64 {
|
2022-10-10 15:21:13 +00:00
|
|
|
s_up = (s_down + s_up) / 2;
|
|
|
|
} else {
|
|
|
|
s_down = (s_down + s_up) / 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(s_down)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn generate_graph_vertices(nb_zones: usize, nb_nodes: usize) -> Vec<Vertex> {
|
|
|
|
let mut vertices = vec![Vertex::Source, Vertex::Sink];
|
|
|
|
for p in 0..NB_PARTITIONS {
|
|
|
|
vertices.push(Vertex::Pup(p));
|
|
|
|
vertices.push(Vertex::Pdown(p));
|
|
|
|
for z in 0..nb_zones {
|
|
|
|
vertices.push(Vertex::PZ(p, z));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for n in 0..nb_nodes {
|
|
|
|
vertices.push(Vertex::N(n));
|
|
|
|
}
|
|
|
|
vertices
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// Generates the graph to compute the maximal flow corresponding to the optimal
|
2023-01-05 11:09:25 +00:00
|
|
|
/// partition assignment.
|
2022-11-07 18:34:40 +00:00
|
|
|
/// exclude_assoc is the set of (partition, node) association that we are forbidden
|
|
|
|
/// to use (hence we do not add the corresponding edge to the graph). This parameter
|
|
|
|
/// is used to compute a first flow that uses only edges appearing in the previous
|
2023-01-05 11:09:25 +00:00
|
|
|
/// assignment. This produces a solution that heuristically should be close to the
|
2022-11-07 18:34:40 +00:00
|
|
|
/// previous one.
|
2022-10-10 15:21:13 +00:00
|
|
|
fn generate_flow_graph(
|
|
|
|
&self,
|
2022-11-07 20:12:11 +00:00
|
|
|
partition_size: u64,
|
2022-10-10 15:21:13 +00:00
|
|
|
zone_to_id: &HashMap<String, usize>,
|
|
|
|
exclude_assoc: &HashSet<(usize, usize)>,
|
2023-09-18 09:57:36 +00:00
|
|
|
zone_redundancy: usize,
|
2022-10-10 15:21:13 +00:00
|
|
|
) -> Result<Graph<FlowEdge>, Error> {
|
2023-11-14 11:48:38 +00:00
|
|
|
let vertices =
|
|
|
|
LayoutVersion::generate_graph_vertices(zone_to_id.len(), self.nongateway_nodes().len());
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut g = Graph::<FlowEdge>::new(&vertices);
|
|
|
|
let nb_zones = zone_to_id.len();
|
|
|
|
for p in 0..NB_PARTITIONS {
|
2023-09-18 09:57:36 +00:00
|
|
|
g.add_edge(Vertex::Source, Vertex::Pup(p), zone_redundancy as u64)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
g.add_edge(
|
|
|
|
Vertex::Source,
|
|
|
|
Vertex::Pdown(p),
|
2023-09-18 09:57:36 +00:00
|
|
|
(self.replication_factor - zone_redundancy) as u64,
|
2022-10-10 15:21:13 +00:00
|
|
|
)?;
|
|
|
|
for z in 0..nb_zones {
|
|
|
|
g.add_edge(Vertex::Pup(p), Vertex::PZ(p, z), 1)?;
|
|
|
|
g.add_edge(
|
|
|
|
Vertex::Pdown(p),
|
|
|
|
Vertex::PZ(p, z),
|
2022-11-07 20:12:11 +00:00
|
|
|
self.replication_factor as u64,
|
2022-10-10 15:21:13 +00:00
|
|
|
)?;
|
|
|
|
}
|
|
|
|
}
|
2023-11-14 11:48:38 +00:00
|
|
|
for n in 0..self.nongateway_nodes().len() {
|
|
|
|
let node_capacity = self.expect_get_node_capacity(&self.node_id_vec[n]);
|
2023-11-08 12:11:13 +00:00
|
|
|
let node_zone = zone_to_id[self.get_node_zone(&self.node_id_vec[n])?];
|
2022-10-11 16:29:21 +00:00
|
|
|
g.add_edge(Vertex::N(n), Vertex::Sink, node_capacity / partition_size)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
for p in 0..NB_PARTITIONS {
|
|
|
|
if !exclude_assoc.contains(&(p, n)) {
|
|
|
|
g.add_edge(Vertex::PZ(p, node_zone), Vertex::N(n), 1)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(g)
|
|
|
|
}
|
|
|
|
|
2023-01-05 11:09:25 +00:00
|
|
|
/// This function computes a first optimal assignment (in the form of a flow graph).
|
|
|
|
fn compute_candidate_assignment(
|
2022-10-10 15:21:13 +00:00
|
|
|
&self,
|
|
|
|
zone_to_id: &HashMap<String, usize>,
|
2022-10-11 16:29:21 +00:00
|
|
|
prev_assign_opt: &Option<Vec<Vec<usize>>>,
|
2023-09-18 09:57:36 +00:00
|
|
|
zone_redundancy: usize,
|
2022-10-10 15:21:13 +00:00
|
|
|
) -> Result<Graph<FlowEdge>, Error> {
|
2022-11-07 18:34:40 +00:00
|
|
|
// We list the (partition,node) associations that are not used in the
|
2023-01-05 11:09:25 +00:00
|
|
|
// previous assignment
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut exclude_edge = HashSet::<(usize, usize)>::new();
|
2022-10-11 16:29:21 +00:00
|
|
|
if let Some(prev_assign) = prev_assign_opt {
|
2023-11-14 11:48:38 +00:00
|
|
|
let nb_nodes = self.nongateway_nodes().len();
|
2022-10-11 16:29:21 +00:00
|
|
|
for (p, prev_assign_p) in prev_assign.iter().enumerate() {
|
2022-10-10 15:21:13 +00:00
|
|
|
for n in 0..nb_nodes {
|
|
|
|
exclude_edge.insert((p, n));
|
|
|
|
}
|
2022-10-11 16:29:21 +00:00
|
|
|
for n in prev_assign_p.iter() {
|
2022-10-10 15:21:13 +00:00
|
|
|
exclude_edge.remove(&(p, *n));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-05 11:09:25 +00:00
|
|
|
// We compute the best flow using only the edges used in the previous assignment
|
2023-09-18 09:57:36 +00:00
|
|
|
let mut g = self.generate_flow_graph(
|
|
|
|
self.partition_size,
|
|
|
|
zone_to_id,
|
|
|
|
&exclude_edge,
|
|
|
|
zone_redundancy,
|
|
|
|
)?;
|
2022-10-10 15:21:13 +00:00
|
|
|
g.compute_maximal_flow()?;
|
2022-10-11 16:29:21 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We add the excluded edges and compute the maximal flow with the full graph.
|
|
|
|
// The algorithm is such that it will start with the flow that we just computed
|
|
|
|
// and find ameliorating paths from that.
|
2022-10-10 15:21:13 +00:00
|
|
|
for (p, n) in exclude_edge.iter() {
|
2023-11-08 12:11:13 +00:00
|
|
|
let node_zone = zone_to_id[self.get_node_zone(&self.node_id_vec[*n])?];
|
2022-10-10 15:21:13 +00:00
|
|
|
g.add_edge(Vertex::PZ(*p, node_zone), Vertex::N(*n), 1)?;
|
|
|
|
}
|
|
|
|
g.compute_maximal_flow()?;
|
|
|
|
Ok(g)
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function updates the flow graph gflow to minimize the distance between
|
2023-01-05 11:09:25 +00:00
|
|
|
/// its corresponding assignment and the previous one
|
2022-10-10 15:21:13 +00:00
|
|
|
fn minimize_rebalance_load(
|
|
|
|
&self,
|
|
|
|
gflow: &mut Graph<FlowEdge>,
|
|
|
|
zone_to_id: &HashMap<String, usize>,
|
2022-10-11 16:29:21 +00:00
|
|
|
prev_assign: &[Vec<usize>],
|
2022-10-10 15:21:13 +00:00
|
|
|
) -> Result<(), Error> {
|
2022-11-07 18:34:40 +00:00
|
|
|
// We define a cost function on the edges (pairs of vertices) corresponding
|
2023-01-05 11:09:25 +00:00
|
|
|
// to the distance between the two assignments.
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut cost = CostFunction::new();
|
2022-10-11 16:29:21 +00:00
|
|
|
for (p, assoc_p) in prev_assign.iter().enumerate() {
|
2022-10-10 15:21:13 +00:00
|
|
|
for n in assoc_p.iter() {
|
2023-11-08 12:11:13 +00:00
|
|
|
let node_zone = zone_to_id[self.get_node_zone(&self.node_id_vec[*n])?];
|
2022-10-10 15:21:13 +00:00
|
|
|
cost.insert((Vertex::PZ(p, node_zone), Vertex::N(*n)), -1);
|
|
|
|
}
|
|
|
|
}
|
2022-10-11 16:29:21 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We compute the maximal length of a simple path in gflow. It is used in the
|
|
|
|
// Bellman-Ford algorithm in optimize_flow_with_cost to set the number
|
|
|
|
// of iterations.
|
2023-11-14 11:48:38 +00:00
|
|
|
let nb_nodes = self.nongateway_nodes().len();
|
2022-10-10 15:21:13 +00:00
|
|
|
let path_length = 4 * nb_nodes;
|
|
|
|
gflow.optimize_flow_with_cost(&cost, path_length)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2023-01-05 11:09:25 +00:00
|
|
|
/// This function updates the assignment ring from the flow graph.
|
2022-10-10 15:21:13 +00:00
|
|
|
fn update_ring_from_flow(
|
|
|
|
&mut self,
|
|
|
|
nb_zones: usize,
|
|
|
|
gflow: &Graph<FlowEdge>,
|
|
|
|
) -> Result<(), Error> {
|
2023-01-05 11:09:25 +00:00
|
|
|
self.ring_assignment_data = Vec::<CompactNodeType>::new();
|
2022-10-10 15:21:13 +00:00
|
|
|
for p in 0..NB_PARTITIONS {
|
|
|
|
for z in 0..nb_zones {
|
|
|
|
let assoc_vertex = gflow.get_positive_flow_from(Vertex::PZ(p, z))?;
|
|
|
|
for vertex in assoc_vertex.iter() {
|
|
|
|
if let Vertex::N(n) = vertex {
|
2023-01-05 11:09:25 +00:00
|
|
|
self.ring_assignment_data.push((*n).try_into().unwrap());
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-05 11:09:25 +00:00
|
|
|
if self.ring_assignment_data.len() != NB_PARTITIONS * self.replication_factor {
|
2022-10-10 15:21:13 +00:00
|
|
|
return Err(Error::Message(
|
|
|
|
"Critical Error : the association ring we produced does not \
|
|
|
|
have the right size."
|
|
|
|
.into(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
/// This function returns a message summing up the partition repartition of the new
|
2023-01-05 11:09:25 +00:00
|
|
|
/// layout, and other statistics of the partition assignment computation.
|
2022-10-10 15:21:13 +00:00
|
|
|
fn output_stat(
|
|
|
|
&self,
|
|
|
|
gflow: &Graph<FlowEdge>,
|
2022-10-11 16:29:21 +00:00
|
|
|
prev_assign_opt: &Option<Vec<Vec<usize>>>,
|
2022-10-10 15:21:13 +00:00
|
|
|
zone_to_id: &HashMap<String, usize>,
|
|
|
|
id_to_zone: &[String],
|
|
|
|
) -> Result<Message, Error> {
|
|
|
|
let mut msg = Message::new();
|
|
|
|
|
2022-11-07 20:12:11 +00:00
|
|
|
let used_cap = self.partition_size * NB_PARTITIONS as u64 * self.replication_factor as u64;
|
2022-10-10 15:21:13 +00:00
|
|
|
let total_cap = self.get_total_capacity()?;
|
|
|
|
let percent_cap = 100.0 * (used_cap as f32) / (total_cap as f32);
|
|
|
|
msg.push(format!(
|
2023-09-12 15:24:51 +00:00
|
|
|
"Usable capacity / total cluster capacity: {} / {} ({:.1} %)",
|
2022-11-07 20:12:11 +00:00
|
|
|
ByteSize::b(used_cap).to_string_as(false),
|
|
|
|
ByteSize::b(total_cap).to_string_as(false),
|
|
|
|
percent_cap
|
2022-10-10 15:21:13 +00:00
|
|
|
));
|
|
|
|
msg.push(format!(
|
2023-09-12 15:24:51 +00:00
|
|
|
"Effective capacity (replication factor {}): {}",
|
2022-10-10 15:21:13 +00:00
|
|
|
self.replication_factor,
|
2022-11-07 20:12:11 +00:00
|
|
|
ByteSize::b(used_cap / self.replication_factor as u64).to_string_as(false)
|
2022-10-10 15:21:13 +00:00
|
|
|
));
|
2023-09-12 15:24:51 +00:00
|
|
|
if percent_cap < 80. {
|
|
|
|
msg.push("".into());
|
|
|
|
msg.push(
|
|
|
|
"If the percentage is too low, it might be that the \
|
2023-09-18 10:07:45 +00:00
|
|
|
cluster topology and redundancy constraints are forcing the use of nodes/zones with small \
|
2023-09-12 15:24:51 +00:00
|
|
|
storage capacities."
|
|
|
|
.into(),
|
|
|
|
);
|
|
|
|
msg.push(
|
2023-09-18 10:07:45 +00:00
|
|
|
"You might want to move storage capacity between zones or relax the redundancy constraint."
|
2023-09-12 15:24:51 +00:00
|
|
|
.into(),
|
|
|
|
);
|
|
|
|
msg.push(
|
|
|
|
"See the detailed statistics below and look for saturated nodes/zones.".into(),
|
|
|
|
);
|
|
|
|
}
|
2022-10-10 15:21:13 +00:00
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We define and fill in the following tables
|
2023-11-14 11:48:38 +00:00
|
|
|
let storing_nodes = self.nongateway_nodes();
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut new_partitions = vec![0; storing_nodes.len()];
|
|
|
|
let mut stored_partitions = vec![0; storing_nodes.len()];
|
|
|
|
|
|
|
|
let mut new_partitions_zone = vec![0; id_to_zone.len()];
|
|
|
|
let mut stored_partitions_zone = vec![0; id_to_zone.len()];
|
|
|
|
|
2022-10-11 16:29:21 +00:00
|
|
|
for p in 0..NB_PARTITIONS {
|
2022-10-10 15:21:13 +00:00
|
|
|
for z in 0..id_to_zone.len() {
|
|
|
|
let pz_nodes = gflow.get_positive_flow_from(Vertex::PZ(p, z))?;
|
|
|
|
if !pz_nodes.is_empty() {
|
|
|
|
stored_partitions_zone[z] += 1;
|
2022-10-11 16:29:21 +00:00
|
|
|
if let Some(prev_assign) = prev_assign_opt {
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut old_zones_of_p = Vec::<usize>::new();
|
2022-10-11 16:29:21 +00:00
|
|
|
for n in prev_assign[p].iter() {
|
2022-10-10 15:21:13 +00:00
|
|
|
old_zones_of_p
|
2023-11-08 12:11:13 +00:00
|
|
|
.push(zone_to_id[self.get_node_zone(&self.node_id_vec[*n])?]);
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
if !old_zones_of_p.contains(&z) {
|
|
|
|
new_partitions_zone[z] += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for vert in pz_nodes.iter() {
|
|
|
|
if let Vertex::N(n) = *vert {
|
|
|
|
stored_partitions[n] += 1;
|
2022-10-11 16:29:21 +00:00
|
|
|
if let Some(prev_assign) = prev_assign_opt {
|
|
|
|
if !prev_assign[p].contains(&n) {
|
2022-10-10 15:21:13 +00:00
|
|
|
new_partitions[n] += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-18 10:17:07 +00:00
|
|
|
if prev_assign_opt.is_none() {
|
2022-10-10 15:21:13 +00:00
|
|
|
new_partitions = stored_partitions.clone();
|
2023-09-18 09:57:36 +00:00
|
|
|
//new_partitions_zone = stored_partitions_zone.clone();
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
|
2022-11-07 18:34:40 +00:00
|
|
|
// We display the statistics
|
2022-10-10 15:21:13 +00:00
|
|
|
|
|
|
|
msg.push("".into());
|
2023-09-18 10:17:07 +00:00
|
|
|
if prev_assign_opt.is_some() {
|
2022-10-10 15:21:13 +00:00
|
|
|
let total_new_partitions: usize = new_partitions.iter().sum();
|
|
|
|
msg.push(format!(
|
|
|
|
"A total of {} new copies of partitions need to be \
|
|
|
|
transferred.",
|
|
|
|
total_new_partitions
|
|
|
|
));
|
2023-09-12 15:24:51 +00:00
|
|
|
msg.push("".into());
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
|
2023-09-12 15:24:51 +00:00
|
|
|
let mut table = vec![];
|
2022-10-10 15:21:13 +00:00
|
|
|
for z in 0..id_to_zone.len() {
|
|
|
|
let mut nodes_of_z = Vec::<usize>::new();
|
|
|
|
for n in 0..storing_nodes.len() {
|
|
|
|
if self.get_node_zone(&self.node_id_vec[n])? == id_to_zone[z] {
|
|
|
|
nodes_of_z.push(n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let replicated_partitions: usize =
|
|
|
|
nodes_of_z.iter().map(|n| stored_partitions[*n]).sum();
|
2023-09-12 15:24:51 +00:00
|
|
|
table.push(format!(
|
|
|
|
"{}\tTags\tPartitions\tCapacity\tUsable capacity",
|
|
|
|
id_to_zone[z]
|
2022-10-10 15:21:13 +00:00
|
|
|
));
|
|
|
|
|
2022-11-07 20:12:11 +00:00
|
|
|
let available_cap_z: u64 = self.partition_size * replicated_partitions as u64;
|
2022-10-10 15:21:13 +00:00
|
|
|
let mut total_cap_z = 0;
|
|
|
|
for n in nodes_of_z.iter() {
|
2023-11-14 11:48:38 +00:00
|
|
|
total_cap_z += self.expect_get_node_capacity(&self.node_id_vec[*n]);
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
|
|
|
let percent_cap_z = 100.0 * (available_cap_z as f32) / (total_cap_z as f32);
|
|
|
|
|
|
|
|
for n in nodes_of_z.iter() {
|
2022-11-07 20:12:11 +00:00
|
|
|
let available_cap_n = stored_partitions[*n] as u64 * self.partition_size;
|
2023-11-14 11:48:38 +00:00
|
|
|
let total_cap_n = self.expect_get_node_capacity(&self.node_id_vec[*n]);
|
2023-09-12 15:24:51 +00:00
|
|
|
let tags_n = (self.node_role(&self.node_id_vec[*n]).ok_or("<??>"))?.tags_string();
|
|
|
|
table.push(format!(
|
|
|
|
" {:?}\t{}\t{} ({} new)\t{}\t{} ({:.1}%)",
|
2022-11-07 20:12:11 +00:00
|
|
|
self.node_id_vec[*n],
|
2023-09-12 15:24:51 +00:00
|
|
|
tags_n,
|
2022-10-10 15:21:13 +00:00
|
|
|
stored_partitions[*n],
|
|
|
|
new_partitions[*n],
|
2022-11-07 20:12:11 +00:00
|
|
|
ByteSize::b(total_cap_n).to_string_as(false),
|
2023-09-18 10:07:45 +00:00
|
|
|
ByteSize::b(available_cap_n).to_string_as(false),
|
2022-10-10 15:21:13 +00:00
|
|
|
(available_cap_n as f32) / (total_cap_n as f32) * 100.0,
|
|
|
|
));
|
|
|
|
}
|
2023-09-12 15:24:51 +00:00
|
|
|
|
|
|
|
table.push(format!(
|
|
|
|
" TOTAL\t\t{} ({} unique)\t{}\t{} ({:.1}%)",
|
|
|
|
replicated_partitions,
|
|
|
|
stored_partitions_zone[z],
|
|
|
|
//new_partitions_zone[z],
|
|
|
|
ByteSize::b(total_cap_z).to_string_as(false),
|
2023-09-18 10:07:45 +00:00
|
|
|
ByteSize::b(available_cap_z).to_string_as(false),
|
2023-09-12 15:24:51 +00:00
|
|
|
percent_cap_z
|
|
|
|
));
|
|
|
|
table.push("".into());
|
2022-10-10 15:21:13 +00:00
|
|
|
}
|
2023-09-12 15:24:51 +00:00
|
|
|
msg.push(format_table::format_table_to_string(table));
|
2022-10-10 15:21:13 +00:00
|
|
|
|
|
|
|
Ok(msg)
|
|
|
|
}
|
2022-05-01 07:57:05 +00:00
|
|
|
}
|