Removed unecessary fields from the Es doc (#21792)

This commit is contained in:
Mohit Yadav 2025-06-17 09:56:45 +05:30 committed by GitHub
parent 74851f8e4d
commit 0a6a1b37d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -417,7 +417,8 @@ public class LineageRepository {
lineageData.setPipeline(null);
} else {
Pair<String, Map<String, Object>> pipelineOrStoredProcedure =
getPipelineOrStoredProcedure(pipelineRef, List.of("changeDescription"));
getPipelineOrStoredProcedure(
pipelineRef, List.of("changeDescription", "incrementalChangeDescription"));
lineageData.setPipelineEntityType(pipelineOrStoredProcedure.getLeft());
lineageData.setPipeline(pipelineOrStoredProcedure.getRight());
}

View File

@ -54,7 +54,8 @@ public interface SearchIndex {
"incrementalChangeDescription",
"upstreamLineage.pipeline.changeDescription",
"upstreamLineage.pipeline.incrementalChangeDescription",
"connection");
"connection",
"changeSummary");
public static final SearchClient searchClient = Entity.getSearchRepository().getSearchClient();