alamb commented on code in PR #4918:
URL: https://github.com/apache/arrow-rs/pull/4918#discussion_r1362817646


##########
object_store/src/aws/dynamo.rs:
##########
@@ -0,0 +1,416 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+//! A DynamoDB based lock system
+
+use crate::aws::client::S3Client;
+use crate::aws::credential::CredentialExt;
+use crate::client::get::GetClientExt;
+use crate::client::retry::Error as RetryError;
+use crate::client::retry::RetryExt;
+use crate::path::Path;
+use crate::{Error, GetOptions, Result};
+use chrono::Utc;
+use reqwest::StatusCode;
+use serde::ser::SerializeMap;
+use serde::{Deserialize, Serialize, Serializer};
+use std::collections::HashMap;
+use std::time::{Duration, Instant};
+
+/// The exception returned by DynamoDB on conflict
+const CONFLICT: &str = 
"com.amazonaws.dynamodb.v20120810#ConditionalCheckFailedException";
+
+/// A DynamoDB-based commit protocol, used to provide conditional write 
support for S3
+///
+/// ## Limitations
+///
+/// Only conditional operations, e.g. `copy_if_not_exists` will be 
synchronized, and can
+/// therefore race with non-conditional operations, e.g. `put`, `copy`, or 
conditional
+/// operations performed by writers not configured to synchronize with 
DynamoDB.
+///
+/// Workloads making use of this mechanism **must** ensure:
+///
+/// * Conditional and non-conditional operations are not performed on the same 
paths
+/// * Conditional operations are only performed via similarly configured 
clients
+///
+/// Additionally as the locking mechanism relies on timeouts to detect stale 
locks,
+/// performance will be poor for systems that frequently rewrite the same 
path, instead
+/// being optimised for systems that primarily create files with paths never 
used before.
+///
+/// ## Commit Protocol
+///
+/// The DynamoDB schema is as follows:
+///
+/// * A string hash key named `"key"`
+/// * A numeric [TTL] attribute named `"ttl"`
+/// * A numeric attribute named `"generation"`
+/// * A numeric attribute named `"timeout"`
+///
+/// To perform a conditional operation on an object with a given `path` and 
`etag` (if exists),
+/// the commit protocol is as follows:
+///
+/// 1. Perform HEAD request on `path` and error on precondition mismatch
+/// 2. Create record in DynamoDB with key `{path}#{etag}` with the configured 
timeout
+///     1. On Success: Perform operation with the configured timeout
+///     2. On Conflict:
+///         1. Periodically re-perform HEAD request on `path` and error on 
precondition mismatch
+///         2. If etag changed, GOTO 2.
+///         3. If `timeout * max_skew_rate` passed, replace the record 
incrementing the `"generation"`
+///             1. On Success: GOTO 2.1
+///             2. On Conflict: GOTO 2.2
+///
+/// Provided no writer modifies an object with a given `path` and `etag` 
without first adding a
+/// corresponding record to DynamoDB, we are guaranteed that only one writer 
will ever commit.
+///
+/// This is inspired by the [DynamoDB Lock Client] but simplified for the more 
limited
+/// requirements of synchronizing object storage. The major changes are:
+///
+/// * Uses a monotonic generation count instead of a UUID rvn, as this is:
+///     * Cheaper to generate, serialize and compare
+///     * Cannot collide
+///     * More human readable / interpretable
+/// * Relies on [TTL] to eventually clean up old locks
+///
+/// It also draws inspiration from the DeltaLake [S3 Multi-Cluster] commit 
protocol, but
+/// generalised to not make assumptions about the workload and not rely on 
first writing
+/// to a temporary path.
+///
+/// [TTL]: 
https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/howitworks-ttl.html
+/// [DynamoDB Lock Client]: 
https://aws.amazon.com/blogs/database/building-distributed-locks-with-the-dynamodb-lock-client/
+/// [S3 Multi-Cluster]: 
https://docs.google.com/document/d/1Gs4ZsTH19lMxth4BSdwlWjUNR-XhKHicDvBjd2RqNd8/edit#heading=h.mjjuxw9mcz9h
+#[derive(Debug, Clone)]
+pub struct DynamoCommit {
+    table_name: String,
+    /// The number of seconds a lease is valid for
+    timeout: usize,
+    /// The maximum clock skew rate tolerated by the system
+    max_clock_skew_rate: u32,
+    /// The length of time a record will be retained in DynamoDB before being 
cleaned up
+    ///
+    /// This is purely an optimisation to avoid indefinite growth of the 
DynamoDB table

Review Comment:
   👍 



##########
object_store/src/aws/dynamo.rs:
##########
@@ -0,0 +1,416 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+//! A DynamoDB based lock system
+
+use crate::aws::client::S3Client;
+use crate::aws::credential::CredentialExt;
+use crate::client::get::GetClientExt;
+use crate::client::retry::Error as RetryError;
+use crate::client::retry::RetryExt;
+use crate::path::Path;
+use crate::{Error, GetOptions, Result};
+use chrono::Utc;
+use reqwest::StatusCode;
+use serde::ser::SerializeMap;
+use serde::{Deserialize, Serialize, Serializer};
+use std::collections::HashMap;
+use std::time::{Duration, Instant};
+
+/// The exception returned by DynamoDB on conflict
+const CONFLICT: &str = 
"com.amazonaws.dynamodb.v20120810#ConditionalCheckFailedException";
+
+/// A DynamoDB-based commit protocol, used to provide conditional write 
support for S3
+///
+/// ## Limitations
+///
+/// Only conditional operations, e.g. `copy_if_not_exists` will be 
synchronized, and can
+/// therefore race with non-conditional operations, e.g. `put`, `copy`, or 
conditional
+/// operations performed by writers not configured to synchronize with 
DynamoDB.
+///
+/// Workloads making use of this mechanism **must** ensure:
+///
+/// * Conditional and non-conditional operations are not performed on the same 
paths
+/// * Conditional operations are only performed via similarly configured 
clients
+///
+/// Additionally as the locking mechanism relies on timeouts to detect stale 
locks,
+/// performance will be poor for systems that frequently rewrite the same 
path, instead
+/// being optimised for systems that primarily create files with paths never 
used before.
+///
+/// ## Commit Protocol
+///
+/// The DynamoDB schema is as follows:
+///
+/// * A string hash key named `"key"`
+/// * A numeric [TTL] attribute named `"ttl"`
+/// * A numeric attribute named `"generation"`
+/// * A numeric attribute named `"timeout"`
+///
+/// To perform a conditional operation on an object with a given `path` and 
`etag` (if exists),
+/// the commit protocol is as follows:
+///
+/// 1. Perform HEAD request on `path` and error on precondition mismatch
+/// 2. Create record in DynamoDB with key `{path}#{etag}` with the configured 
timeout
+///     1. On Success: Perform operation with the configured timeout
+///     2. On Conflict:
+///         1. Periodically re-perform HEAD request on `path` and error on 
precondition mismatch
+///         2. If etag changed, GOTO 2.
+///         3. If `timeout * max_skew_rate` passed, replace the record 
incrementing the `"generation"`
+///             1. On Success: GOTO 2.1
+///             2. On Conflict: GOTO 2.2
+///
+/// Provided no writer modifies an object with a given `path` and `etag` 
without first adding a
+/// corresponding record to DynamoDB, we are guaranteed that only one writer 
will ever commit.
+///
+/// This is inspired by the [DynamoDB Lock Client] but simplified for the more 
limited
+/// requirements of synchronizing object storage. The major changes are:
+///
+/// * Uses a monotonic generation count instead of a UUID rvn, as this is:
+///     * Cheaper to generate, serialize and compare
+///     * Cannot collide
+///     * More human readable / interpretable
+/// * Relies on [TTL] to eventually clean up old locks
+///
+/// It also draws inspiration from the DeltaLake [S3 Multi-Cluster] commit 
protocol, but
+/// generalised to not make assumptions about the workload and not rely on 
first writing
+/// to a temporary path.
+///
+/// [TTL]: 
https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/howitworks-ttl.html
+/// [DynamoDB Lock Client]: 
https://aws.amazon.com/blogs/database/building-distributed-locks-with-the-dynamodb-lock-client/
+/// [S3 Multi-Cluster]: 
https://docs.google.com/document/d/1Gs4ZsTH19lMxth4BSdwlWjUNR-XhKHicDvBjd2RqNd8/edit#heading=h.mjjuxw9mcz9h
+#[derive(Debug, Clone)]
+pub struct DynamoCommit {
+    table_name: String,
+    /// The number of seconds a lease is valid for
+    timeout: usize,
+    /// The maximum clock skew rate tolerated by the system
+    max_clock_skew_rate: u32,
+    /// The length of time a record will be retained in DynamoDB before being 
cleaned up
+    ///
+    /// This is purely an optimisation to avoid indefinite growth of the 
DynamoDB table

Review Comment:
   👍 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to