Skip to content

Commit

Permalink
Add lower bound on poll_interval (#39593)
Browse files Browse the repository at this point in the history
A poll_interval of less than 1 second doesn't make much sense,
and can cause  excess load on the master node if 
it's set too low (e.g. single digit milliseconds).

However, we still want to allow relatively short poll intervals,
for testing purposes, so we put a lower limit of 1 second.
  • Loading branch information
tawAsh1 authored and gwbrown committed Mar 5, 2019
1 parent 89b80c6 commit dc613b0
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -16,8 +16,8 @@ public class LifecycleSettings {
public static final String LIFECYCLE_NAME = "index.lifecycle.name";
public static final String LIFECYCLE_INDEXING_COMPLETE = "index.lifecycle.indexing_complete";

public static final Setting<TimeValue> LIFECYCLE_POLL_INTERVAL_SETTING = Setting.positiveTimeSetting(LIFECYCLE_POLL_INTERVAL,
TimeValue.timeValueMinutes(10), Setting.Property.Dynamic, Setting.Property.NodeScope);
public static final Setting<TimeValue> LIFECYCLE_POLL_INTERVAL_SETTING = Setting.timeSetting(LIFECYCLE_POLL_INTERVAL,
TimeValue.timeValueMinutes(10), TimeValue.timeValueSeconds(1), Setting.Property.Dynamic, Setting.Property.NodeScope);
public static final Setting<String> LIFECYCLE_NAME_SETTING = Setting.simpleString(LIFECYCLE_NAME,
Setting.Property.Dynamic, Setting.Property.IndexScope);
public static final Setting<Boolean> LIFECYCLE_INDEXING_COMPLETE_SETTING = Setting.boolSetting(LIFECYCLE_INDEXING_COMPLETE, false,
Expand Down

0 comments on commit dc613b0

Please sign in to comment.