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

amestry pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit f202be6e5d14cfbd4f2e5d8607fbb43be25a10dd
Author: Disha Talreja <dishatalr...@cloudera.com>
AuthorDate: Thu Aug 26 22:10:08 2021 -0400

    ATLAS-4406: Ignore configs:- A hive table DDL entity is created for ignored 
hive tables
---
 .../org/apache/atlas/notification/preprocessor/HivePreprocessor.java     | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/webapp/src/main/java/org/apache/atlas/notification/preprocessor/HivePreprocessor.java
 
b/webapp/src/main/java/org/apache/atlas/notification/preprocessor/HivePreprocessor.java
index bf6a623..083e343 100644
--- 
a/webapp/src/main/java/org/apache/atlas/notification/preprocessor/HivePreprocessor.java
+++ 
b/webapp/src/main/java/org/apache/atlas/notification/preprocessor/HivePreprocessor.java
@@ -71,6 +71,7 @@ public class HivePreprocessor {
                     
context.addToIgnoredEntities(entity.getAttribute(ATTRIBUTE_SD));
                     
context.addToIgnoredEntities(entity.getAttribute(ATTRIBUTE_COLUMNS));
                     
context.addToIgnoredEntities(entity.getAttribute(ATTRIBUTE_PARTITION_KEYS));
+                    
context.addToIgnoredEntities(entity.getAttribute(TYPE_HIVE_TABLE_DDL));
                 } else if (action == PreprocessAction.PRUNE) {
                     context.addToPrunedEntities(entity);
 

Reply via email to