mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-14 08:52:56 +00:00
Cancellation and timeouts are handled at remote_storage callsites, if
they are. However they should always be handled, because we've had
transient problems with remote storage connections.
- Add cancellation token to the `trait RemoteStorage` methods
- For `download*`, `list*` methods there is
`DownloadError::{Cancelled,Timeout}`
- For the rest now using `anyhow::Error`, it will have root cause
`remote_storage::TimeoutOrCancel::{Cancel,Timeout}`
- Both types have `::is_permanent` equivalent which should be passed to
`backoff::retry`
- New generic RemoteStorageConfig option `timeout`, defaults to 120s
- Start counting timeouts only after acquiring concurrency limiter
permit
- Cancellable permit acquiring
- Download stream timeout or cancellation is communicated via an
`std::io::Error`
- Exit backoff::retry by marking cancellation errors permanent
Fixes: #6096
Closes: #4781
Co-authored-by: arpad-m <arpad-m@users.noreply.github.com>
887 lines
33 KiB
Rust
887 lines
33 KiB
Rust
//! A set of generic storage abstractions for the page server to use when backing up and restoring its state from the external storage.
|
|
//! No other modules from this tree are supposed to be used directly by the external code.
|
|
//!
|
|
//! [`RemoteStorage`] trait a CRUD-like generic abstraction to use for adapting external storages with a few implementations:
|
|
//! * [`local_fs`] allows to use local file system as an external storage
|
|
//! * [`s3_bucket`] uses AWS S3 bucket as an external storage
|
|
//! * [`azure_blob`] allows to use Azure Blob storage as an external storage
|
|
//!
|
|
#![deny(unsafe_code)]
|
|
#![deny(clippy::undocumented_unsafe_blocks)]
|
|
|
|
mod azure_blob;
|
|
mod error;
|
|
mod local_fs;
|
|
mod s3_bucket;
|
|
mod simulate_failures;
|
|
mod support;
|
|
|
|
use std::{
|
|
collections::HashMap,
|
|
fmt::Debug,
|
|
num::{NonZeroU32, NonZeroUsize},
|
|
pin::Pin,
|
|
sync::Arc,
|
|
time::{Duration, SystemTime},
|
|
};
|
|
|
|
use anyhow::{bail, Context};
|
|
use camino::{Utf8Path, Utf8PathBuf};
|
|
|
|
use bytes::Bytes;
|
|
use futures::stream::Stream;
|
|
use serde::{Deserialize, Serialize};
|
|
use tokio::sync::Semaphore;
|
|
use tokio_util::sync::CancellationToken;
|
|
use toml_edit::Item;
|
|
use tracing::info;
|
|
|
|
pub use self::{
|
|
azure_blob::AzureBlobStorage, local_fs::LocalFs, s3_bucket::S3Bucket,
|
|
simulate_failures::UnreliableWrapper,
|
|
};
|
|
use s3_bucket::RequestKind;
|
|
|
|
pub use error::{DownloadError, TimeTravelError, TimeoutOrCancel};
|
|
|
|
/// Currently, sync happens with AWS S3, that has two limits on requests per second:
|
|
/// ~200 RPS for IAM services
|
|
/// <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html>
|
|
/// ~3500 PUT/COPY/POST/DELETE or 5500 GET/HEAD S3 requests
|
|
/// <https://aws.amazon.com/premiumsupport/knowledge-center/s3-request-limit-avoid-throttling/>
|
|
pub const DEFAULT_REMOTE_STORAGE_S3_CONCURRENCY_LIMIT: usize = 100;
|
|
/// We set this a little bit low as we currently buffer the entire file into RAM
|
|
///
|
|
/// Here, a limit of max 20k concurrent connections was noted.
|
|
/// <https://learn.microsoft.com/en-us/answers/questions/1301863/is-there-any-limitation-to-concurrent-connections>
|
|
pub const DEFAULT_REMOTE_STORAGE_AZURE_CONCURRENCY_LIMIT: usize = 30;
|
|
/// No limits on the client side, which currenltly means 1000 for AWS S3.
|
|
/// <https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html#API_ListObjectsV2_RequestSyntax>
|
|
pub const DEFAULT_MAX_KEYS_PER_LIST_RESPONSE: Option<i32> = None;
|
|
|
|
/// As defined in S3 docs
|
|
pub const MAX_KEYS_PER_DELETE: usize = 1000;
|
|
|
|
const REMOTE_STORAGE_PREFIX_SEPARATOR: char = '/';
|
|
|
|
/// Path on the remote storage, relative to some inner prefix.
|
|
/// The prefix is an implementation detail, that allows representing local paths
|
|
/// as the remote ones, stripping the local storage prefix away.
|
|
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
pub struct RemotePath(Utf8PathBuf);
|
|
|
|
impl Serialize for RemotePath {
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
where
|
|
S: serde::Serializer,
|
|
{
|
|
serializer.collect_str(self)
|
|
}
|
|
}
|
|
|
|
impl<'de> Deserialize<'de> for RemotePath {
|
|
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
|
where
|
|
D: serde::Deserializer<'de>,
|
|
{
|
|
let str = String::deserialize(deserializer)?;
|
|
Ok(Self(Utf8PathBuf::from(&str)))
|
|
}
|
|
}
|
|
|
|
impl std::fmt::Display for RemotePath {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
std::fmt::Display::fmt(&self.0, f)
|
|
}
|
|
}
|
|
|
|
impl RemotePath {
|
|
pub fn new(relative_path: &Utf8Path) -> anyhow::Result<Self> {
|
|
anyhow::ensure!(
|
|
relative_path.is_relative(),
|
|
"Path {relative_path:?} is not relative"
|
|
);
|
|
Ok(Self(relative_path.to_path_buf()))
|
|
}
|
|
|
|
pub fn from_string(relative_path: &str) -> anyhow::Result<Self> {
|
|
Self::new(Utf8Path::new(relative_path))
|
|
}
|
|
|
|
pub fn with_base(&self, base_path: &Utf8Path) -> Utf8PathBuf {
|
|
base_path.join(&self.0)
|
|
}
|
|
|
|
pub fn object_name(&self) -> Option<&str> {
|
|
self.0.file_name()
|
|
}
|
|
|
|
pub fn join(&self, segment: &Utf8Path) -> Self {
|
|
Self(self.0.join(segment))
|
|
}
|
|
|
|
pub fn get_path(&self) -> &Utf8PathBuf {
|
|
&self.0
|
|
}
|
|
|
|
pub fn extension(&self) -> Option<&str> {
|
|
self.0.extension()
|
|
}
|
|
|
|
pub fn strip_prefix(&self, p: &RemotePath) -> Result<&Utf8Path, std::path::StripPrefixError> {
|
|
self.0.strip_prefix(&p.0)
|
|
}
|
|
}
|
|
|
|
/// We don't need callers to be able to pass arbitrary delimiters: just control
|
|
/// whether listings will use a '/' separator or not.
|
|
///
|
|
/// The WithDelimiter mode will populate `prefixes` and `keys` in the result. The
|
|
/// NoDelimiter mode will only populate `keys`.
|
|
pub enum ListingMode {
|
|
WithDelimiter,
|
|
NoDelimiter,
|
|
}
|
|
|
|
#[derive(Default)]
|
|
pub struct Listing {
|
|
pub prefixes: Vec<RemotePath>,
|
|
pub keys: Vec<RemotePath>,
|
|
}
|
|
|
|
/// Storage (potentially remote) API to manage its state.
|
|
/// This storage tries to be unaware of any layered repository context,
|
|
/// providing basic CRUD operations for storage files.
|
|
#[allow(async_fn_in_trait)]
|
|
pub trait RemoteStorage: Send + Sync + 'static {
|
|
/// Lists all top level subdirectories for a given prefix
|
|
/// Note: here we assume that if the prefix is passed it was obtained via remote_object_id
|
|
/// which already takes into account any kind of global prefix (prefix_in_bucket for S3 or storage_root for LocalFS)
|
|
/// so this method doesnt need to.
|
|
async fn list_prefixes(
|
|
&self,
|
|
prefix: Option<&RemotePath>,
|
|
cancel: &CancellationToken,
|
|
) -> Result<Vec<RemotePath>, DownloadError> {
|
|
let result = self
|
|
.list(prefix, ListingMode::WithDelimiter, None, cancel)
|
|
.await?
|
|
.prefixes;
|
|
Ok(result)
|
|
}
|
|
/// Lists all files in directory "recursively"
|
|
/// (not really recursively, because AWS has a flat namespace)
|
|
/// Note: This is subtely different than list_prefixes,
|
|
/// because it is for listing files instead of listing
|
|
/// names sharing common prefixes.
|
|
/// For example,
|
|
/// list_files("foo/bar") = ["foo/bar/cat123.txt",
|
|
/// "foo/bar/cat567.txt", "foo/bar/dog123.txt", "foo/bar/dog456.txt"]
|
|
/// whereas,
|
|
/// list_prefixes("foo/bar/") = ["cat", "dog"]
|
|
/// See `test_real_s3.rs` for more details.
|
|
///
|
|
/// max_keys limits max number of keys returned; None means unlimited.
|
|
async fn list_files(
|
|
&self,
|
|
prefix: Option<&RemotePath>,
|
|
max_keys: Option<NonZeroU32>,
|
|
cancel: &CancellationToken,
|
|
) -> Result<Vec<RemotePath>, DownloadError> {
|
|
let result = self
|
|
.list(prefix, ListingMode::NoDelimiter, max_keys, cancel)
|
|
.await?
|
|
.keys;
|
|
Ok(result)
|
|
}
|
|
|
|
async fn list(
|
|
&self,
|
|
prefix: Option<&RemotePath>,
|
|
_mode: ListingMode,
|
|
max_keys: Option<NonZeroU32>,
|
|
cancel: &CancellationToken,
|
|
) -> Result<Listing, DownloadError>;
|
|
|
|
/// Streams the local file contents into remote into the remote storage entry.
|
|
///
|
|
/// If the operation fails because of timeout or cancellation, the root cause of the error will be
|
|
/// set to `TimeoutOrCancel`.
|
|
async fn upload(
|
|
&self,
|
|
from: impl Stream<Item = std::io::Result<Bytes>> + Send + Sync + 'static,
|
|
// S3 PUT request requires the content length to be specified,
|
|
// otherwise it starts to fail with the concurrent connection count increasing.
|
|
data_size_bytes: usize,
|
|
to: &RemotePath,
|
|
metadata: Option<StorageMetadata>,
|
|
cancel: &CancellationToken,
|
|
) -> anyhow::Result<()>;
|
|
|
|
/// Streams the remote storage entry contents.
|
|
///
|
|
/// The returned download stream will obey initial timeout and cancellation signal by erroring
|
|
/// on whichever happens first. Only one of the reasons will fail the stream, which is usually
|
|
/// enough for `tokio::io::copy_buf` usage. If needed the error can be filtered out.
|
|
///
|
|
/// Returns the metadata, if any was stored with the file previously.
|
|
async fn download(
|
|
&self,
|
|
from: &RemotePath,
|
|
cancel: &CancellationToken,
|
|
) -> Result<Download, DownloadError>;
|
|
|
|
/// Streams a given byte range of the remote storage entry contents.
|
|
///
|
|
/// The returned download stream will obey initial timeout and cancellation signal by erroring
|
|
/// on whichever happens first. Only one of the reasons will fail the stream, which is usually
|
|
/// enough for `tokio::io::copy_buf` usage. If needed the error can be filtered out.
|
|
///
|
|
/// Returns the metadata, if any was stored with the file previously.
|
|
async fn download_byte_range(
|
|
&self,
|
|
from: &RemotePath,
|
|
start_inclusive: u64,
|
|
end_exclusive: Option<u64>,
|
|
cancel: &CancellationToken,
|
|
) -> Result<Download, DownloadError>;
|
|
|
|
/// Delete a single path from remote storage.
|
|
///
|
|
/// If the operation fails because of timeout or cancellation, the root cause of the error will be
|
|
/// set to `TimeoutOrCancel`. In such situation it is unknown if the deletion went through.
|
|
async fn delete(&self, path: &RemotePath, cancel: &CancellationToken) -> anyhow::Result<()>;
|
|
|
|
/// Delete a multiple paths from remote storage.
|
|
///
|
|
/// If the operation fails because of timeout or cancellation, the root cause of the error will be
|
|
/// set to `TimeoutOrCancel`. In such situation it is unknown which deletions, if any, went
|
|
/// through.
|
|
async fn delete_objects<'a>(
|
|
&self,
|
|
paths: &'a [RemotePath],
|
|
cancel: &CancellationToken,
|
|
) -> anyhow::Result<()>;
|
|
|
|
/// Copy a remote object inside a bucket from one path to another.
|
|
async fn copy(
|
|
&self,
|
|
from: &RemotePath,
|
|
to: &RemotePath,
|
|
cancel: &CancellationToken,
|
|
) -> anyhow::Result<()>;
|
|
|
|
/// Resets the content of everything with the given prefix to the given state
|
|
async fn time_travel_recover(
|
|
&self,
|
|
prefix: Option<&RemotePath>,
|
|
timestamp: SystemTime,
|
|
done_if_after: SystemTime,
|
|
cancel: &CancellationToken,
|
|
) -> Result<(), TimeTravelError>;
|
|
}
|
|
|
|
/// DownloadStream is sensitive to the timeout and cancellation used with the original
|
|
/// [`RemoteStorage::download`] request. The type yields `std::io::Result<Bytes>` to be compatible
|
|
/// with `tokio::io::copy_buf`.
|
|
// This has 'static because safekeepers do not use cancellation tokens (yet)
|
|
pub type DownloadStream =
|
|
Pin<Box<dyn Stream<Item = std::io::Result<Bytes>> + Send + Sync + 'static>>;
|
|
|
|
pub struct Download {
|
|
pub download_stream: DownloadStream,
|
|
/// The last time the file was modified (`last-modified` HTTP header)
|
|
pub last_modified: Option<SystemTime>,
|
|
/// A way to identify this specific version of the resource (`etag` HTTP header)
|
|
pub etag: Option<String>,
|
|
/// Extra key-value data, associated with the current remote file.
|
|
pub metadata: Option<StorageMetadata>,
|
|
}
|
|
|
|
impl Debug for Download {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
f.debug_struct("Download")
|
|
.field("metadata", &self.metadata)
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
/// Every storage, currently supported.
|
|
/// Serves as a simple way to pass around the [`RemoteStorage`] without dealing with generics.
|
|
#[derive(Clone)]
|
|
// Require Clone for `Other` due to https://github.com/rust-lang/rust/issues/26925
|
|
pub enum GenericRemoteStorage<Other: Clone = Arc<UnreliableWrapper>> {
|
|
LocalFs(LocalFs),
|
|
AwsS3(Arc<S3Bucket>),
|
|
AzureBlob(Arc<AzureBlobStorage>),
|
|
Unreliable(Other),
|
|
}
|
|
|
|
impl<Other: RemoteStorage> GenericRemoteStorage<Arc<Other>> {
|
|
pub async fn list(
|
|
&self,
|
|
prefix: Option<&RemotePath>,
|
|
mode: ListingMode,
|
|
max_keys: Option<NonZeroU32>,
|
|
cancel: &CancellationToken,
|
|
) -> anyhow::Result<Listing, DownloadError> {
|
|
match self {
|
|
Self::LocalFs(s) => s.list(prefix, mode, max_keys, cancel).await,
|
|
Self::AwsS3(s) => s.list(prefix, mode, max_keys, cancel).await,
|
|
Self::AzureBlob(s) => s.list(prefix, mode, max_keys, cancel).await,
|
|
Self::Unreliable(s) => s.list(prefix, mode, max_keys, cancel).await,
|
|
}
|
|
}
|
|
|
|
// A function for listing all the files in a "directory"
|
|
// Example:
|
|
// list_files("foo/bar") = ["foo/bar/a.txt", "foo/bar/b.txt"]
|
|
//
|
|
// max_keys limits max number of keys returned; None means unlimited.
|
|
pub async fn list_files(
|
|
&self,
|
|
folder: Option<&RemotePath>,
|
|
max_keys: Option<NonZeroU32>,
|
|
cancel: &CancellationToken,
|
|
) -> Result<Vec<RemotePath>, DownloadError> {
|
|
match self {
|
|
Self::LocalFs(s) => s.list_files(folder, max_keys, cancel).await,
|
|
Self::AwsS3(s) => s.list_files(folder, max_keys, cancel).await,
|
|
Self::AzureBlob(s) => s.list_files(folder, max_keys, cancel).await,
|
|
Self::Unreliable(s) => s.list_files(folder, max_keys, cancel).await,
|
|
}
|
|
}
|
|
|
|
// lists common *prefixes*, if any of files
|
|
// Example:
|
|
// list_prefixes("foo123","foo567","bar123","bar432") = ["foo", "bar"]
|
|
pub async fn list_prefixes(
|
|
&self,
|
|
prefix: Option<&RemotePath>,
|
|
cancel: &CancellationToken,
|
|
) -> Result<Vec<RemotePath>, DownloadError> {
|
|
match self {
|
|
Self::LocalFs(s) => s.list_prefixes(prefix, cancel).await,
|
|
Self::AwsS3(s) => s.list_prefixes(prefix, cancel).await,
|
|
Self::AzureBlob(s) => s.list_prefixes(prefix, cancel).await,
|
|
Self::Unreliable(s) => s.list_prefixes(prefix, cancel).await,
|
|
}
|
|
}
|
|
|
|
/// See [`RemoteStorage::upload`]
|
|
pub async fn upload(
|
|
&self,
|
|
from: impl Stream<Item = std::io::Result<Bytes>> + Send + Sync + 'static,
|
|
data_size_bytes: usize,
|
|
to: &RemotePath,
|
|
metadata: Option<StorageMetadata>,
|
|
cancel: &CancellationToken,
|
|
) -> anyhow::Result<()> {
|
|
match self {
|
|
Self::LocalFs(s) => s.upload(from, data_size_bytes, to, metadata, cancel).await,
|
|
Self::AwsS3(s) => s.upload(from, data_size_bytes, to, metadata, cancel).await,
|
|
Self::AzureBlob(s) => s.upload(from, data_size_bytes, to, metadata, cancel).await,
|
|
Self::Unreliable(s) => s.upload(from, data_size_bytes, to, metadata, cancel).await,
|
|
}
|
|
}
|
|
|
|
pub async fn download(
|
|
&self,
|
|
from: &RemotePath,
|
|
cancel: &CancellationToken,
|
|
) -> Result<Download, DownloadError> {
|
|
match self {
|
|
Self::LocalFs(s) => s.download(from, cancel).await,
|
|
Self::AwsS3(s) => s.download(from, cancel).await,
|
|
Self::AzureBlob(s) => s.download(from, cancel).await,
|
|
Self::Unreliable(s) => s.download(from, cancel).await,
|
|
}
|
|
}
|
|
|
|
pub async fn download_byte_range(
|
|
&self,
|
|
from: &RemotePath,
|
|
start_inclusive: u64,
|
|
end_exclusive: Option<u64>,
|
|
cancel: &CancellationToken,
|
|
) -> Result<Download, DownloadError> {
|
|
match self {
|
|
Self::LocalFs(s) => {
|
|
s.download_byte_range(from, start_inclusive, end_exclusive, cancel)
|
|
.await
|
|
}
|
|
Self::AwsS3(s) => {
|
|
s.download_byte_range(from, start_inclusive, end_exclusive, cancel)
|
|
.await
|
|
}
|
|
Self::AzureBlob(s) => {
|
|
s.download_byte_range(from, start_inclusive, end_exclusive, cancel)
|
|
.await
|
|
}
|
|
Self::Unreliable(s) => {
|
|
s.download_byte_range(from, start_inclusive, end_exclusive, cancel)
|
|
.await
|
|
}
|
|
}
|
|
}
|
|
|
|
/// See [`RemoteStorage::delete`]
|
|
pub async fn delete(
|
|
&self,
|
|
path: &RemotePath,
|
|
cancel: &CancellationToken,
|
|
) -> anyhow::Result<()> {
|
|
match self {
|
|
Self::LocalFs(s) => s.delete(path, cancel).await,
|
|
Self::AwsS3(s) => s.delete(path, cancel).await,
|
|
Self::AzureBlob(s) => s.delete(path, cancel).await,
|
|
Self::Unreliable(s) => s.delete(path, cancel).await,
|
|
}
|
|
}
|
|
|
|
/// See [`RemoteStorage::delete_objects`]
|
|
pub async fn delete_objects(
|
|
&self,
|
|
paths: &[RemotePath],
|
|
cancel: &CancellationToken,
|
|
) -> anyhow::Result<()> {
|
|
match self {
|
|
Self::LocalFs(s) => s.delete_objects(paths, cancel).await,
|
|
Self::AwsS3(s) => s.delete_objects(paths, cancel).await,
|
|
Self::AzureBlob(s) => s.delete_objects(paths, cancel).await,
|
|
Self::Unreliable(s) => s.delete_objects(paths, cancel).await,
|
|
}
|
|
}
|
|
|
|
/// See [`RemoteStorage::copy`]
|
|
pub async fn copy_object(
|
|
&self,
|
|
from: &RemotePath,
|
|
to: &RemotePath,
|
|
cancel: &CancellationToken,
|
|
) -> anyhow::Result<()> {
|
|
match self {
|
|
Self::LocalFs(s) => s.copy(from, to, cancel).await,
|
|
Self::AwsS3(s) => s.copy(from, to, cancel).await,
|
|
Self::AzureBlob(s) => s.copy(from, to, cancel).await,
|
|
Self::Unreliable(s) => s.copy(from, to, cancel).await,
|
|
}
|
|
}
|
|
|
|
/// See [`RemoteStorage::time_travel_recover`].
|
|
pub async fn time_travel_recover(
|
|
&self,
|
|
prefix: Option<&RemotePath>,
|
|
timestamp: SystemTime,
|
|
done_if_after: SystemTime,
|
|
cancel: &CancellationToken,
|
|
) -> Result<(), TimeTravelError> {
|
|
match self {
|
|
Self::LocalFs(s) => {
|
|
s.time_travel_recover(prefix, timestamp, done_if_after, cancel)
|
|
.await
|
|
}
|
|
Self::AwsS3(s) => {
|
|
s.time_travel_recover(prefix, timestamp, done_if_after, cancel)
|
|
.await
|
|
}
|
|
Self::AzureBlob(s) => {
|
|
s.time_travel_recover(prefix, timestamp, done_if_after, cancel)
|
|
.await
|
|
}
|
|
Self::Unreliable(s) => {
|
|
s.time_travel_recover(prefix, timestamp, done_if_after, cancel)
|
|
.await
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl GenericRemoteStorage {
|
|
pub fn from_config(storage_config: &RemoteStorageConfig) -> anyhow::Result<Self> {
|
|
let timeout = storage_config.timeout;
|
|
Ok(match &storage_config.storage {
|
|
RemoteStorageKind::LocalFs(path) => {
|
|
info!("Using fs root '{path}' as a remote storage");
|
|
Self::LocalFs(LocalFs::new(path.clone(), timeout)?)
|
|
}
|
|
RemoteStorageKind::AwsS3(s3_config) => {
|
|
// The profile and access key id are only printed here for debugging purposes,
|
|
// their values don't indicate the eventually taken choice for auth.
|
|
let profile = std::env::var("AWS_PROFILE").unwrap_or_else(|_| "<none>".into());
|
|
let access_key_id =
|
|
std::env::var("AWS_ACCESS_KEY_ID").unwrap_or_else(|_| "<none>".into());
|
|
info!("Using s3 bucket '{}' in region '{}' as a remote storage, prefix in bucket: '{:?}', bucket endpoint: '{:?}', profile: {profile}, access_key_id: {access_key_id}",
|
|
s3_config.bucket_name, s3_config.bucket_region, s3_config.prefix_in_bucket, s3_config.endpoint);
|
|
Self::AwsS3(Arc::new(S3Bucket::new(s3_config, timeout)?))
|
|
}
|
|
RemoteStorageKind::AzureContainer(azure_config) => {
|
|
info!("Using azure container '{}' in region '{}' as a remote storage, prefix in container: '{:?}'",
|
|
azure_config.container_name, azure_config.container_region, azure_config.prefix_in_container);
|
|
Self::AzureBlob(Arc::new(AzureBlobStorage::new(azure_config, timeout)?))
|
|
}
|
|
})
|
|
}
|
|
|
|
pub fn unreliable_wrapper(s: Self, fail_first: u64) -> Self {
|
|
Self::Unreliable(Arc::new(UnreliableWrapper::new(s, fail_first)))
|
|
}
|
|
|
|
/// See [`RemoteStorage::upload`], which this method calls with `None` as metadata.
|
|
pub async fn upload_storage_object(
|
|
&self,
|
|
from: impl Stream<Item = std::io::Result<Bytes>> + Send + Sync + 'static,
|
|
from_size_bytes: usize,
|
|
to: &RemotePath,
|
|
cancel: &CancellationToken,
|
|
) -> anyhow::Result<()> {
|
|
self.upload(from, from_size_bytes, to, None, cancel)
|
|
.await
|
|
.with_context(|| {
|
|
format!("Failed to upload data of length {from_size_bytes} to storage path {to:?}")
|
|
})
|
|
}
|
|
|
|
/// Downloads the storage object into the `to_path` provided.
|
|
/// `byte_range` could be specified to dowload only a part of the file, if needed.
|
|
pub async fn download_storage_object(
|
|
&self,
|
|
byte_range: Option<(u64, Option<u64>)>,
|
|
from: &RemotePath,
|
|
cancel: &CancellationToken,
|
|
) -> Result<Download, DownloadError> {
|
|
match byte_range {
|
|
Some((start, end)) => self.download_byte_range(from, start, end, cancel).await,
|
|
None => self.download(from, cancel).await,
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Extra set of key-value pairs that contain arbitrary metadata about the storage entry.
|
|
/// Immutable, cannot be changed once the file is created.
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
pub struct StorageMetadata(HashMap<String, String>);
|
|
|
|
/// External backup storage configuration, enough for creating a client for that storage.
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
pub struct RemoteStorageConfig {
|
|
/// The storage connection configuration.
|
|
pub storage: RemoteStorageKind,
|
|
/// A common timeout enforced for all requests after concurrency limiter permit has been
|
|
/// acquired.
|
|
pub timeout: Duration,
|
|
}
|
|
|
|
/// A kind of a remote storage to connect to, with its connection configuration.
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
pub enum RemoteStorageKind {
|
|
/// Storage based on local file system.
|
|
/// Specify a root folder to place all stored files into.
|
|
LocalFs(Utf8PathBuf),
|
|
/// AWS S3 based storage, storing all files in the S3 bucket
|
|
/// specified by the config
|
|
AwsS3(S3Config),
|
|
/// Azure Blob based storage, storing all files in the container
|
|
/// specified by the config
|
|
AzureContainer(AzureConfig),
|
|
}
|
|
|
|
/// AWS S3 bucket coordinates and access credentials to manage the bucket contents (read and write).
|
|
#[derive(Clone, PartialEq, Eq)]
|
|
pub struct S3Config {
|
|
/// Name of the bucket to connect to.
|
|
pub bucket_name: String,
|
|
/// The region where the bucket is located at.
|
|
pub bucket_region: String,
|
|
/// A "subfolder" in the bucket, to use the same bucket separately by multiple remote storage users at once.
|
|
pub prefix_in_bucket: Option<String>,
|
|
/// A base URL to send S3 requests to.
|
|
/// By default, the endpoint is derived from a region name, assuming it's
|
|
/// an AWS S3 region name, erroring on wrong region name.
|
|
/// Endpoint provides a way to support other S3 flavors and their regions.
|
|
///
|
|
/// Example: `http://127.0.0.1:5000`
|
|
pub endpoint: Option<String>,
|
|
/// AWS S3 has various limits on its API calls, we need not to exceed those.
|
|
/// See [`DEFAULT_REMOTE_STORAGE_S3_CONCURRENCY_LIMIT`] for more details.
|
|
pub concurrency_limit: NonZeroUsize,
|
|
pub max_keys_per_list_response: Option<i32>,
|
|
}
|
|
|
|
impl Debug for S3Config {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
f.debug_struct("S3Config")
|
|
.field("bucket_name", &self.bucket_name)
|
|
.field("bucket_region", &self.bucket_region)
|
|
.field("prefix_in_bucket", &self.prefix_in_bucket)
|
|
.field("concurrency_limit", &self.concurrency_limit)
|
|
.field(
|
|
"max_keys_per_list_response",
|
|
&self.max_keys_per_list_response,
|
|
)
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
/// Azure bucket coordinates and access credentials to manage the bucket contents (read and write).
|
|
#[derive(Clone, PartialEq, Eq)]
|
|
pub struct AzureConfig {
|
|
/// Name of the container to connect to.
|
|
pub container_name: String,
|
|
/// The region where the bucket is located at.
|
|
pub container_region: String,
|
|
/// A "subfolder" in the container, to use the same container separately by multiple remote storage users at once.
|
|
pub prefix_in_container: Option<String>,
|
|
/// Azure has various limits on its API calls, we need not to exceed those.
|
|
/// See [`DEFAULT_REMOTE_STORAGE_AZURE_CONCURRENCY_LIMIT`] for more details.
|
|
pub concurrency_limit: NonZeroUsize,
|
|
pub max_keys_per_list_response: Option<i32>,
|
|
}
|
|
|
|
impl Debug for AzureConfig {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
f.debug_struct("AzureConfig")
|
|
.field("bucket_name", &self.container_name)
|
|
.field("bucket_region", &self.container_region)
|
|
.field("prefix_in_bucket", &self.prefix_in_container)
|
|
.field("concurrency_limit", &self.concurrency_limit)
|
|
.field(
|
|
"max_keys_per_list_response",
|
|
&self.max_keys_per_list_response,
|
|
)
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
impl RemoteStorageConfig {
|
|
pub const DEFAULT_TIMEOUT: Duration = std::time::Duration::from_secs(120);
|
|
|
|
pub fn from_toml(toml: &toml_edit::Item) -> anyhow::Result<Option<RemoteStorageConfig>> {
|
|
let local_path = toml.get("local_path");
|
|
let bucket_name = toml.get("bucket_name");
|
|
let bucket_region = toml.get("bucket_region");
|
|
let container_name = toml.get("container_name");
|
|
let container_region = toml.get("container_region");
|
|
|
|
let use_azure = container_name.is_some() && container_region.is_some();
|
|
|
|
let default_concurrency_limit = if use_azure {
|
|
DEFAULT_REMOTE_STORAGE_AZURE_CONCURRENCY_LIMIT
|
|
} else {
|
|
DEFAULT_REMOTE_STORAGE_S3_CONCURRENCY_LIMIT
|
|
};
|
|
let concurrency_limit = NonZeroUsize::new(
|
|
parse_optional_integer("concurrency_limit", toml)?.unwrap_or(default_concurrency_limit),
|
|
)
|
|
.context("Failed to parse 'concurrency_limit' as a positive integer")?;
|
|
|
|
let max_keys_per_list_response =
|
|
parse_optional_integer::<i32, _>("max_keys_per_list_response", toml)
|
|
.context("Failed to parse 'max_keys_per_list_response' as a positive integer")?
|
|
.or(DEFAULT_MAX_KEYS_PER_LIST_RESPONSE);
|
|
|
|
let endpoint = toml
|
|
.get("endpoint")
|
|
.map(|endpoint| parse_toml_string("endpoint", endpoint))
|
|
.transpose()?;
|
|
|
|
let timeout = toml
|
|
.get("timeout")
|
|
.map(|timeout| {
|
|
timeout
|
|
.as_str()
|
|
.ok_or_else(|| anyhow::Error::msg("timeout was not a string"))
|
|
})
|
|
.transpose()
|
|
.and_then(|timeout| {
|
|
timeout
|
|
.map(humantime::parse_duration)
|
|
.transpose()
|
|
.map_err(anyhow::Error::new)
|
|
})
|
|
.context("parse timeout")?
|
|
.unwrap_or(Self::DEFAULT_TIMEOUT);
|
|
|
|
if timeout < Duration::from_secs(1) {
|
|
bail!("timeout was specified as {timeout:?} which is too low");
|
|
}
|
|
|
|
let storage = match (
|
|
local_path,
|
|
bucket_name,
|
|
bucket_region,
|
|
container_name,
|
|
container_region,
|
|
) {
|
|
// no 'local_path' nor 'bucket_name' options are provided, consider this remote storage disabled
|
|
(None, None, None, None, None) => return Ok(None),
|
|
(_, Some(_), None, ..) => {
|
|
bail!("'bucket_region' option is mandatory if 'bucket_name' is given ")
|
|
}
|
|
(_, None, Some(_), ..) => {
|
|
bail!("'bucket_name' option is mandatory if 'bucket_region' is given ")
|
|
}
|
|
(None, Some(bucket_name), Some(bucket_region), ..) => {
|
|
RemoteStorageKind::AwsS3(S3Config {
|
|
bucket_name: parse_toml_string("bucket_name", bucket_name)?,
|
|
bucket_region: parse_toml_string("bucket_region", bucket_region)?,
|
|
prefix_in_bucket: toml
|
|
.get("prefix_in_bucket")
|
|
.map(|prefix_in_bucket| {
|
|
parse_toml_string("prefix_in_bucket", prefix_in_bucket)
|
|
})
|
|
.transpose()?,
|
|
endpoint,
|
|
concurrency_limit,
|
|
max_keys_per_list_response,
|
|
})
|
|
}
|
|
(_, _, _, Some(_), None) => {
|
|
bail!("'container_name' option is mandatory if 'container_region' is given ")
|
|
}
|
|
(_, _, _, None, Some(_)) => {
|
|
bail!("'container_name' option is mandatory if 'container_region' is given ")
|
|
}
|
|
(None, None, None, Some(container_name), Some(container_region)) => {
|
|
RemoteStorageKind::AzureContainer(AzureConfig {
|
|
container_name: parse_toml_string("container_name", container_name)?,
|
|
container_region: parse_toml_string("container_region", container_region)?,
|
|
prefix_in_container: toml
|
|
.get("prefix_in_container")
|
|
.map(|prefix_in_container| {
|
|
parse_toml_string("prefix_in_container", prefix_in_container)
|
|
})
|
|
.transpose()?,
|
|
concurrency_limit,
|
|
max_keys_per_list_response,
|
|
})
|
|
}
|
|
(Some(local_path), None, None, None, None) => RemoteStorageKind::LocalFs(
|
|
Utf8PathBuf::from(parse_toml_string("local_path", local_path)?),
|
|
),
|
|
(Some(_), Some(_), ..) => {
|
|
bail!("'local_path' and 'bucket_name' are mutually exclusive")
|
|
}
|
|
(Some(_), _, _, Some(_), Some(_)) => {
|
|
bail!("local_path and 'container_name' are mutually exclusive")
|
|
}
|
|
};
|
|
|
|
Ok(Some(RemoteStorageConfig { storage, timeout }))
|
|
}
|
|
}
|
|
|
|
// Helper functions to parse a toml Item
|
|
fn parse_optional_integer<I, E>(name: &str, item: &toml_edit::Item) -> anyhow::Result<Option<I>>
|
|
where
|
|
I: TryFrom<i64, Error = E>,
|
|
E: std::error::Error + Send + Sync + 'static,
|
|
{
|
|
let toml_integer = match item.get(name) {
|
|
Some(item) => item
|
|
.as_integer()
|
|
.with_context(|| format!("configure option {name} is not an integer"))?,
|
|
None => return Ok(None),
|
|
};
|
|
|
|
I::try_from(toml_integer)
|
|
.map(Some)
|
|
.with_context(|| format!("configure option {name} is too large"))
|
|
}
|
|
|
|
fn parse_toml_string(name: &str, item: &Item) -> anyhow::Result<String> {
|
|
let s = item
|
|
.as_str()
|
|
.with_context(|| format!("configure option {name} is not a string"))?;
|
|
Ok(s.to_string())
|
|
}
|
|
|
|
struct ConcurrencyLimiter {
|
|
// Every request to S3 can be throttled or cancelled, if a certain number of requests per second is exceeded.
|
|
// Same goes to IAM, which is queried before every S3 request, if enabled. IAM has even lower RPS threshold.
|
|
// The helps to ensure we don't exceed the thresholds.
|
|
write: Arc<Semaphore>,
|
|
read: Arc<Semaphore>,
|
|
}
|
|
|
|
impl ConcurrencyLimiter {
|
|
fn for_kind(&self, kind: RequestKind) -> &Arc<Semaphore> {
|
|
match kind {
|
|
RequestKind::Get => &self.read,
|
|
RequestKind::Put => &self.write,
|
|
RequestKind::List => &self.read,
|
|
RequestKind::Delete => &self.write,
|
|
RequestKind::Copy => &self.write,
|
|
RequestKind::TimeTravel => &self.write,
|
|
}
|
|
}
|
|
|
|
async fn acquire(
|
|
&self,
|
|
kind: RequestKind,
|
|
) -> Result<tokio::sync::SemaphorePermit<'_>, tokio::sync::AcquireError> {
|
|
self.for_kind(kind).acquire().await
|
|
}
|
|
|
|
async fn acquire_owned(
|
|
&self,
|
|
kind: RequestKind,
|
|
) -> Result<tokio::sync::OwnedSemaphorePermit, tokio::sync::AcquireError> {
|
|
Arc::clone(self.for_kind(kind)).acquire_owned().await
|
|
}
|
|
|
|
fn new(limit: usize) -> ConcurrencyLimiter {
|
|
Self {
|
|
read: Arc::new(Semaphore::new(limit)),
|
|
write: Arc::new(Semaphore::new(limit)),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_object_name() {
|
|
let k = RemotePath::new(Utf8Path::new("a/b/c")).unwrap();
|
|
assert_eq!(k.object_name(), Some("c"));
|
|
|
|
let k = RemotePath::new(Utf8Path::new("a/b/c/")).unwrap();
|
|
assert_eq!(k.object_name(), Some("c"));
|
|
|
|
let k = RemotePath::new(Utf8Path::new("a/")).unwrap();
|
|
assert_eq!(k.object_name(), Some("a"));
|
|
|
|
// XXX is it impossible to have an empty key?
|
|
let k = RemotePath::new(Utf8Path::new("")).unwrap();
|
|
assert_eq!(k.object_name(), None);
|
|
}
|
|
|
|
#[test]
|
|
fn rempte_path_cannot_be_created_from_absolute_ones() {
|
|
let err = RemotePath::new(Utf8Path::new("/")).expect_err("Should fail on absolute paths");
|
|
assert_eq!(err.to_string(), "Path \"/\" is not relative");
|
|
}
|
|
|
|
#[test]
|
|
fn parse_localfs_config_with_timeout() {
|
|
let input = "local_path = '.'
|
|
timeout = '5s'";
|
|
|
|
let toml = input.parse::<toml_edit::Document>().unwrap();
|
|
|
|
let config = RemoteStorageConfig::from_toml(toml.as_item())
|
|
.unwrap()
|
|
.expect("it exists");
|
|
|
|
assert_eq!(
|
|
config,
|
|
RemoteStorageConfig {
|
|
storage: RemoteStorageKind::LocalFs(Utf8PathBuf::from(".")),
|
|
timeout: Duration::from_secs(5)
|
|
}
|
|
);
|
|
}
|
|
}
|