[ML] Increase ScrollDataExtractor context duration

In cases where the job is bound on the analytics performance
the datafeed can fail because the scroll expires. This is
commit increases the scroll context duration from 10 to 30 minutes
as a temporary solution that will avoid most cases.

Original commit: elastic/x-pack-elasticsearch@fd277bbaa1
This commit is contained in:
Dimitrios Athanasiou 2017-06-19 18:26:33 +01:00
parent 0532c9069b
commit c39b35d4a0
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ import java.util.concurrent.TimeUnit;
class ScrollDataExtractor implements DataExtractor {
private static final Logger LOGGER = Loggers.getLogger(ScrollDataExtractor.class);
private static final TimeValue SCROLL_TIMEOUT = new TimeValue(10, TimeUnit.MINUTES);
private static final TimeValue SCROLL_TIMEOUT = new TimeValue(30, TimeUnit.MINUTES);
private final Client client;
private final ScrollDataExtractorContext context;