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

ashvin pushed a change to branch 652-generic-internal-file-representation
in repository https://gitbox.apache.org/repos/asf/incubator-xtable.git


    omit 6a21d143 Refactor rename
    omit 05c3b8c3 Address review comments
    omit b43845ac Fix test cases
    omit b88f625d Replace Internal data files in partition groups
    omit fabd225e Add base representation of storage files
     add f194f4cb [590] Add Hudi HMS Catalog Sync Implementation
     add 03e5b022 [590] Add Hudi Glue Catalog Sync Implementation
     add dc209962 Add change proposal for conversion of deletion vectors
     add 66a2b865 Add base representation of storage files

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (6a21d143)
            \
             N -- N -- N   refs/heads/652-generic-internal-file-representation 
(66a2b865)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 rfc/rfc-2/2 - Deletion Info Conversion.md          | 227 +++++++++
 .../java/org/apache/xtable/model/TableChange.java  |   4 +-
 .../org/apache/xtable/model/storage/FilesDiff.java |   6 +-
 .../xtable/model/storage/InternalDataFile.java     |   2 +-
 ...{InternalStorageFile.java => InternalFile.java} |   2 +-
 ...torageFilesDiff.java => InternalFilesDiff.java} |   8 +-
 .../xtable/model/storage/PartitionFileGroup.java   |   4 +-
 .../apache/xtable/spi/sync/ConversionTarget.java   |   6 +-
 .../xtable/model/storage/TestDataFilesDiff.java    |   8 +-
 .../apache/xtable/model/storage/TestFilesDiff.java |   2 +-
 .../spi/extractor/TestExtractFromSource.java       |  10 +-
 .../xtable/spi/sync/TestTableFormatSync.java       |  52 +--
 xtable-aws/pom.xml                                 |   8 +
 .../org/apache/xtable/glue/GlueCatalogConfig.java  |  11 +
 .../xtable/glue/GlueCatalogConversionSource.java   |  22 +-
 .../glue/GlueCatalogPartitionSyncOperations.java   | 331 +++++++++++++
 .../apache/xtable/glue/GlueCatalogSyncClient.java  |  38 +-
 .../glue/GlueCatalogTableBuilderFactory.java       |   5 +-
 .../apache/xtable/glue/GlueCatalogTableUtils.java  |  56 +++
 .../apache/xtable/glue/GlueSchemaExtractor.java    |   2 +-
 .../glue/table/HudiGlueCatalogTableBuilder.java    | 185 ++++++++
 .../xtable/glue/GlueCatalogSyncTestBase.java       |   7 +
 .../TestGlueCatalogPartitionSyncOperations.java    | 519 +++++++++++++++++++++
 .../xtable/glue/TestGlueCatalogSyncClient.java     |  87 +++-
 .../table/TestHudiGlueCatalogTableBuilder.java     | 125 +++++
 .../apache/xtable/delta/DeltaConversionSource.java |   8 +-
 .../apache/xtable/delta/DeltaConversionTarget.java |   6 +-
 .../delta/DeltaDataFileUpdatesExtractor.java       |  18 +-
 .../xtable/hudi/BaseFileUpdatesExtractor.java      |  15 +-
 .../apache/xtable/hudi/HudiConversionTarget.java   |   6 +-
 .../apache/xtable/hudi/HudiDataFileExtractor.java  |   6 +-
 ...va => HudiCatalogTablePropertiesExtractor.java} |  50 +-
 .../xtable/iceberg/IcebergConversionSource.java    |   6 +-
 .../xtable/iceberg/IcebergConversionTarget.java    |   6 +-
 .../xtable/iceberg/IcebergDataFileUpdatesSync.java |  16 +-
 .../apache/xtable/hudi/ITHudiConversionTarget.java |  14 +-
 .../xtable/hudi/TestBaseFileUpdatesExtractor.java  |   6 +-
 .../xtable/hudi/TestHudiConversionTarget.java      |   4 +-
 ...> TestHudiCatalogTablePropertiesExtractor.java} |  58 ++-
 xtable-hive-metastore/pom.xml                      |   8 +
 .../org/apache/xtable/hms/HMSCatalogConfig.java    |  11 +
 .../hms/HMSCatalogPartitionSyncOperations.java     | 221 +++++++++
 .../apache/xtable/hms/HMSCatalogSyncClient.java    |  22 +-
 .../xtable/hms/HMSCatalogTableBuilderFactory.java  |   7 +-
 .../hms/table/HudiHMSCatalogTableBuilder.java      | 185 ++++++++
 ...ntTestBase.java => HMSCatalogSyncTestBase.java} |  10 +-
 .../hms/TestHMSCatalogPartitionSyncOperations.java | 470 +++++++++++++++++++
 .../xtable/hms/TestHMSCatalogSyncClient.java       |  95 ++--
 .../hms/TestHMSCatalogTableBuilderFactory.java     |   8 +-
 .../hms/table/TestDeltaHMSCatalogTableBuilder.java |   4 +-
 .../hms/table/TestHudiHMSCatalogTableBuilder.java  | 107 +++++
 .../table/TestIcebergHMSCatalogTableBuilder.java   |   4 +-
 .../apache/xtable/utilities/RunCatalogSync.java    |  25 +-
 .../src/test/resources/catalogConfig.yaml          |   1 +
 54 files changed, 2895 insertions(+), 229 deletions(-)
 create mode 100644 rfc/rfc-2/2 - Deletion Info Conversion.md
 rename 
xtable-api/src/main/java/org/apache/xtable/model/storage/{InternalStorageFile.java
 => InternalFile.java} (98%)
 rename 
xtable-api/src/main/java/org/apache/xtable/model/storage/{StorageFilesDiff.java 
=> InternalFilesDiff.java} (91%)
 create mode 100644 
xtable-aws/src/main/java/org/apache/xtable/glue/GlueCatalogPartitionSyncOperations.java
 create mode 100644 
xtable-aws/src/main/java/org/apache/xtable/glue/GlueCatalogTableUtils.java
 create mode 100644 
xtable-aws/src/main/java/org/apache/xtable/glue/table/HudiGlueCatalogTableBuilder.java
 create mode 100644 
xtable-aws/src/test/java/org/apache/xtable/glue/TestGlueCatalogPartitionSyncOperations.java
 create mode 100644 
xtable-aws/src/test/java/org/apache/xtable/glue/table/TestHudiGlueCatalogTableBuilder.java
 rename 
xtable-core/src/main/java/org/apache/xtable/hudi/catalog/{HudiCatalogTableUtils.java
 => HudiCatalogTablePropertiesExtractor.java} (70%)
 rename 
xtable-core/src/test/java/org/apache/xtable/hudi/catalog/{TestHudiCatalogTableUtils.java
 => TestHudiCatalogTablePropertiesExtractor.java} (73%)
 create mode 100644 
xtable-hive-metastore/src/main/java/org/apache/xtable/hms/HMSCatalogPartitionSyncOperations.java
 create mode 100644 
xtable-hive-metastore/src/main/java/org/apache/xtable/hms/table/HudiHMSCatalogTableBuilder.java
 rename 
xtable-hive-metastore/src/test/java/org/apache/xtable/hms/{HMSCatalogSyncClientTestBase.java
 => HMSCatalogSyncTestBase.java} (95%)
 create mode 100644 
xtable-hive-metastore/src/test/java/org/apache/xtable/hms/TestHMSCatalogPartitionSyncOperations.java
 create mode 100644 
xtable-hive-metastore/src/test/java/org/apache/xtable/hms/table/TestHudiHMSCatalogTableBuilder.java

Reply via email to