This is an automated email from the ASF dual-hosted git repository.
nbonte pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git.
from aba97b3 ATLAS-4285: Multiple propagations with intersecting lineage.
new 7e2e130 ATLAS-4292 : Atlas Debug Metrics- MessageException through
debug metrics via browser
new 4691650 ATLAS-4064: Atlas HEADER validation
new 07037d2 ATLAS-4259: Swagger: Improve Header validation
new c3df226 ATLAS-4152: Entity correlation for deleted entities.
The 4 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:
build-tools/src/main/resources/ui-dist/index.html | 1 +
build-tools/src/main/resources/ui-dist/index.js | 138 ++++++++++++++-------
.../org/apache/atlas/repository/Constants.java | 2 +
dashboardv2/public/js/utils/CommonViewFunction.js | 30 ++---
dashboardv3/public/js/utils/CommonViewFunction.js | 29 ++---
.../notification/AtlasNotificationMessage.java | 23 +++-
.../org/apache/atlas/kafka/AtlasKafkaConsumer.java | 3 +-
.../org/apache/atlas/kafka/AtlasKafkaMessage.java | 17 ++-
.../org/apache/atlas/kafka/KafkaNotification.java | 12 ++
.../AtlasNotificationMessageDeserializer.java | 17 ++-
.../atlas/notification/NotificationInterface.java | 9 ++
.../atlas/notification/spool/AtlasFileSpool.java | 30 +++--
.../apache/atlas/notification/spool/Publisher.java | 40 +++++-
.../notification/spool/SpoolConfiguration.java | 16 +++
.../apache/atlas/notification/spool/Spooler.java | 17 ++-
.../notification/AbstractNotificationTest.java | 5 +
.../notification/spool/AtlasFileSpoolTest.java | 5 +
.../repository/graph/GraphBackedSearchIndexer.java | 1 +
.../store/graph/EntityCorrelationStore.java | 53 ++++++++
.../store/graph/v2/AtlasGraphUtilsV2.java | 21 ++++
...tsTest.java => EntityCorrelationStoreTest.java} | 59 ++++-----
.../notification/EntityCorrelationManager.java | 60 +++++++++
.../notification/NotificationHookConsumer.java | 15 ++-
.../preprocessor/EntityPreprocessor.java | 16 ++-
.../preprocessor/HiveDbDDLPreprocessor.java | 52 ++++++++
.../preprocessor/HivePreprocessor.java | 28 +++++
.../preprocessor/HiveTableDDLPreprocessor.java | 52 ++++++++
.../preprocessor/PreprocessorContext.java | 17 ++-
.../web/filters/AtlasCSRFPreventionFilter.java | 41 ++++--
.../apache/atlas/web/resources/AdminResource.java | 22 +++-
.../NotificationHookConsumerKafkaTest.java | 6 +-
.../notification/NotificationHookConsumerTest.java | 22 ++--
.../web/filters/AtlasCSRFPreventionFilterTest.java | 31 +++++
33 files changed, 719 insertions(+), 171 deletions(-)
create mode 100644
repository/src/main/java/org/apache/atlas/repository/store/graph/EntityCorrelationStore.java
copy
repository/src/test/java/org/apache/atlas/repository/store/graph/v2/{DifferentialAuditsTest.java
=> EntityCorrelationStoreTest.java} (51%)
create mode 100644
webapp/src/main/java/org/apache/atlas/notification/EntityCorrelationManager.java
create mode 100644
webapp/src/main/java/org/apache/atlas/notification/preprocessor/HiveDbDDLPreprocessor.java
create mode 100644
webapp/src/main/java/org/apache/atlas/notification/preprocessor/HiveTableDDLPreprocessor.java