You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2021/01/07 02:03:44 UTC

[iceberg] branch master updated (74bb38d -> ef570ef)

This is an automated email from the ASF dual-hosted git repository.

blue pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git.


    from 74bb38d  Spark: Add a rule to align updates in MERGE operations (#1986)
     add ef570ef  AWS: add DynamoDB implementation of Glue lock manager (#2034)

No new revisions were added by this update.

Summary of changes:
 .../iceberg/aws/glue/DynamoLockManagerTest.java    | 213 ++++++++++++
 .../iceberg/aws/glue/GlueCatalogLockTest.java      | 143 ++++++++
 .../iceberg/aws/AssumeRoleAwsClientFactory.java    |   6 +
 .../org/apache/iceberg/aws/AwsClientFactories.java |   6 +
 .../org/apache/iceberg/aws/AwsClientFactory.java   |   7 +
 .../apache/iceberg/aws/glue/DynamoLockManager.java | 373 +++++++++++++++++++++
 .../org/apache/iceberg/aws/glue/LockManager.java   |   5 +-
 .../apache/iceberg/aws/AwsClientFactoriesTest.java |   6 +
 build.gradle                                       |   1 +
 9 files changed, 759 insertions(+), 1 deletion(-)
 create mode 100644 aws/src/integration/java/org/apache/iceberg/aws/glue/DynamoLockManagerTest.java
 create mode 100644 aws/src/integration/java/org/apache/iceberg/aws/glue/GlueCatalogLockTest.java
 create mode 100644 aws/src/main/java/org/apache/iceberg/aws/glue/DynamoLockManager.java