-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Adjust the default configurations. #5302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -530,9 +530,9 @@ scheduler: | |||
maxRetriesToGetQueue: "{{ scheduler_maxRetriesToGetQueue | default(13) }}" | |||
queue: | |||
# 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 | |||
idleGrace: "{{ scheduler_queue_idleGrace | default('20 seconds') }}" | |||
idleGrace: "{{ scheduler_queue_idleGrace | default('10 minutes') }}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As warmed containers are kept for 10 minutes, it's better to keep the queue as well.
It's relatively safer than containers to keep an idle queue as it uses fewer resources when idle.
@@ -180,6 +180,13 @@ whisk { | |||
username: "invoker.user" | |||
password: "invoker.pass" | |||
protocol: http | |||
|
|||
resource { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are required to run OpenWhisk with other than Ansible.
@@ -187,6 +187,10 @@ | |||
"CONFIG_whisk_timeLimit_max": "{{ limit_action_time_max | default() }}" | |||
"CONFIG_whisk_timeLimit_std": "{{ limit_action_time_std | default() }}" | |||
|
|||
"CONFIG_whisk_concurrencyLimit_min": "{{ limit_action_concurrency_min | default() }}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is missing configuration.
Codecov Report
@@ Coverage Diff @@
## master #5302 +/- ##
==========================================
+ Coverage 71.46% 76.43% +4.97%
==========================================
Files 238 238
Lines 14183 14183
Branches 574 574
==========================================
+ Hits 10136 10841 +705
+ Misses 4047 3342 -705
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
* Adjust the default configurations. * Change the default etcd retention to string.
Description
This is to adjust the default configurations.
Related issue and scope
My changes affect the following components
Types of changes
Checklist: