-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Increase default max in flight requests and lengthen short timeouts #15129
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
/cc: @jeremyeder |
@@ -32,7 +32,7 @@ func addDefaultingFuncs(scheme *runtime.Scheme) error { | |||
obj.ServingInfo.RequestTimeoutSeconds = 60 * 60 | |||
} | |||
if obj.ServingInfo.MaxRequestsInFlight == 0 { | |||
obj.ServingInfo.MaxRequestsInFlight = 500 |
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.
@deads2k will need to pull into the rebase PR
Shouldn't the upstream be an actual commit rather than a carry? |
I don't know whether we want to have the longer timeouts upstream or not.
David wanted to plumb an option and I don't want to do that right now.
…On Mon, Jul 10, 2017 at 10:36 PM, Jordan Liggitt ***@***.***> wrote:
Shouldn't the upstream be an actual commit rather than a carry?
LGTM otherwise
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#15129 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABG_p1y5YB8jEE00xa6zEfUpowrHapNxks5sMt-3gaJpZM4OTogF>
.
|
For 3.6 or 3.7? |
[test]
…On Tue, Jul 11, 2017 at 12:55 AM, OpenShift Bot ***@***.***> wrote:
continuous-integration/openshift-jenkins/test FAILURE (
https://ci.openshift.redhat.com/jenkins/job/test_pull_request_origin/3041/)
(Base Commit: d4f473a
<d4f473a>)
(PR Branch Commit: 57808db
<57808db>
)
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#15129 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABG_p9zLLAhpDKfAqkw5JAIjIJkm89yoks5sMwAygaJpZM4OTogF>
.
|
3.6 |
Will reevaluate in the future
In practice, with etcd3 + protobuf this number is more appropriate to scale out clusters.
@liggitt bumped both of those timeouts to 5 minutes |
LGTM |
Evaluated for origin test up to 4132c49 |
[severity:blocker] |
continuous-integration/openshift-jenkins/test SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pull_request_origin/3054/) (Base Commit: 1c8af8b) (PR Branch Commit: 4132c49) |
Very large clusters configured with
openshift start master
now are unable to startup. We support existing clusters installed in this fashion (this is how single master installs work today unless the user specifiesetcd_host
)Increase two default vendored timeouts to be longer. Max in flight is increased to 1200 out of the box because it matches to reasonably large clusters.
[test] @liggitt