This is an automated email from the ASF dual-hosted git repository.
sarath pushed a change to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git.
from 9350a7d ATLAS-3132: performance improvements in UniqueAttributesPatch
new 8cf09c5 ATLAS-3143: PatchFx: Memory usage and performance improvement.
new 97f6f7c ATLAS-3148: Implement Hive Metastore hook for Atlas
The 2 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:
.../apache/atlas/hive/hook/HiveMetastoreHook.java | 199 +++++++++++++++
.../atlas/hive/hook/AtlasHiveHookContext.java | 134 ++++++++--
.../java/org/apache/atlas/hive/hook/HiveHook.java | 21 +-
.../atlas/hive/hook/HiveMetastoreHookImpl.java | 193 +++++++++++++++
.../atlas/hive/hook/HiveOperationContext.java | 72 ++++++
.../atlas/hive/hook/events/AlterDatabase.java | 34 ++-
.../apache/atlas/hive/hook/events/AlterTable.java | 4 +-
.../atlas/hive/hook/events/AlterTableRename.java | 52 +++-
.../hive/hook/events/AlterTableRenameCol.java | 88 ++++---
.../atlas/hive/hook/events/BaseHiveEvent.java | 127 +++++++---
.../atlas/hive/hook/events/CreateDatabase.java | 31 ++-
.../atlas/hive/hook/events/CreateHiveProcess.java | 15 +-
.../apache/atlas/hive/hook/events/CreateTable.java | 83 +++++--
.../atlas/hive/hook/events/DropDatabase.java | 35 ++-
.../apache/atlas/hive/hook/events/DropTable.java | 30 ++-
.../atlas/repository/graphdb/AtlasGraphQuery.java | 21 ++
.../tinkerpop/query/NativeTinkerpopGraphQuery.java | 21 ++
.../tinkerpop/query/TinkerpopGraphQuery.java | 57 +++++
.../graphdb/janus/query/NativeJanusGraphQuery.java | 58 +++++
.../java/org/apache/atlas/pc/WorkItemConsumer.java | 4 +-
.../repository/patches/AtlasPatchHandler.java | 4 +-
.../repository/patches/AtlasPatchRegistry.java | 18 +-
.../repository/patches/UniqueAttributePatch.java | 270 +++++++++------------
.../bootstrap/AtlasTypeDefStoreInitializer.java | 5 +-
.../atlas/patches/AtlasPatchRegistryTest.java | 3 +-
25 files changed, 1250 insertions(+), 329 deletions(-)
create mode 100644
addons/hive-bridge-shim/src/main/java/org/apache/atlas/hive/hook/HiveMetastoreHook.java
create mode 100644
addons/hive-bridge/src/main/java/org/apache/atlas/hive/hook/HiveMetastoreHookImpl.java
create mode 100644
addons/hive-bridge/src/main/java/org/apache/atlas/hive/hook/HiveOperationContext.java