Skip to content

Commit fa3a8ce

Browse files
MikeSpreitzerTim Bannister
andauthored
Apply suggestions from code review
Co-authored-by: Tim Bannister <[email protected]>
1 parent 93d3515 commit fa3a8ce

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

content/en/docs/concepts/cluster-administration/flow-control.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Some requests classified as "long-running"&mdash;such as remote
3535
command execution or log tailing&mdash;are not subject to the API
3636
Priority and Fairness filter. This is also true for the
3737
`--max-requests-inflight` flag without the API Priority and Fairness
38-
feature enabled. API Priority and Fairness _does_ apply to WATCH
39-
requests. When API Priority and Fairness is disabled, WATCH requests
38+
feature enabled. API Priority and Fairness _does_ apply to **watch**
39+
requests. When API Priority and Fairness is disabled, **watch** requests
4040
are not subject to the `--max-requests-inflight` limit.
4141
{{< /caution >}}
4242

@@ -102,27 +102,27 @@ The above description of concurrency management is the baseline story.
102102
In it, all requests have equal "width": each takes up one "seat", one
103103
unit of concurrency.
104104

105-
But some requests take up more than one seat. Some of these are LIST
105+
But some requests take up more than one seat. Some of these are **list**
106106
requests that the server estimates will return a large number of
107107
objects. These have been found to put an exceptionally heavy burden
108108
on the server, among requests that take a similar amount of time to
109109
run. For this reason, the server estimates the number of objects that
110110
will be returned and considers the request to take a number of seats
111111
that is proportional to that estimated number.
112112

113-
### Execution Time Tweaks for WATCH
113+
### Execution time tweaks for watch requests
114114

115-
API Priority and Fairness manages WATCH requests, but this involves a
115+
API Priority and Fairness manages **watch** requests, but this involves a
116116
couple more excursions from the baseline behavior. The first concerns
117-
how long a WATCH request is considered to occupy its seat. Depending
118-
on request parameters, the response to a WATCH request may or may not
119-
begin with CREATE notifications for all the relevant pre-existing
120-
objects. API Priority and Fairness considers a WATCH request to be
117+
how long a **watch** request is considered to occupy its seat. Depending
118+
on request parameters, the response to a **watch** request may or may not
119+
begin with **create** notifications for all the relevant pre-existing
120+
objects. API Priority and Fairness considers a **watch** request to be
121121
done with its seat once that initial burst of notifications, if any,
122122
is over.
123123

124124
The normal notifications are sent in a concurrent burst to all
125-
relevant WATCH response streams whenever the server is notified of an
125+
relevant **watch** response streams whenever the server is notified of an
126126
object create/update/delete. To account for this work, API Priority
127127
and Fairness considers every write request to spend some additional
128128
time occupying seats after the actual writing is done. The server

0 commit comments

Comments
 (0)