Spaces:
Build error
Build error
File size: 9,598 Bytes
d8435ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
use std::sync::Arc;
use collection::collection::Collection;
use collection::common::sha_256::hash_file;
use collection::common::snapshot_stream::SnapshotStream;
use collection::operations::snapshot_ops::{
ShardSnapshotLocation, SnapshotDescription, SnapshotPriority,
};
use collection::shards::replica_set::ReplicaState;
use collection::shards::shard::ShardId;
use storage::content_manager::errors::StorageError;
use storage::content_manager::snapshots;
use storage::content_manager::toc::TableOfContent;
use storage::rbac::{Access, AccessRequirements};
use super::http_client::HttpClient;
/// # Cancel safety
///
/// This function is cancel safe.
pub async fn create_shard_snapshot(
toc: Arc<TableOfContent>,
access: Access,
collection_name: String,
shard_id: ShardId,
) -> Result<SnapshotDescription, StorageError> {
let collection_pass = access
.check_collection_access(&collection_name, AccessRequirements::new().write().whole())?;
let collection = toc.get_collection(&collection_pass).await?;
let snapshot = collection
.create_shard_snapshot(shard_id, &toc.optional_temp_or_snapshot_temp_path()?)
.await?;
Ok(snapshot)
}
/// # Cancel safety
///
/// This function is cancel safe.
pub async fn stream_shard_snapshot(
toc: Arc<TableOfContent>,
access: Access,
collection_name: String,
shard_id: ShardId,
) -> Result<SnapshotStream, StorageError> {
let collection_pass = access
.check_collection_access(&collection_name, AccessRequirements::new().write().whole())?;
let collection = toc.get_collection(&collection_pass).await?;
Ok(collection
.stream_shard_snapshot(shard_id, &toc.optional_temp_or_snapshot_temp_path()?)
.await?)
}
/// # Cancel safety
///
/// This function is cancel safe.
pub async fn list_shard_snapshots(
toc: Arc<TableOfContent>,
access: Access,
collection_name: String,
shard_id: ShardId,
) -> Result<Vec<SnapshotDescription>, StorageError> {
let collection_pass =
access.check_collection_access(&collection_name, AccessRequirements::new().whole())?;
let collection = toc.get_collection(&collection_pass).await?;
let snapshots = collection.list_shard_snapshots(shard_id).await?;
Ok(snapshots)
}
/// # Cancel safety
///
/// This function is cancel safe.
pub async fn delete_shard_snapshot(
toc: Arc<TableOfContent>,
access: Access,
collection_name: String,
shard_id: ShardId,
snapshot_name: String,
) -> Result<(), StorageError> {
let collection_pass = access
.check_collection_access(&collection_name, AccessRequirements::new().write().whole())?;
let collection = toc.get_collection(&collection_pass).await?;
let snapshot_manager = collection.get_snapshots_storage_manager()?;
let snapshot_path = collection
.shards_holder()
.read()
.await
.get_shard_snapshot_path(collection.snapshots_path(), shard_id, &snapshot_name)
.await?;
tokio::spawn(async move { snapshot_manager.delete_snapshot(&snapshot_path).await }).await??;
Ok(())
}
/// # Cancel safety
///
/// This function is cancel safe.
#[allow(clippy::too_many_arguments)]
pub async fn recover_shard_snapshot(
toc: Arc<TableOfContent>,
access: Access,
collection_name: String,
shard_id: ShardId,
snapshot_location: ShardSnapshotLocation,
snapshot_priority: SnapshotPriority,
checksum: Option<String>,
client: HttpClient,
api_key: Option<String>,
) -> Result<(), StorageError> {
let collection_pass = access
.check_global_access(AccessRequirements::new().manage())?
.issue_pass(&collection_name)
.into_static();
// - `recover_shard_snapshot_impl` is *not* cancel safe
// - but the task is *spawned* on the runtime and won't be cancelled, if request is cancelled
cancel::future::spawn_cancel_on_drop(move |cancel| async move {
let future = async {
let collection = toc.get_collection(&collection_pass).await?;
collection.assert_shard_exists(shard_id).await?;
let download_dir = toc.optional_temp_or_snapshot_temp_path()?;
let snapshot_path = match snapshot_location {
ShardSnapshotLocation::Url(url) => {
if !matches!(url.scheme(), "http" | "https") {
let description = format!(
"Invalid snapshot URL {url}: URLs with {} scheme are not supported",
url.scheme(),
);
return Err(StorageError::bad_input(description));
}
let client = client.client(api_key.as_deref())?;
snapshots::download::download_snapshot(&client, url, &download_dir).await?
}
ShardSnapshotLocation::Path(snapshot_file_name) => {
let snapshot_path = collection
.shards_holder()
.read()
.await
.get_shard_snapshot_path(
collection.snapshots_path(),
shard_id,
&snapshot_file_name,
)
.await?;
collection
.get_snapshots_storage_manager()?
.get_snapshot_file(&snapshot_path, &download_dir)
.await?
}
};
if let Some(checksum) = checksum {
let snapshot_checksum = hash_file(&snapshot_path).await?;
if snapshot_checksum != checksum {
return Err(StorageError::bad_input(format!(
"Snapshot checksum mismatch: expected {checksum}, got {snapshot_checksum}"
)));
}
}
Result::<_, StorageError>::Ok((collection, snapshot_path))
};
let (collection, snapshot_path) =
cancel::future::cancel_on_token(cancel.clone(), future).await??;
// `recover_shard_snapshot_impl` is *not* cancel safe
let result = recover_shard_snapshot_impl(
&toc,
&collection,
shard_id,
&snapshot_path,
snapshot_priority,
cancel,
)
.await;
// Remove snapshot after recovery if downloaded
if let Err(err) = snapshot_path.close() {
log::error!("Failed to remove downloaded shards snapshot after recovery: {err}");
}
result
})
.await??;
Ok(())
}
/// # Cancel safety
///
/// This function is *not* cancel safe.
pub async fn recover_shard_snapshot_impl(
toc: &TableOfContent,
collection: &Collection,
shard: ShardId,
snapshot_path: &std::path::Path,
priority: SnapshotPriority,
cancel: cancel::CancellationToken,
) -> Result<(), StorageError> {
// `Collection::restore_shard_snapshot` and `activate_shard` calls *have to* be executed as a
// single transaction
//
// It is *possible* to make this function to be cancel safe, but it is *extremely tedious* to do so
// `Collection::restore_shard_snapshot` is *not* cancel safe
// (see `ShardReplicaSet::restore_local_replica_from`)
collection
.restore_shard_snapshot(
shard,
snapshot_path,
toc.this_peer_id,
toc.is_distributed(),
&toc.optional_temp_or_snapshot_temp_path()?,
cancel,
)
.await?;
let state = collection.state().await;
let shard_info = state.shards.get(&shard).unwrap(); // TODO: Handle `unwrap`?..
// TODO: Unify (and de-duplicate) "recovered shard state notification" logic in `_do_recover_from_snapshot` with this one!
let other_active_replicas: Vec<_> = shard_info
.replicas
.iter()
.map(|(&peer, &state)| (peer, state))
.filter(|&(peer, state)| peer != toc.this_peer_id && state == ReplicaState::Active)
.collect();
if other_active_replicas.is_empty() {
snapshots::recover::activate_shard(toc, collection, toc.this_peer_id, &shard).await?;
} else {
match priority {
SnapshotPriority::NoSync => {
snapshots::recover::activate_shard(toc, collection, toc.this_peer_id, &shard)
.await?;
}
SnapshotPriority::Snapshot => {
snapshots::recover::activate_shard(toc, collection, toc.this_peer_id, &shard)
.await?;
for &(peer, _) in other_active_replicas.iter() {
toc.send_set_replica_state_proposal(
collection.name(),
peer,
shard,
ReplicaState::Dead,
None,
)?;
}
}
SnapshotPriority::Replica => {
toc.send_set_replica_state_proposal(
collection.name(),
toc.this_peer_id,
shard,
ReplicaState::Dead,
None,
)?;
}
// `ShardTransfer` is only used during snapshot *shard transfer*.
// State transitions are performed as part of shard transfer *later*, so this simply does *nothing*.
SnapshotPriority::ShardTransfer => (),
}
}
Ok(())
}
|