Skip to content

Commit

Permalink
Increase transform scheduler frequency so that it runs every 1s (#88116)
Browse files Browse the repository at this point in the history
  • Loading branch information
przemekwitek authored Jun 28, 2022
1 parent 0256821 commit b9e1cf0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public class Transform extends Plugin implements SystemIndexPlugin, PersistentTa
Setting.Property.Dynamic
);

public static final TimeValue DEFAULT_SCHEDULER_FREQUENCY = TimeValue.timeValueSeconds(5);
public static final TimeValue DEFAULT_SCHEDULER_FREQUENCY = TimeValue.timeValueSeconds(1);
// How often does the transform scheduler process the tasks
public static final Setting<TimeValue> SCHEDULER_FREQUENCY = Setting.timeSetting(
"xpack.transform.transform_scheduler_frequency",
Expand Down

0 comments on commit b9e1cf0

Please sign in to comment.