mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-22 07:30:37 +00:00
part of https://github.com/neondatabase/cloud/issues/14024 close https://github.com/neondatabase/neon/issues/7665 Things running in k8s container use this authentication: https://docs.aws.amazon.com/sdkref/latest/guide/feature-container-credentials.html while we did not configure the client to use it. This pull request simply uses the default s3 client credential chain for storage scrubber. It might break compatibility with minio. ## Summary of changes * Use default AWS credential provider chain. * Improvements for s3 errors, we now have detailed errors and correct backtrace on last trial of the operation. --------- Signed-off-by: Alex Chi Z <chi@neon.tech> Co-authored-by: Joonas Koivunen <joonas@neon.tech>
121 lines
4.0 KiB
Rust
121 lines
4.0 KiB
Rust
use futures::{StreamExt, TryStreamExt};
|
|
use pageserver::tenant::storage_layer::LayerName;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use crate::{
|
|
checks::parse_layer_object_name, init_remote, list_objects_with_retries,
|
|
metadata_stream::stream_tenants, BucketConfig, NodeKind,
|
|
};
|
|
|
|
#[derive(Serialize, Deserialize, Clone, Copy, PartialEq, Eq)]
|
|
enum LargeObjectKind {
|
|
DeltaLayer,
|
|
ImageLayer,
|
|
Other,
|
|
}
|
|
|
|
impl LargeObjectKind {
|
|
fn from_key(key: &str) -> Self {
|
|
let fname = key.split('/').last().unwrap();
|
|
|
|
let Ok((layer_name, _generation)) = parse_layer_object_name(fname) else {
|
|
return LargeObjectKind::Other;
|
|
};
|
|
|
|
match layer_name {
|
|
LayerName::Image(_) => LargeObjectKind::ImageLayer,
|
|
LayerName::Delta(_) => LargeObjectKind::DeltaLayer,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize, Clone)]
|
|
pub struct LargeObject {
|
|
pub key: String,
|
|
pub size: u64,
|
|
kind: LargeObjectKind,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct LargeObjectListing {
|
|
pub objects: Vec<LargeObject>,
|
|
}
|
|
|
|
pub async fn find_large_objects(
|
|
bucket_config: BucketConfig,
|
|
min_size: u64,
|
|
ignore_deltas: bool,
|
|
concurrency: usize,
|
|
) -> anyhow::Result<LargeObjectListing> {
|
|
let (s3_client, target) = init_remote(bucket_config.clone(), NodeKind::Pageserver).await?;
|
|
let tenants = std::pin::pin!(stream_tenants(&s3_client, &target));
|
|
|
|
let objects_stream = tenants.map_ok(|tenant_shard_id| {
|
|
let mut tenant_root = target.tenant_root(&tenant_shard_id);
|
|
let s3_client = s3_client.clone();
|
|
async move {
|
|
let mut objects = Vec::new();
|
|
let mut total_objects_ctr = 0u64;
|
|
// We want the objects and not just common prefixes
|
|
tenant_root.delimiter.clear();
|
|
let mut continuation_token = None;
|
|
loop {
|
|
let fetch_response =
|
|
list_objects_with_retries(&s3_client, &tenant_root, continuation_token.clone())
|
|
.await?;
|
|
for obj in fetch_response.contents().iter().filter(|o| {
|
|
if let Some(obj_size) = o.size {
|
|
min_size as i64 <= obj_size
|
|
} else {
|
|
false
|
|
}
|
|
}) {
|
|
let key = obj.key().expect("couldn't get key").to_owned();
|
|
let kind = LargeObjectKind::from_key(&key);
|
|
if ignore_deltas && kind == LargeObjectKind::DeltaLayer {
|
|
continue;
|
|
}
|
|
objects.push(LargeObject {
|
|
key,
|
|
size: obj.size.unwrap() as u64,
|
|
kind,
|
|
})
|
|
}
|
|
total_objects_ctr += fetch_response.contents().len() as u64;
|
|
match fetch_response.next_continuation_token {
|
|
Some(new_token) => continuation_token = Some(new_token),
|
|
None => break,
|
|
}
|
|
}
|
|
|
|
Ok((tenant_shard_id, objects, total_objects_ctr))
|
|
}
|
|
});
|
|
let mut objects_stream = std::pin::pin!(objects_stream.try_buffer_unordered(concurrency));
|
|
|
|
let mut objects = Vec::new();
|
|
|
|
let mut tenant_ctr = 0u64;
|
|
let mut object_ctr = 0u64;
|
|
while let Some(res) = objects_stream.next().await {
|
|
let (tenant_shard_id, objects_slice, total_objects_ctr) = res?;
|
|
objects.extend_from_slice(&objects_slice);
|
|
|
|
object_ctr += total_objects_ctr;
|
|
tenant_ctr += 1;
|
|
if tenant_ctr % 100 == 0 {
|
|
tracing::info!(
|
|
"Scanned {tenant_ctr} shards. objects={object_ctr}, found={}, current={tenant_shard_id}.",
|
|
objects.len()
|
|
);
|
|
}
|
|
}
|
|
|
|
let bucket_name = target.bucket_name();
|
|
tracing::info!(
|
|
"Scan of {bucket_name} finished. Scanned {tenant_ctr} shards. objects={object_ctr}, found={}.",
|
|
objects.len()
|
|
);
|
|
Ok(LargeObjectListing { objects })
|
|
}
|