Bug 1467416
Summary: | panic in net/http/server.go starting daemonset with 1200 pods | ||
---|---|---|---|
Product: | OpenShift Container Platform | Reporter: | Mike Fiedler <mifiedle> |
Component: | Node | Assignee: | Derek Carr <decarr> |
Status: | CLOSED DUPLICATE | QA Contact: | DeShuai Ma <dma> |
Severity: | high | Docs Contact: | |
Priority: | unspecified | ||
Version: | 3.6.0 | CC: | aos-bugs, ekuric, jokerman, mmccomas |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | x86_64 | ||
OS: | Linux | ||
Whiteboard: | aos-scalability-36 | ||
Fixed In Version: | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2017-07-03 18:35:44 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Mike Fiedler
2017-07-03 17:51:12 UTC
From the logs, the panic is coming from an actual timeout on serving the request: see: https://github.com/openshift/origin/blob/master/vendor/k8s.io/kubernetes/staging/src/k8s.io/apiserver/pkg/server/filters/timeout.go#L214 duplicating on the original bug as the line numbers do not align because the code was moved around in 1.5 from 1.6, but its the same basic request is timing out problem. https://github.com/openshift/origin/blob/release-1.5/vendor/k8s.io/kubernetes/pkg/genericapiserver/filters/timeout.go#L205 is the same as 1.6: https://github.com/openshift/origin/blob/master/vendor/k8s.io/kubernetes/staging/src/k8s.io/apiserver/pkg/server/filters/timeout.go#L214 it appears that the LIST call starts writing, but is unable to finish serializing in time to write-out the response before hitting the timeout. *** This bug has been marked as a duplicate of bug 1439324 *** |