@@ -464,11 +464,11 @@ etcd:
464
464
dir:
465
465
data: "{{ etcd_data_dir | default('') }}"
466
466
lease:
467
- timeout: "{{ etcd_lease_timeout | default(1 ) }}"
467
+ timeout: "{{ etcd_lease_timeout | default(10 ) }}"
468
468
loglevel: "{{ etcd_log_level | default('info') }}"
469
- quota_backend_bytes: "{{ etcd_quota_backend_bytes | default(0 ) }}"
470
- snapshot_count: "{{ etcd_snapshot_count | default(100000 ) }}"
471
- auto_compaction_retention: "{{ etcd_auto_compaction_retention | default(1 ) }}"
469
+ quota_backend_bytes: "{{ etcd_quota_backend_bytes | default(2147483648 ) }}" # 2GB
470
+ snapshot_count: "{{ etcd_snapshot_count | default(10000 ) }}"
471
+ auto_compaction_retention: "{{ etcd_auto_compaction_retention | default('10m' ) }}"
472
472
auto_compaction_mode: "{{ etcd_auto_compaction_mode | default('periodic') }}"
473
473
pool_threads: "{{ etcd_pool_threads | default(10) }}"
474
474
@@ -530,9 +530,9 @@ scheduler:
530
530
maxRetriesToGetQueue: "{{ scheduler_maxRetriesToGetQueue | default(13) }}"
531
531
queue:
532
532
# the queue's state Running timeout, e.g. if have no activation comes into queue when Running, the queue state will be changed from Running to Idle and delete the decision algorithm actor
533
- idleGrace: "{{ scheduler_queue_idleGrace | default('20 seconds ') }}"
533
+ idleGrace: "{{ scheduler_queue_idleGrace | default('10 minutes ') }}"
534
534
# the queue's state Idle timeout, e.g. if have no activation comes into queue when Idle, the queue state will be changed from Idle to Removed
535
- stopGrace: "{{ scheduler_queue_stopGrace | default('20 seconds ') }}"
535
+ stopGrace: "{{ scheduler_queue_stopGrace | default('10 minutes ') }}"
536
536
# the queue's state Paused timeout, e.g. if have no activation comes into queue when Paused, the queue state will be changed from Paused to Removed
537
537
flushGrace: "{{ scheduler_queue_flushGrace | default('60 seconds') }}"
538
538
gracefulShutdownTimeout: "{{ scheduler_queue_gracefulShutdownTimeout | default('5 seconds') }}"
0 commit comments