-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Disable default paging in list watches #51876
Disable default paging in list watches #51876
Conversation
/approve no-issue |
/lgtm |
/retest Review the full test history for this PR. |
/test all |
/retest Review the full test history for this PR. |
Looks like a legit verify failure - |
/retest Review the full test history for this PR. |
Still set to DNM because we're gathering data |
/test pull-kubernetes-kubemark-e2e-gce-big |
4668912
to
a528173
Compare
/test pull-kubernetes-kubemark-e2e-gce-big |
Metrics from the two runs: Before
After
|
Slightly higher, but the difference isn't large. I think at that level of latencies (small tens of ms), that may be expected. WDYT? |
I was expecting to see a drop (since at the apiserver a paged list should be proportionally faster) on at least one of the high N resource types. Pods would be most likely. However, pods are likely dominated by node list watches, not by master list watches, so pod tail latency should go down. |
What is the max resource collection size on the cluster? I.e. how big do pods get at any one time? 1k? 9k? |
a528173
to
fe9d140
Compare
/test pull-kubernetes-kubemark-e2e-gce-big |
Ok, so with the second run a number of mutation operations had lower tail latencies. This would be expected when there are conflicting reads and writes (in etcd3 at the moment there are a few range locks that large range reads can take that block writes). However, paging wasn't happening frequently enough in the run to tell one way or another, because in practice this test doesn't ever reLIST - all caches start empty and are fed by watches. So I'm going to say we need a better test scenario for this before we can say one way or another. Going to drop the last commit and get everything green, then reapply label to disable paging on the client side (as the PR originally mentions). |
fe9d140
to
f68b34d
Compare
For 1.8 this will be off by default. In 1.9 it will be on by default. Add tests and rename some fields to use the `chunking` terminology. Note that the pager may be used for other things besides chunking.
f68b34d
to
8b571bb
Compare
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: smarterclayton, wojtek-t Associated issue: 48921 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
/retest |
assign @jpbetz |
/retest Review the full test history for this PR. |
WatchFunc WatchFunc | ||
// DisableChunking requests no chunking for this list watcher. It has no effect in Kubernetes 1.8, but in | ||
// 1.9 will allow a controller to opt out of chunking. | ||
DisableChunking bool |
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.
can this be named in the positive, especially since that would get the default behavior you want?
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.
The plan was in 1.9 to remove the false &&
below. All of the test suites are already configured to bypass chunking by setting this flag, whereas all clients would still be opt out for beta. I wanted to avoid pointer insanity in internal code as well as bad globals (since this is core library code).
/retest Review the full test history for this PR. |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue (batch tested with PRs 48552, 51876) |
For 1.8 this will be off by default. In 1.9 it will be on by default.
Add tests and rename some fields to use the
chunking
terminology.Note that the pager may be used for other things besides chunking.
Follow on to #48921, we left the field on to get some exercise in the normal code paths, but needs to be disabled for 1.8.
@liggitt let's merge on wednesday.