2020-04-10 20:01:48 +00:00
|
|
|
use std::sync::Arc;
|
2020-04-17 15:09:57 +00:00
|
|
|
|
2021-10-14 09:50:12 +00:00
|
|
|
use netapp::NetworkKey;
|
|
|
|
|
2020-04-24 10:10:01 +00:00
|
|
|
use garage_util::background::*;
|
|
|
|
use garage_util::config::*;
|
2020-04-07 14:26:22 +00:00
|
|
|
|
2021-10-14 09:50:12 +00:00
|
|
|
use garage_rpc::system::System;
|
2020-04-11 16:51:11 +00:00
|
|
|
|
2022-03-15 11:31:23 +00:00
|
|
|
use garage_block::manager::*;
|
2021-05-28 10:36:22 +00:00
|
|
|
use garage_table::replication::ReplicationMode;
|
2021-03-26 18:41:46 +00:00
|
|
|
use garage_table::replication::TableFullReplication;
|
|
|
|
use garage_table::replication::TableShardedReplication;
|
2020-04-24 10:10:01 +00:00
|
|
|
use garage_table::*;
|
2020-04-11 16:51:11 +00:00
|
|
|
|
2022-05-10 11:16:57 +00:00
|
|
|
use crate::s3::block_ref_table::*;
|
|
|
|
use crate::s3::object_table::*;
|
|
|
|
use crate::s3::version_table::*;
|
|
|
|
|
2021-12-14 12:55:11 +00:00
|
|
|
use crate::bucket_alias_table::*;
|
2020-04-24 10:10:01 +00:00
|
|
|
use crate::bucket_table::*;
|
2022-01-03 12:58:05 +00:00
|
|
|
use crate::helper;
|
2020-04-24 10:10:01 +00:00
|
|
|
use crate::key_table::*;
|
2022-05-10 11:16:57 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "k2v")]
|
|
|
|
use crate::index_counter::*;
|
|
|
|
#[cfg(feature = "k2v")]
|
|
|
|
use crate::k2v::{counter_table::*, item_table::*, poll::*, rpc::*};
|
2020-04-11 16:51:11 +00:00
|
|
|
|
2021-03-26 20:53:28 +00:00
|
|
|
/// An entire Garage full of data
|
2020-04-08 20:00:41 +00:00
|
|
|
pub struct Garage {
|
2021-03-26 20:53:28 +00:00
|
|
|
/// The parsed configuration Garage is running
|
2020-04-23 17:05:46 +00:00
|
|
|
pub config: Config,
|
|
|
|
|
2021-03-26 20:53:28 +00:00
|
|
|
/// The local database
|
2020-04-08 20:00:41 +00:00
|
|
|
pub db: sled::Db,
|
2021-03-26 20:53:28 +00:00
|
|
|
/// A background job runner
|
2020-04-17 13:36:16 +00:00
|
|
|
pub background: Arc<BackgroundRunner>,
|
2021-03-26 20:53:28 +00:00
|
|
|
/// The membership manager
|
2020-04-08 20:00:41 +00:00
|
|
|
pub system: Arc<System>,
|
2021-03-26 20:53:28 +00:00
|
|
|
/// The block manager
|
2020-04-12 11:03:55 +00:00
|
|
|
pub block_manager: Arc<BlockManager>,
|
2020-04-08 20:00:41 +00:00
|
|
|
|
2022-05-10 11:16:57 +00:00
|
|
|
/// Table containing buckets
|
2020-04-19 15:15:48 +00:00
|
|
|
pub bucket_table: Arc<Table<BucketTable, TableFullReplication>>,
|
2022-05-10 11:16:57 +00:00
|
|
|
/// Table containing bucket aliases
|
2021-12-14 12:55:11 +00:00
|
|
|
pub bucket_alias_table: Arc<Table<BucketAliasTable, TableFullReplication>>,
|
2022-05-10 11:16:57 +00:00
|
|
|
/// Table containing api keys
|
2020-04-23 20:25:45 +00:00
|
|
|
pub key_table: Arc<Table<KeyTable, TableFullReplication>>,
|
|
|
|
|
2022-05-10 11:16:57 +00:00
|
|
|
/// Table containing S3 objects
|
2020-04-19 11:22:28 +00:00
|
|
|
pub object_table: Arc<Table<ObjectTable, TableShardedReplication>>,
|
2022-05-10 11:16:57 +00:00
|
|
|
/// Table containing S3 object versions
|
2020-04-19 11:22:28 +00:00
|
|
|
pub version_table: Arc<Table<VersionTable, TableShardedReplication>>,
|
2022-05-10 11:16:57 +00:00
|
|
|
/// Table containing S3 block references (not blocks themselves)
|
2020-04-19 11:22:28 +00:00
|
|
|
pub block_ref_table: Arc<Table<BlockRefTable, TableShardedReplication>>,
|
2022-05-10 11:16:57 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "k2v")]
|
|
|
|
pub k2v: GarageK2V,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "k2v")]
|
|
|
|
pub struct GarageK2V {
|
|
|
|
/// Table containing K2V items
|
|
|
|
pub item_table: Arc<Table<K2VItemTable, TableShardedReplication>>,
|
|
|
|
/// Indexing table containing K2V item counters
|
|
|
|
pub counter_table: Arc<IndexCounter<K2VCounterTable>>,
|
|
|
|
/// K2V RPC handler
|
|
|
|
pub rpc: Arc<K2VRpcHandler>,
|
2020-04-08 20:00:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Garage {
|
2021-03-26 20:53:28 +00:00
|
|
|
/// Create and run garage
|
2021-10-14 09:50:12 +00:00
|
|
|
pub fn new(config: Config, db: sled::Db, background: Arc<BackgroundRunner>) -> Arc<Self> {
|
|
|
|
let network_key = NetworkKey::from_slice(
|
|
|
|
&hex::decode(&config.rpc_secret).expect("Invalid RPC secret key")[..],
|
|
|
|
)
|
|
|
|
.expect("Invalid RPC secret key");
|
|
|
|
|
2021-05-28 10:36:22 +00:00
|
|
|
let replication_mode = ReplicationMode::parse(&config.replication_mode)
|
|
|
|
.expect("Invalid replication_mode in config file.");
|
|
|
|
|
2020-04-21 12:54:55 +00:00
|
|
|
info!("Initialize membership management system...");
|
2020-04-23 17:05:46 +00:00
|
|
|
let system = System::new(
|
2021-10-14 09:50:12 +00:00
|
|
|
network_key,
|
2020-04-23 17:05:46 +00:00
|
|
|
background.clone(),
|
2021-05-28 10:36:22 +00:00
|
|
|
replication_mode.replication_factor(),
|
2021-10-19 14:16:10 +00:00
|
|
|
&config,
|
2020-04-23 17:05:46 +00:00
|
|
|
);
|
2020-04-08 20:00:41 +00:00
|
|
|
|
2020-04-19 11:22:28 +00:00
|
|
|
let data_rep_param = TableShardedReplication {
|
2021-03-16 10:14:27 +00:00
|
|
|
system: system.clone(),
|
2021-05-28 10:36:22 +00:00
|
|
|
replication_factor: replication_mode.replication_factor(),
|
|
|
|
write_quorum: replication_mode.write_quorum(),
|
2020-04-12 11:03:55 +00:00
|
|
|
read_quorum: 1,
|
|
|
|
};
|
|
|
|
|
2020-04-19 11:22:28 +00:00
|
|
|
let meta_rep_param = TableShardedReplication {
|
2021-03-16 10:14:27 +00:00
|
|
|
system: system.clone(),
|
2021-05-28 10:36:22 +00:00
|
|
|
replication_factor: replication_mode.replication_factor(),
|
|
|
|
write_quorum: replication_mode.write_quorum(),
|
|
|
|
read_quorum: replication_mode.read_quorum(),
|
2020-04-08 20:00:41 +00:00
|
|
|
};
|
|
|
|
|
2021-03-16 10:14:27 +00:00
|
|
|
let control_rep_param = TableFullReplication {
|
|
|
|
system: system.clone(),
|
2021-05-28 10:36:22 +00:00
|
|
|
max_faults: replication_mode.control_write_max_faults(),
|
2021-03-16 10:14:27 +00:00
|
|
|
};
|
2020-04-23 17:05:46 +00:00
|
|
|
|
|
|
|
info!("Initialize block manager...");
|
2022-03-15 11:31:23 +00:00
|
|
|
let block_manager = BlockManager::new(
|
|
|
|
&db,
|
|
|
|
config.data_dir.clone(),
|
|
|
|
config.compression_level,
|
|
|
|
config.block_manager_background_tranquility,
|
|
|
|
data_rep_param,
|
|
|
|
system.clone(),
|
|
|
|
);
|
2020-04-19 15:15:48 +00:00
|
|
|
|
2022-05-10 11:16:57 +00:00
|
|
|
// ---- admin tables ----
|
|
|
|
info!("Initialize bucket_table...");
|
|
|
|
let bucket_table = Table::new(BucketTable, control_rep_param.clone(), system.clone(), &db);
|
|
|
|
|
|
|
|
info!("Initialize bucket_alias_table...");
|
|
|
|
let bucket_alias_table = Table::new(
|
|
|
|
BucketAliasTable,
|
|
|
|
control_rep_param.clone(),
|
|
|
|
system.clone(),
|
|
|
|
&db,
|
|
|
|
);
|
|
|
|
info!("Initialize key_table_table...");
|
|
|
|
let key_table = Table::new(KeyTable, control_rep_param, system.clone(), &db);
|
|
|
|
|
|
|
|
// ---- S3 tables ----
|
2020-04-21 12:54:55 +00:00
|
|
|
info!("Initialize block_ref_table...");
|
2020-04-12 20:24:53 +00:00
|
|
|
let block_ref_table = Table::new(
|
2020-04-12 11:03:55 +00:00
|
|
|
BlockRefTable {
|
|
|
|
block_manager: block_manager.clone(),
|
2020-04-10 20:01:48 +00:00
|
|
|
},
|
2021-05-28 10:36:22 +00:00
|
|
|
meta_rep_param.clone(),
|
2020-04-08 20:00:41 +00:00
|
|
|
system.clone(),
|
|
|
|
&db,
|
2021-03-11 12:47:21 +00:00
|
|
|
);
|
2020-04-17 15:09:57 +00:00
|
|
|
|
2020-04-21 12:54:55 +00:00
|
|
|
info!("Initialize version_table...");
|
2020-04-12 20:24:53 +00:00
|
|
|
let version_table = Table::new(
|
2020-04-10 20:01:48 +00:00
|
|
|
VersionTable {
|
2020-04-12 11:03:55 +00:00
|
|
|
background: background.clone(),
|
|
|
|
block_ref_table: block_ref_table.clone(),
|
2020-04-10 20:01:48 +00:00
|
|
|
},
|
2020-04-19 11:22:28 +00:00
|
|
|
meta_rep_param.clone(),
|
2020-04-09 21:45:07 +00:00
|
|
|
system.clone(),
|
|
|
|
&db,
|
2021-03-11 12:47:21 +00:00
|
|
|
);
|
2020-04-17 15:09:57 +00:00
|
|
|
|
2020-04-21 12:54:55 +00:00
|
|
|
info!("Initialize object_table...");
|
2022-05-10 11:16:57 +00:00
|
|
|
#[allow(clippy::redundant_clone)]
|
2020-04-12 20:24:53 +00:00
|
|
|
let object_table = Table::new(
|
2020-04-12 11:03:55 +00:00
|
|
|
ObjectTable {
|
|
|
|
background: background.clone(),
|
|
|
|
version_table: version_table.clone(),
|
2020-04-10 21:11:52 +00:00
|
|
|
},
|
2022-05-10 11:16:57 +00:00
|
|
|
meta_rep_param.clone(),
|
2021-12-14 12:55:11 +00:00
|
|
|
system.clone(),
|
|
|
|
&db,
|
|
|
|
);
|
|
|
|
|
2022-05-10 11:16:57 +00:00
|
|
|
// ---- K2V ----
|
|
|
|
#[cfg(feature = "k2v")]
|
|
|
|
let k2v = GarageK2V::new(system.clone(), &db, meta_rep_param);
|
2020-04-23 20:25:45 +00:00
|
|
|
|
2020-04-21 12:54:55 +00:00
|
|
|
info!("Initialize Garage...");
|
2022-03-15 15:06:50 +00:00
|
|
|
|
|
|
|
Arc::new(Self {
|
2020-04-23 17:05:46 +00:00
|
|
|
config,
|
2020-04-08 20:00:41 +00:00
|
|
|
db,
|
2020-04-11 16:51:11 +00:00
|
|
|
background,
|
2021-04-23 19:57:32 +00:00
|
|
|
system,
|
|
|
|
block_manager,
|
2020-04-19 15:15:48 +00:00
|
|
|
bucket_table,
|
2021-12-14 12:55:11 +00:00
|
|
|
bucket_alias_table,
|
2020-04-23 20:25:45 +00:00
|
|
|
key_table,
|
2020-04-09 15:32:28 +00:00
|
|
|
object_table,
|
2020-04-09 21:45:07 +00:00
|
|
|
version_table,
|
2020-04-10 21:11:52 +00:00
|
|
|
block_ref_table,
|
2022-05-10 11:16:57 +00:00
|
|
|
#[cfg(feature = "k2v")]
|
|
|
|
k2v,
|
2022-03-15 15:06:50 +00:00
|
|
|
})
|
2020-04-08 20:00:41 +00:00
|
|
|
}
|
2021-10-15 09:05:09 +00:00
|
|
|
|
2022-01-03 12:58:05 +00:00
|
|
|
pub fn bucket_helper(&self) -> helper::bucket::BucketHelper {
|
|
|
|
helper::bucket::BucketHelper(self)
|
2021-12-14 12:55:11 +00:00
|
|
|
}
|
2022-05-24 10:16:39 +00:00
|
|
|
|
|
|
|
pub fn key_helper(&self) -> helper::key::KeyHelper {
|
|
|
|
helper::key::KeyHelper(self)
|
|
|
|
}
|
2020-04-08 20:00:41 +00:00
|
|
|
}
|
2022-05-10 11:16:57 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "k2v")]
|
|
|
|
impl GarageK2V {
|
|
|
|
fn new(system: Arc<System>, db: &sled::Db, meta_rep_param: TableShardedReplication) -> Self {
|
|
|
|
info!("Initialize K2V counter table...");
|
|
|
|
let counter_table = IndexCounter::new(system.clone(), meta_rep_param.clone(), db);
|
|
|
|
info!("Initialize K2V subscription manager...");
|
|
|
|
let subscriptions = Arc::new(SubscriptionManager::new());
|
|
|
|
info!("Initialize K2V item table...");
|
|
|
|
let item_table = Table::new(
|
|
|
|
K2VItemTable {
|
|
|
|
counter_table: counter_table.clone(),
|
|
|
|
subscriptions: subscriptions.clone(),
|
|
|
|
},
|
|
|
|
meta_rep_param,
|
|
|
|
system.clone(),
|
|
|
|
db,
|
|
|
|
);
|
|
|
|
let rpc = K2VRpcHandler::new(system, item_table.clone(), subscriptions);
|
|
|
|
|
|
|
|
Self {
|
|
|
|
item_table,
|
|
|
|
counter_table,
|
|
|
|
rpc,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|