sched-bwc.rst 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. =====================
  2. CFS Bandwidth Control
  3. =====================
  4. .. note::
  5. This document only discusses CPU bandwidth control for SCHED_NORMAL.
  6. The SCHED_RT case is covered in Documentation/scheduler/sched-rt-group.rst
  7. CFS bandwidth control is a CONFIG_FAIR_GROUP_SCHED extension which allows the
  8. specification of the maximum CPU bandwidth available to a group or hierarchy.
  9. The bandwidth allowed for a group is specified using a quota and period. Within
  10. each given "period" (microseconds), a task group is allocated up to "quota"
  11. microseconds of CPU time. That quota is assigned to per-cpu run queues in
  12. slices as threads in the cgroup become runnable. Once all quota has been
  13. assigned any additional requests for quota will result in those threads being
  14. throttled. Throttled threads will not be able to run again until the next
  15. period when the quota is replenished.
  16. A group's unassigned quota is globally tracked, being refreshed back to
  17. cfs_quota units at each period boundary. As threads consume this bandwidth it
  18. is transferred to cpu-local "silos" on a demand basis. The amount transferred
  19. within each of these updates is tunable and described as the "slice".
  20. Burst feature
  21. -------------
  22. This feature borrows time now against our future underrun, at the cost of
  23. increased interference against the other system users. All nicely bounded.
  24. Traditional (UP-EDF) bandwidth control is something like:
  25. (U = \Sum u_i) <= 1
  26. This guaranteeds both that every deadline is met and that the system is
  27. stable. After all, if U were > 1, then for every second of walltime,
  28. we'd have to run more than a second of program time, and obviously miss
  29. our deadline, but the next deadline will be further out still, there is
  30. never time to catch up, unbounded fail.
  31. The burst feature observes that a workload doesn't always executes the full
  32. quota; this enables one to describe u_i as a statistical distribution.
  33. For example, have u_i = {x,e}_i, where x is the p(95) and x+e p(100)
  34. (the traditional WCET). This effectively allows u to be smaller,
  35. increasing the efficiency (we can pack more tasks in the system), but at
  36. the cost of missing deadlines when all the odds line up. However, it
  37. does maintain stability, since every overrun must be paired with an
  38. underrun as long as our x is above the average.
  39. That is, suppose we have 2 tasks, both specify a p(95) value, then we
  40. have a p(95)*p(95) = 90.25% chance both tasks are within their quota and
  41. everything is good. At the same time we have a p(5)p(5) = 0.25% chance
  42. both tasks will exceed their quota at the same time (guaranteed deadline
  43. fail). Somewhere in between there's a threshold where one exceeds and
  44. the other doesn't underrun enough to compensate; this depends on the
  45. specific CDFs.
  46. At the same time, we can say that the worst case deadline miss, will be
  47. \Sum e_i; that is, there is a bounded tardiness (under the assumption
  48. that x+e is indeed WCET).
  49. The interferenece when using burst is valued by the possibilities for
  50. missing the deadline and the average WCET. Test results showed that when
  51. there many cgroups or CPU is under utilized, the interference is
  52. limited. More details are shown in:
  53. https://lore.kernel.org/lkml/[email protected]/
  54. Management
  55. ----------
  56. Quota, period and burst are managed within the cpu subsystem via cgroupfs.
  57. .. note::
  58. The cgroupfs files described in this section are only applicable
  59. to cgroup v1. For cgroup v2, see
  60. :ref:`Documentation/admin-guide/cgroup-v2.rst <cgroup-v2-cpu>`.
  61. - cpu.cfs_quota_us: run-time replenished within a period (in microseconds)
  62. - cpu.cfs_period_us: the length of a period (in microseconds)
  63. - cpu.stat: exports throttling statistics [explained further below]
  64. - cpu.cfs_burst_us: the maximum accumulated run-time (in microseconds)
  65. The default values are::
  66. cpu.cfs_period_us=100ms
  67. cpu.cfs_quota_us=-1
  68. cpu.cfs_burst_us=0
  69. A value of -1 for cpu.cfs_quota_us indicates that the group does not have any
  70. bandwidth restriction in place, such a group is described as an unconstrained
  71. bandwidth group. This represents the traditional work-conserving behavior for
  72. CFS.
  73. Writing any (valid) positive value(s) no smaller than cpu.cfs_burst_us will
  74. enact the specified bandwidth limit. The minimum quota allowed for the quota or
  75. period is 1ms. There is also an upper bound on the period length of 1s.
  76. Additional restrictions exist when bandwidth limits are used in a hierarchical
  77. fashion, these are explained in more detail below.
  78. Writing any negative value to cpu.cfs_quota_us will remove the bandwidth limit
  79. and return the group to an unconstrained state once more.
  80. A value of 0 for cpu.cfs_burst_us indicates that the group can not accumulate
  81. any unused bandwidth. It makes the traditional bandwidth control behavior for
  82. CFS unchanged. Writing any (valid) positive value(s) no larger than
  83. cpu.cfs_quota_us into cpu.cfs_burst_us will enact the cap on unused bandwidth
  84. accumulation.
  85. Any updates to a group's bandwidth specification will result in it becoming
  86. unthrottled if it is in a constrained state.
  87. System wide settings
  88. --------------------
  89. For efficiency run-time is transferred between the global pool and CPU local
  90. "silos" in a batch fashion. This greatly reduces global accounting pressure
  91. on large systems. The amount transferred each time such an update is required
  92. is described as the "slice".
  93. This is tunable via procfs::
  94. /proc/sys/kernel/sched_cfs_bandwidth_slice_us (default=5ms)
  95. Larger slice values will reduce transfer overheads, while smaller values allow
  96. for more fine-grained consumption.
  97. Statistics
  98. ----------
  99. A group's bandwidth statistics are exported via 5 fields in cpu.stat.
  100. cpu.stat:
  101. - nr_periods: Number of enforcement intervals that have elapsed.
  102. - nr_throttled: Number of times the group has been throttled/limited.
  103. - throttled_time: The total time duration (in nanoseconds) for which entities
  104. of the group have been throttled.
  105. - nr_bursts: Number of periods burst occurs.
  106. - burst_time: Cumulative wall-time (in nanoseconds) that any CPUs has used
  107. above quota in respective periods.
  108. This interface is read-only.
  109. Hierarchical considerations
  110. ---------------------------
  111. The interface enforces that an individual entity's bandwidth is always
  112. attainable, that is: max(c_i) <= C. However, over-subscription in the
  113. aggregate case is explicitly allowed to enable work-conserving semantics
  114. within a hierarchy:
  115. e.g. \Sum (c_i) may exceed C
  116. [ Where C is the parent's bandwidth, and c_i its children ]
  117. There are two ways in which a group may become throttled:
  118. a. it fully consumes its own quota within a period
  119. b. a parent's quota is fully consumed within its period
  120. In case b) above, even though the child may have runtime remaining it will not
  121. be allowed to until the parent's runtime is refreshed.
  122. CFS Bandwidth Quota Caveats
  123. ---------------------------
  124. Once a slice is assigned to a cpu it does not expire. However all but 1ms of
  125. the slice may be returned to the global pool if all threads on that cpu become
  126. unrunnable. This is configured at compile time by the min_cfs_rq_runtime
  127. variable. This is a performance tweak that helps prevent added contention on
  128. the global lock.
  129. The fact that cpu-local slices do not expire results in some interesting corner
  130. cases that should be understood.
  131. For cgroup cpu constrained applications that are cpu limited this is a
  132. relatively moot point because they will naturally consume the entirety of their
  133. quota as well as the entirety of each cpu-local slice in each period. As a
  134. result it is expected that nr_periods roughly equal nr_throttled, and that
  135. cpuacct.usage will increase roughly equal to cfs_quota_us in each period.
  136. For highly-threaded, non-cpu bound applications this non-expiration nuance
  137. allows applications to briefly burst past their quota limits by the amount of
  138. unused slice on each cpu that the task group is running on (typically at most
  139. 1ms per cpu or as defined by min_cfs_rq_runtime). This slight burst only
  140. applies if quota had been assigned to a cpu and then not fully used or returned
  141. in previous periods. This burst amount will not be transferred between cores.
  142. As a result, this mechanism still strictly limits the task group to quota
  143. average usage, albeit over a longer time window than a single period. This
  144. also limits the burst ability to no more than 1ms per cpu. This provides
  145. better more predictable user experience for highly threaded applications with
  146. small quota limits on high core count machines. It also eliminates the
  147. propensity to throttle these applications while simultanously using less than
  148. quota amounts of cpu. Another way to say this, is that by allowing the unused
  149. portion of a slice to remain valid across periods we have decreased the
  150. possibility of wastefully expiring quota on cpu-local silos that don't need a
  151. full slice's amount of cpu time.
  152. The interaction between cpu-bound and non-cpu-bound-interactive applications
  153. should also be considered, especially when single core usage hits 100%. If you
  154. gave each of these applications half of a cpu-core and they both got scheduled
  155. on the same CPU it is theoretically possible that the non-cpu bound application
  156. will use up to 1ms additional quota in some periods, thereby preventing the
  157. cpu-bound application from fully using its quota by that same amount. In these
  158. instances it will be up to the CFS algorithm (see sched-design-CFS.rst) to
  159. decide which application is chosen to run, as they will both be runnable and
  160. have remaining quota. This runtime discrepancy will be made up in the following
  161. periods when the interactive application idles.
  162. Examples
  163. --------
  164. 1. Limit a group to 1 CPU worth of runtime::
  165. If period is 250ms and quota is also 250ms, the group will get
  166. 1 CPU worth of runtime every 250ms.
  167. # echo 250000 > cpu.cfs_quota_us /* quota = 250ms */
  168. # echo 250000 > cpu.cfs_period_us /* period = 250ms */
  169. 2. Limit a group to 2 CPUs worth of runtime on a multi-CPU machine
  170. With 500ms period and 1000ms quota, the group can get 2 CPUs worth of
  171. runtime every 500ms::
  172. # echo 1000000 > cpu.cfs_quota_us /* quota = 1000ms */
  173. # echo 500000 > cpu.cfs_period_us /* period = 500ms */
  174. The larger period here allows for increased burst capacity.
  175. 3. Limit a group to 20% of 1 CPU.
  176. With 50ms period, 10ms quota will be equivalent to 20% of 1 CPU::
  177. # echo 10000 > cpu.cfs_quota_us /* quota = 10ms */
  178. # echo 50000 > cpu.cfs_period_us /* period = 50ms */
  179. By using a small period here we are ensuring a consistent latency
  180. response at the expense of burst capacity.
  181. 4. Limit a group to 40% of 1 CPU, and allow accumulate up to 20% of 1 CPU
  182. additionally, in case accumulation has been done.
  183. With 50ms period, 20ms quota will be equivalent to 40% of 1 CPU.
  184. And 10ms burst will be equivalent to 20% of 1 CPU::
  185. # echo 20000 > cpu.cfs_quota_us /* quota = 20ms */
  186. # echo 50000 > cpu.cfs_period_us /* period = 50ms */
  187. # echo 10000 > cpu.cfs_burst_us /* burst = 10ms */
  188. Larger buffer setting (no larger than quota) allows greater burst capacity.