This is an automated email from the ASF dual-hosted git repository. pinal pushed a change to branch ATLAS-5021_u in repository https://gitbox.apache.org/repos/asf/atlas.git
omit 70e3f81ad Update IcebergEntityConnector.java omit 772baead7 Update HiveEntityConnector.java omit 1633830e2 Update AtlasClientHelper.java omit e08aafcec Update ExtractorService.java omit 1f403d13e ATLAS-5021: checkstyle fix omit 408d68651 ATLAS-5021: checkstyle changes omit de934b89c ATLAS-5021: Extract Metadata from Trino periodically add 2eafacd49 ATLAS-5084: provide a way to transform hdfs paths during atlas import (#416) add 959cb93ce ATLAS-5093: Ensure executors are avialable and alive before submitting import tasks (#429) add 0ad88da7d ATLAS-5091: ensure commit/rollback is called on ManagementSystem instances (#426) add c5e3cbd3b ATLAS-5090:Improve Unit Test Coverage for Kafka-bridge Module (#423) add 0e8779622 ATLAS-5068: Improve Unit Test Coverage for Hive-bridge Module (#425) add 18d7f9dcc ATLAS-5069:Improve Unit Test Coverage for Impala-bridge Module (#422) new 9627a0522 ATLAS-5021: Extract Metadata from Trino periodically new 4673c9425 ATLAS-5021: checkstyle changes new 22479f4c6 ATLAS-5021: checkstyle fix 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 (70e3f81ad) \ N -- N -- N refs/heads/ATLAS-5021_u (22479f4c6) 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. The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: addons/hive-bridge/pom.xml | 8 + .../atlas/hive/bridge/HiveMetaStoreBridgeTest.java | 856 +++++++++- .../atlas/hive/hook/events/AlterDatabaseTest.java | 173 ++ .../hive/hook/events/AlterTableRenameColTest.java | 785 ++++++++++ .../hive/hook/events/AlterTableRenameTest.java | 671 ++++++++ .../atlas/hive/hook/events/AlterTableTest.java | 367 +++++ .../atlas/hive/hook/events/BaseHiveEventTest.java | 1109 +++++++++++++ .../atlas/hive/hook/events/CreateDatabaseTest.java | 183 +++ .../hive/hook/events/CreateHiveProcessTest.java | 1644 ++++++++++++++++++++ .../atlas/hive/hook/events/CreateTableTest.java | 717 +++++++++ .../atlas/hive/hook/events/DropDatabaseTest.java | 278 ++++ .../atlas/hive/hook/events/DropTableTest.java | 496 ++++++ .../apache/atlas/impala/ImpalaLineageToolTest.java | 436 ++++++ .../impala/hook/AtlasImpalaHookContextTest.java | 262 ++++ .../impala/hook/ImpalaOperationParserTest.java | 92 ++ .../impala/hook/events/BaseImpalaEventTest.java | 601 +++++++ .../hook/events/CreateImpalaProcessTest.java | 457 ++++++ .../apache/atlas/kafka/bridge/KafkaBridgeTest.java | 399 ++++- .../kafka/bridge/SchemaRegistryConnectorTest.java | 303 ++++ .../apache/atlas/trino/cli/ExtractorService.java | 4 +- .../atlas/trino/client/AtlasClientHelper.java | 4 +- .../atlas/trino/connector/HiveEntityConnector.java | 3 +- .../trino/connector/IcebergEntityConnector.java | 3 +- .../repository/graphdb/AtlasGraphManagement.java | 15 +- .../repository/graphdb/janus/AtlasJanusGraph.java | 21 +- .../graphdb/janus/AtlasJanusGraphDatabase.java | 19 +- .../graphdb/janus/AtlasJanusGraphIndexClient.java | 19 - .../graphdb/janus/AtlasJanusGraphManagement.java | 53 +- .../graphdb/janus/AbstractGraphDatabaseTest.java | 33 +- .../graphdb/janus/AtlasJanusDatabaseTest.java | 22 +- .../repository/graph/GraphBackedSearchIndexer.java | 118 +- .../repository/graph/IndexRecoveryService.java | 32 +- .../atlas/repository/impexp/ImportTransformer.java | 13 +- .../repository/patches/IndexConsistencyPatch.java | 10 +- .../atlas/repository/patches/ReIndexPatch.java | 7 +- .../repository/patches/UniqueAttributePatch.java | 19 +- .../patches/UpdateCompositeIndexStatusPatch.java | 18 +- .../store/graph/v2/AtlasEnumDefStoreV2.java | 32 +- .../store/graph/v2/AtlasStructDefStoreV2.java | 31 +- .../repository/impexp/AtlasImportRequestTest.java | 4 +- .../atlas/repository/impexp/ImportServiceTest.java | 4 +- .../impexp/ImportTransformerJSONTest.java | 2 +- .../repository/impexp/ImportTransformerTest.java | 12 +- .../impexp/ImportTransformsShaperTest.java | 2 +- .../repository/impexp/ImportTransformsTest.java | 22 +- .../atlas/repository/impexp/ZipSourceTest.java | 2 +- .../java/org/apache/atlas/tools/RepairIndex.java | 65 +- .../atlas/notification/ImportTaskListenerImpl.java | 46 +- .../notification/ImportTaskListenerImplTest.java | 167 ++ 49 files changed, 10240 insertions(+), 399 deletions(-) create mode 100644 addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/events/AlterDatabaseTest.java create mode 100644 addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/events/AlterTableRenameColTest.java create mode 100644 addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/events/AlterTableRenameTest.java create mode 100644 addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/events/AlterTableTest.java create mode 100644 addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/events/BaseHiveEventTest.java create mode 100644 addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/events/CreateDatabaseTest.java create mode 100644 addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/events/CreateHiveProcessTest.java create mode 100644 addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/events/CreateTableTest.java create mode 100644 addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/events/DropDatabaseTest.java create mode 100644 addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/events/DropTableTest.java create mode 100644 addons/impala-bridge/src/test/java/org/apache/atlas/impala/ImpalaLineageToolTest.java create mode 100644 addons/impala-bridge/src/test/java/org/apache/atlas/impala/hook/AtlasImpalaHookContextTest.java create mode 100644 addons/impala-bridge/src/test/java/org/apache/atlas/impala/hook/ImpalaOperationParserTest.java create mode 100644 addons/impala-bridge/src/test/java/org/apache/atlas/impala/hook/events/BaseImpalaEventTest.java create mode 100644 addons/impala-bridge/src/test/java/org/apache/atlas/impala/hook/events/CreateImpalaProcessTest.java create mode 100644 addons/kafka-bridge/src/test/java/org/apache/atlas/kafka/bridge/SchemaRegistryConnectorTest.java