mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-01 13:13:10 +00:00
* Fix #9042: query is being indexed causing huge payload returned * Fix #9042: query is being indexed causing huge payload returned
This commit is contained in:
parent
eb9c18f7f6
commit
ce3ab68932
@ -13,7 +13,14 @@ import org.openmetadata.service.util.FullyQualifiedName;
|
||||
import org.openmetadata.service.util.JsonUtils;
|
||||
|
||||
public class TableIndex implements ElasticSearchIndex {
|
||||
final List<String> excludeFields = List.of("sampleData", "tableProfile", "joins", "changeDescription");
|
||||
private static final List<String> excludeFields =
|
||||
List.of(
|
||||
"sampleData",
|
||||
"tableProfile",
|
||||
"joins",
|
||||
"changeDescription",
|
||||
"tableQueries, viewDefinition, tableProfilerConfig, profile, location, tableQueries, " + "tests, dataModel");
|
||||
|
||||
final Table table;
|
||||
|
||||
public TableIndex(Table table) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user