Explorar o código

[Transform] Document PIT performance issue (#108149)

Relates #80187
Relates #107969

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Pat Whelan hai 1 ano
pai
achega
92feb1e5b8

+ 1 - 0
x-pack/plugin/transform/src/main/java/org/elasticsearch/xpack/transform/transforms/ClientTransformIndexer.java

@@ -475,6 +475,7 @@ class ClientTransformIndexer extends TransformIndexer {
     ) {
         SearchRequest searchRequest = namedSearchRequest.v2();
         // We explicitly disable PIT in the presence of remote clusters in the source due to huge PIT handles causing performance problems.
+        // We should not re-enable until this is resolved: https://github.com/elastic/elasticsearch/issues/80187
         if (disablePit || searchRequest.indices().length == 0 || transformConfig.getSource().requiresRemoteCluster()) {
             listener.onResponse(namedSearchRequest);
             return;