diff --git a/openmetadata-service/src/main/java/org/openmetadata/service/elasticsearch/TableIndex.java b/openmetadata-service/src/main/java/org/openmetadata/service/elasticsearch/TableIndex.java index e9e4b693020..d66b470ea48 100644 --- a/openmetadata-service/src/main/java/org/openmetadata/service/elasticsearch/TableIndex.java +++ b/openmetadata-service/src/main/java/org/openmetadata/service/elasticsearch/TableIndex.java @@ -13,7 +13,14 @@ import org.openmetadata.service.util.FullyQualifiedName; import org.openmetadata.service.util.JsonUtils; public class TableIndex implements ElasticSearchIndex { - final List excludeFields = List.of("sampleData", "tableProfile", "joins", "changeDescription"); + private static final List excludeFields = + List.of( + "sampleData", + "tableProfile", + "joins", + "changeDescription", + "tableQueries, viewDefinition, tableProfilerConfig, profile, location, tableQueries, " + "tests, dataModel"); + final Table table; public TableIndex(Table table) {