grpc 1.62.0.pre1 → 1.63.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (974) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +415 -1962
  3. data/include/grpc/byte_buffer.h +1 -2
  4. data/include/grpc/census.h +1 -2
  5. data/include/grpc/compression.h +1 -2
  6. data/include/grpc/event_engine/endpoint_config.h +2 -2
  7. data/include/grpc/event_engine/event_engine.h +4 -2
  8. data/include/grpc/event_engine/extensible.h +2 -2
  9. data/include/grpc/event_engine/internal/memory_allocator_impl.h +1 -2
  10. data/include/grpc/event_engine/memory_allocator.h +1 -2
  11. data/include/grpc/event_engine/memory_request.h +2 -2
  12. data/include/grpc/event_engine/slice.h +1 -2
  13. data/include/grpc/event_engine/slice_buffer.h +1 -2
  14. data/include/grpc/grpc.h +1 -8
  15. data/include/grpc/grpc_audit_logging.h +1 -2
  16. data/include/grpc/grpc_crl_provider.h +2 -2
  17. data/include/grpc/grpc_cronet.h +1 -2
  18. data/include/grpc/grpc_posix.h +1 -2
  19. data/include/grpc/grpc_security.h +1 -2
  20. data/include/grpc/impl/call.h +1 -2
  21. data/include/grpc/impl/channel_arg_names.h +4 -0
  22. data/include/grpc/impl/grpc_types.h +1 -2
  23. data/include/grpc/impl/slice_type.h +2 -2
  24. data/include/grpc/module.modulemap +1 -0
  25. data/include/grpc/slice.h +1 -2
  26. data/include/grpc/slice_buffer.h +1 -2
  27. data/include/grpc/support/alloc.h +2 -2
  28. data/include/grpc/support/json.h +2 -2
  29. data/include/grpc/support/log.h +2 -2
  30. data/include/grpc/support/metrics.h +51 -0
  31. data/include/grpc/support/string_util.h +0 -1
  32. data/include/grpc/support/sync.h +0 -1
  33. data/include/grpc/support/sync_abseil.h +0 -1
  34. data/include/grpc/support/sync_custom.h +0 -1
  35. data/include/grpc/support/sync_generic.h +1 -2
  36. data/include/grpc/support/sync_posix.h +1 -2
  37. data/include/grpc/support/time.h +2 -2
  38. data/src/core/client_channel/client_channel_channelz.h +1 -1
  39. data/src/core/client_channel/client_channel_filter.cc +48 -38
  40. data/src/core/client_channel/client_channel_filter.h +6 -14
  41. data/src/core/client_channel/client_channel_internal.h +1 -1
  42. data/src/core/client_channel/client_channel_service_config.h +4 -3
  43. data/src/core/client_channel/config_selector.h +1 -1
  44. data/src/core/client_channel/dynamic_filters.h +1 -1
  45. data/src/core/client_channel/http_proxy_mapper.cc +3 -4
  46. data/src/core/client_channel/http_proxy_mapper.h +1 -1
  47. data/src/core/client_channel/retry_filter.h +1 -1
  48. data/src/core/client_channel/retry_filter_legacy_call_data.cc +1 -1
  49. data/src/core/client_channel/retry_filter_legacy_call_data.h +9 -9
  50. data/src/core/client_channel/retry_service_config.h +3 -3
  51. data/src/core/client_channel/retry_throttle.h +3 -2
  52. data/src/core/client_channel/subchannel.cc +2 -2
  53. data/src/core/client_channel/subchannel.h +7 -7
  54. data/src/core/client_channel/subchannel_pool_interface.h +1 -1
  55. data/src/core/client_channel/subchannel_stream_client.cc +1 -5
  56. data/src/core/client_channel/subchannel_stream_client.h +2 -2
  57. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +3 -49
  58. data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +0 -12
  59. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +4 -10
  60. data/src/core/ext/filters/http/http_filters_plugin.cc +15 -35
  61. data/src/core/ext/filters/http/message_compress/compression_filter.cc +8 -7
  62. data/src/core/ext/filters/http/message_compress/compression_filter.h +2 -1
  63. data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
  64. data/src/core/ext/filters/message_size/message_size_filter.cc +15 -10
  65. data/src/core/ext/filters/rbac/rbac_filter.cc +4 -11
  66. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +2 -2
  67. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +1 -0
  68. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +4 -9
  69. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +38 -1
  70. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +27 -76
  71. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +23 -4
  72. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +13 -10
  73. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +1 -49
  74. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +0 -2
  75. data/src/core/ext/transport/chttp2/transport/internal.h +4 -2
  76. data/src/core/ext/transport/chttp2/transport/parsing.cc +5 -10
  77. data/src/core/ext/transport/chttp2/transport/writing.cc +34 -31
  78. data/src/core/ext/transport/inproc/inproc_transport.cc +6 -4
  79. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +9 -8
  80. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +243 -230
  81. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +42 -48
  82. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +289 -265
  83. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +62 -70
  84. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +238 -226
  85. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +42 -50
  86. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +937 -882
  87. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +182 -208
  88. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +77 -76
  89. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +9 -9
  90. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +86 -84
  91. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +13 -13
  92. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +49 -42
  93. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +13 -13
  94. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +28 -24
  95. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +7 -7
  96. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +28 -24
  97. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +7 -7
  98. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +357 -318
  99. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +86 -86
  100. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +23 -20
  101. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +5 -7
  102. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +40 -32
  103. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +4 -4
  104. data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +24 -20
  105. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +4 -4
  106. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +517 -473
  107. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +105 -125
  108. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +1207 -1108
  109. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +261 -289
  110. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +163 -152
  111. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +29 -43
  112. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +1265 -1137
  113. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +276 -346
  114. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +32 -28
  115. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +7 -9
  116. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +212 -188
  117. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +53 -69
  118. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +564 -508
  119. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +123 -131
  120. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +340 -309
  121. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +69 -83
  122. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +25 -22
  123. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +5 -11
  124. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +786 -688
  125. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +171 -189
  126. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +367 -343
  127. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +72 -80
  128. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +19 -16
  129. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +4 -4
  130. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +23 -20
  131. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +5 -7
  132. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +77 -76
  133. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +9 -9
  134. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +539 -471
  135. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +125 -141
  136. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +672 -632
  137. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +137 -137
  138. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +44 -43
  139. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +7 -7
  140. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +35 -30
  141. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +8 -8
  142. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +713 -637
  143. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +166 -208
  144. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +65 -61
  145. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +10 -12
  146. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +65 -61
  147. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +11 -13
  148. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +91 -83
  149. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +17 -17
  150. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +102 -93
  151. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +22 -22
  152. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +25 -22
  153. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +5 -11
  154. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +162 -145
  155. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +32 -40
  156. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +314 -287
  157. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +70 -74
  158. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +330 -309
  159. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +66 -66
  160. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +16 -14
  161. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +3 -7
  162. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +516 -478
  163. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +110 -120
  164. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +495 -468
  165. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +89 -101
  166. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +88 -78
  167. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +19 -37
  168. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +41 -36
  169. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +8 -26
  170. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +46 -40
  171. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +13 -13
  172. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +307 -279
  173. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +60 -64
  174. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +382 -358
  175. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +70 -70
  176. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +540 -490
  177. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +122 -136
  178. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +339 -327
  179. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +48 -70
  180. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +3407 -3145
  181. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +700 -752
  182. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +100 -91
  183. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +20 -20
  184. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +472 -430
  185. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +102 -116
  186. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +28 -24
  187. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +7 -7
  188. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +23 -20
  189. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +5 -7
  190. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +42 -36
  191. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +9 -13
  192. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +58 -55
  193. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +9 -13
  194. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +146 -136
  195. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +30 -30
  196. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +69 -65
  197. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +15 -15
  198. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +16 -14
  199. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +3 -7
  200. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +67 -58
  201. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +14 -24
  202. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +64 -56
  203. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +14 -20
  204. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +58 -50
  205. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +16 -16
  206. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +986 -832
  207. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +269 -281
  208. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +35 -35
  209. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +3 -3
  210. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +102 -88
  211. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +25 -25
  212. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +224 -204
  213. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +46 -62
  214. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +66 -58
  215. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +14 -24
  216. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +160 -153
  217. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +28 -30
  218. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +51 -44
  219. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +12 -12
  220. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1349 -1230
  221. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +293 -309
  222. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +16 -14
  223. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +3 -7
  224. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +61 -54
  225. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +13 -23
  226. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +124 -108
  227. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +29 -37
  228. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +14 -12
  229. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +3 -3
  230. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +66 -58
  231. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +20 -20
  232. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +16 -14
  233. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +3 -7
  234. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +518 -493
  235. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +82 -108
  236. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +92 -80
  237. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +23 -29
  238. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +497 -457
  239. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +110 -124
  240. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +58 -55
  241. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +9 -11
  242. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +206 -185
  243. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +48 -64
  244. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +7 -6
  245. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +1 -1
  246. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +766 -710
  247. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +140 -150
  248. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +102 -98
  249. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +17 -17
  250. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +310 -288
  251. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +67 -67
  252. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +30 -26
  253. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +8 -8
  254. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +77 -71
  255. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +13 -13
  256. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +26 -22
  257. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +6 -6
  258. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +70 -60
  259. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +15 -15
  260. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +77 -71
  261. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +14 -14
  262. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +44 -43
  263. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +7 -7
  264. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +28 -24
  265. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +6 -6
  266. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +19 -16
  267. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +4 -4
  268. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +65 -56
  269. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +15 -19
  270. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +14 -12
  271. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +2 -2
  272. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +97 -89
  273. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +18 -18
  274. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +63 -59
  275. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +10 -10
  276. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +134 -121
  277. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +29 -29
  278. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +135 -121
  279. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +26 -26
  280. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +141 -122
  281. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +37 -37
  282. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +49 -42
  283. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +11 -11
  284. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +14 -12
  285. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +3 -3
  286. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +35 -30
  287. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +8 -8
  288. data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +63 -54
  289. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +15 -15
  290. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +58 -50
  291. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +14 -14
  292. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +28 -24
  293. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +7 -7
  294. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +32 -28
  295. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +7 -9
  296. data/src/core/ext/upb-gen/google/api/annotations.upb.h +10 -8
  297. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +1 -1
  298. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +581 -524
  299. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +118 -146
  300. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +616 -544
  301. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +136 -152
  302. data/src/core/ext/upb-gen/google/api/http.upb.h +176 -162
  303. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +34 -34
  304. data/src/core/ext/upb-gen/google/api/httpbody.upb.h +49 -47
  305. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +8 -8
  306. data/src/core/ext/upb-gen/google/protobuf/any.upb.h +21 -18
  307. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +5 -5
  308. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +2456 -2358
  309. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +367 -486
  310. data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +21 -18
  311. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +5 -5
  312. data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +7 -6
  313. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +1 -1
  314. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +134 -116
  315. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +27 -29
  316. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +21 -18
  317. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +5 -5
  318. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +126 -108
  319. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +27 -27
  320. data/src/core/ext/upb-gen/google/rpc/status.upb.h +49 -47
  321. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +8 -8
  322. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +107 -92
  323. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +27 -27
  324. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +77 -61
  325. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +21 -21
  326. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +577 -518
  327. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +121 -127
  328. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +46 -40
  329. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +10 -16
  330. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +28 -24
  331. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +6 -6
  332. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +265 -238
  333. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +57 -63
  334. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +96 -82
  335. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +19 -19
  336. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +496 -466
  337. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +81 -85
  338. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +99 -82
  339. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +16 -16
  340. data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +31 -26
  341. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +6 -6
  342. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +10 -8
  343. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +1 -1
  344. data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +31 -26
  345. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +6 -6
  346. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +24 -20
  347. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +4 -4
  348. data/src/core/ext/upb-gen/validate/validate.upb.h +2620 -2458
  349. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +363 -507
  350. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +99 -82
  351. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +16 -16
  352. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +31 -26
  353. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +6 -6
  354. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +10 -8
  355. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +1 -1
  356. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +93 -78
  357. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +17 -17
  358. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +24 -20
  359. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +4 -4
  360. data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +14 -12
  361. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +3 -3
  362. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +23 -20
  363. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +5 -7
  364. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +58 -50
  365. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +15 -15
  366. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +33 -23
  367. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +8 -8
  368. data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +23 -20
  369. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +5 -7
  370. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +32 -28
  371. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +9 -9
  372. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +103 -93
  373. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +21 -21
  374. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +37 -32
  375. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +9 -13
  376. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +127 -93
  377. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +34 -34
  378. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +44 -43
  379. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +6 -6
  380. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +23 -20
  381. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +6 -6
  382. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +79 -78
  383. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +9 -11
  384. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +7 -6
  385. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +1 -1
  386. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +86 -84
  387. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +13 -13
  388. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +324 -285
  389. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +74 -82
  390. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +237 -234
  391. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +30 -36
  392. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +33 -28
  393. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +7 -7
  394. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +97 -89
  395. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +18 -18
  396. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +53 -46
  397. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +12 -18
  398. data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +63 -54
  399. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +15 -15
  400. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +23 -20
  401. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +5 -7
  402. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +2 -5
  403. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +2 -5
  404. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +2 -5
  405. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +2 -5
  406. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +2 -5
  407. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +2 -5
  408. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +2 -5
  409. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +2 -5
  410. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +2 -5
  411. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +2 -5
  412. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +2 -5
  413. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +2 -5
  414. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +2 -5
  415. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +2 -5
  416. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +2 -5
  417. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +2 -5
  418. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +2 -5
  419. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +2 -5
  420. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +2 -5
  421. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +2 -5
  422. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +2 -5
  423. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +2 -5
  424. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +2 -5
  425. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +2 -5
  426. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +2 -5
  427. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +2 -5
  428. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +2 -5
  429. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +2 -5
  430. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +2 -5
  431. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +2 -5
  432. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +2 -5
  433. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +2 -5
  434. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +2 -5
  435. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +2 -5
  436. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +2 -5
  437. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +2 -5
  438. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +2 -5
  439. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +2 -5
  440. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +2 -5
  441. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +2 -5
  442. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +2 -5
  443. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +2 -5
  444. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +2 -5
  445. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +2 -5
  446. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +2 -5
  447. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +2 -5
  448. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +2 -5
  449. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +2 -5
  450. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +2 -5
  451. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +2 -5
  452. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +2 -5
  453. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +2 -5
  454. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +2 -5
  455. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +2 -5
  456. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +2 -5
  457. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +2 -5
  458. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +2 -5
  459. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +2 -5
  460. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +2 -5
  461. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +2 -5
  462. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +2 -5
  463. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +2 -5
  464. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +2 -5
  465. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +2 -5
  466. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +2 -5
  467. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +2 -5
  468. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +2 -5
  469. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +2 -5
  470. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +2 -5
  471. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +2 -5
  472. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +2 -5
  473. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +2 -5
  474. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +2 -5
  475. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +2 -5
  476. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +2 -5
  477. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +2 -5
  478. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +2 -5
  479. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +2 -5
  480. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +2 -5
  481. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +2 -5
  482. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +2 -5
  483. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +2 -5
  484. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +2 -5
  485. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +2 -5
  486. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +2 -5
  487. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +2 -5
  488. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +2 -5
  489. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +2 -5
  490. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +2 -5
  491. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +2 -5
  492. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +2 -5
  493. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +2 -5
  494. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +2 -5
  495. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +2 -5
  496. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +2 -5
  497. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +2 -5
  498. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +2 -5
  499. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +2 -5
  500. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +2 -5
  501. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +2 -5
  502. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +2 -5
  503. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +2 -5
  504. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +2 -5
  505. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +2 -5
  506. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +2 -5
  507. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +2 -5
  508. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +2 -5
  509. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +2 -5
  510. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +2 -5
  511. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +2 -5
  512. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +2 -5
  513. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +2 -5
  514. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +2 -5
  515. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +385 -384
  516. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +2 -5
  517. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +2 -5
  518. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +2 -5
  519. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +2 -5
  520. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +2 -5
  521. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +2 -5
  522. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +2 -5
  523. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +2 -5
  524. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +2 -5
  525. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +2 -5
  526. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +2 -5
  527. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +2 -5
  528. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +2 -5
  529. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +2 -5
  530. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +2 -5
  531. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +2 -5
  532. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +2 -5
  533. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +2 -5
  534. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +2 -5
  535. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +2 -5
  536. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +2 -5
  537. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +2 -5
  538. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +2 -5
  539. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +2 -5
  540. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +2 -5
  541. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +2 -5
  542. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +2 -5
  543. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +2 -5
  544. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +2 -5
  545. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +2 -5
  546. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +2 -5
  547. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +2 -5
  548. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +2 -5
  549. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +2 -5
  550. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +2 -5
  551. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +2 -5
  552. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +2 -5
  553. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +2 -5
  554. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +2 -5
  555. data/src/core/ext/xds/certificate_provider_store.h +3 -2
  556. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +2 -2
  557. data/src/core/ext/xds/xds_api.h +1 -1
  558. data/src/core/ext/xds/xds_audit_logger_registry.cc +2 -1
  559. data/src/core/ext/xds/xds_audit_logger_registry.h +1 -1
  560. data/src/core/ext/xds/xds_bootstrap.h +2 -4
  561. data/src/core/ext/xds/xds_bootstrap_grpc.cc +38 -6
  562. data/src/core/ext/xds/xds_bootstrap_grpc.h +22 -7
  563. data/src/core/ext/xds/xds_certificate_provider.cc +2 -2
  564. data/src/core/ext/xds/xds_certificate_provider.h +1 -1
  565. data/src/core/ext/xds/xds_channel_stack_modifier.h +2 -1
  566. data/src/core/ext/xds/xds_client.cc +283 -103
  567. data/src/core/ext/xds/xds_client.h +41 -8
  568. data/src/core/ext/xds/xds_client_grpc.cc +184 -55
  569. data/src/core/ext/xds/xds_client_grpc.h +22 -8
  570. data/src/core/ext/xds/xds_client_stats.cc +2 -2
  571. data/src/core/ext/xds/xds_client_stats.h +14 -7
  572. data/src/core/ext/xds/xds_cluster.cc +9 -9
  573. data/src/core/ext/xds/xds_cluster.h +5 -2
  574. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +2 -2
  575. data/src/core/ext/xds/xds_endpoint.cc +3 -2
  576. data/src/core/ext/xds/xds_endpoint.h +2 -2
  577. data/src/core/ext/xds/xds_health_status.h +2 -2
  578. data/src/core/ext/xds/xds_http_fault_filter.h +1 -1
  579. data/src/core/ext/xds/xds_http_filters.h +2 -2
  580. data/src/core/ext/xds/xds_http_rbac_filter.h +1 -1
  581. data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -1
  582. data/src/core/ext/xds/xds_lb_policy_registry.cc +5 -5
  583. data/src/core/ext/xds/xds_lb_policy_registry.h +1 -1
  584. data/src/core/ext/xds/xds_listener.h +1 -1
  585. data/src/core/ext/xds/xds_metrics.h +39 -0
  586. data/src/core/ext/xds/xds_route_config.h +1 -1
  587. data/src/core/ext/xds/xds_routing.h +1 -1
  588. data/src/core/ext/xds/xds_server_config_fetcher.cc +20 -19
  589. data/src/core/ext/xds/xds_transport_grpc.cc +17 -32
  590. data/src/core/ext/xds/xds_transport_grpc.h +6 -6
  591. data/src/core/lib/address_utils/parse_address.cc +8 -1
  592. data/src/core/lib/address_utils/sockaddr_utils.cc +8 -1
  593. data/src/core/lib/channel/call_finalization.h +1 -1
  594. data/src/core/lib/channel/call_tracer.cc +3 -4
  595. data/src/core/lib/channel/call_tracer.h +14 -12
  596. data/src/core/lib/channel/channel_stack.cc +9 -0
  597. data/src/core/lib/channel/channel_stack.h +5 -0
  598. data/src/core/lib/channel/channel_stack_builder_impl.cc +140 -0
  599. data/src/core/lib/channel/channelz.h +9 -6
  600. data/src/core/lib/channel/channelz_registry.h +1 -1
  601. data/src/core/lib/channel/connected_channel.cc +5 -8
  602. data/src/core/lib/channel/metrics.cc +396 -0
  603. data/src/core/lib/channel/metrics.h +406 -0
  604. data/src/core/lib/channel/promise_based_filter.h +63 -7
  605. data/src/core/lib/channel/server_call_tracer_filter.cc +2 -0
  606. data/src/core/lib/{surface/builtins.h → channel/server_call_tracer_filter.h} +7 -5
  607. data/src/core/lib/channel/tcp_tracer.h +4 -0
  608. data/src/core/lib/compression/compression_internal.cc +33 -0
  609. data/src/core/lib/compression/compression_internal.h +3 -0
  610. data/src/core/lib/config/config_vars.cc +6 -4
  611. data/src/core/lib/config/config_vars.h +4 -0
  612. data/src/core/lib/debug/stats_data.cc +269 -26
  613. data/src/core/lib/debug/stats_data.h +176 -0
  614. data/src/core/lib/event_engine/default_event_engine.h +0 -6
  615. data/src/core/lib/event_engine/event_engine_context.h +31 -0
  616. data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +65 -0
  617. data/src/core/lib/event_engine/posix.h +8 -0
  618. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +1 -1
  619. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +1 -0
  620. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +7 -0
  621. data/src/core/lib/event_engine/tcp_socket_utils.cc +8 -1
  622. data/src/core/lib/event_engine/tcp_socket_utils.h +2 -2
  623. data/src/core/lib/event_engine/windows/win_socket.cc +4 -0
  624. data/src/core/lib/event_engine/windows/win_socket.h +3 -0
  625. data/src/core/lib/event_engine/windows/windows_engine.cc +41 -8
  626. data/src/core/lib/event_engine/windows/windows_listener.cc +54 -6
  627. data/src/core/lib/event_engine/windows/windows_listener.h +14 -0
  628. data/src/core/lib/experiments/config.cc +63 -45
  629. data/src/core/lib/experiments/experiments.cc +19 -238
  630. data/src/core/lib/experiments/experiments.h +4 -119
  631. data/src/core/lib/gpr/android/log.cc +1 -1
  632. data/src/core/lib/gpr/linux/log.cc +1 -1
  633. data/src/core/lib/gpr/log.cc +26 -0
  634. data/src/core/lib/gpr/posix/log.cc +1 -1
  635. data/src/core/lib/gpr/posix/time.cc +0 -60
  636. data/src/core/lib/gpr/windows/log.cc +1 -1
  637. data/src/core/lib/gprpp/down_cast.h +4 -4
  638. data/src/core/lib/gprpp/dual_ref_counted.h +17 -9
  639. data/src/core/lib/gprpp/load_file.cc +3 -1
  640. data/src/core/lib/gprpp/orphanable.h +5 -2
  641. data/src/core/lib/gprpp/ref_counted.h +5 -2
  642. data/src/core/lib/gprpp/ref_counted_ptr.h +2 -1
  643. data/src/core/lib/gprpp/time.h +6 -0
  644. data/src/core/lib/gprpp/uuid_v4.cc +37 -0
  645. data/src/core/lib/gprpp/uuid_v4.h +36 -0
  646. data/src/core/lib/iomgr/port.h +3 -0
  647. data/src/core/lib/iomgr/tcp_client_windows.cc +24 -5
  648. data/src/core/lib/iomgr/tcp_posix.cc +47 -0
  649. data/src/core/lib/iomgr/tcp_server_posix.cc +101 -87
  650. data/src/core/lib/iomgr/tcp_server_windows.cc +60 -9
  651. data/src/core/lib/iomgr/unix_sockets_posix.cc +13 -0
  652. data/src/core/lib/promise/activity.h +1 -0
  653. data/src/core/lib/promise/context.h +2 -2
  654. data/src/core/lib/promise/party.cc +33 -3
  655. data/src/core/lib/promise/party.h +12 -14
  656. data/src/core/lib/promise/sleep.cc +1 -1
  657. data/src/core/lib/promise/status_flag.h +8 -0
  658. data/src/core/lib/resource_quota/arena.h +3 -0
  659. data/src/core/lib/resource_quota/connection_quota.cc +71 -0
  660. data/src/core/lib/resource_quota/connection_quota.h +61 -0
  661. data/src/core/lib/security/authorization/evaluate_args.cc +6 -5
  662. data/src/core/lib/security/authorization/evaluate_args.h +3 -3
  663. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +4 -7
  664. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +1 -2
  665. data/src/core/lib/security/credentials/jwt/json_token.cc +8 -4
  666. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +11 -16
  667. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +17 -10
  668. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +7 -3
  669. data/src/core/lib/security/security_connector/load_system_roots.h +3 -0
  670. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +3 -2
  671. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +87 -0
  672. data/src/core/lib/security/transport/auth_filters.h +0 -25
  673. data/src/core/lib/security/transport/security_handshaker.cc +18 -9
  674. data/src/core/lib/security/transport/security_handshaker.h +4 -2
  675. data/src/core/lib/slice/slice.cc +31 -5
  676. data/src/core/lib/slice/slice_buffer.cc +49 -11
  677. data/src/core/lib/slice/slice_buffer.h +14 -1
  678. data/src/core/lib/slice/slice_internal.h +7 -0
  679. data/src/core/lib/surface/call.cc +50 -55
  680. data/src/core/lib/surface/call.h +3 -3
  681. data/src/core/lib/surface/call_trace.h +0 -6
  682. data/src/core/lib/surface/channel.cc +104 -315
  683. data/src/core/lib/surface/channel.h +88 -107
  684. data/src/core/lib/surface/channel_create.cc +109 -0
  685. data/src/core/lib/surface/{builtins.cc → channel_create.h} +20 -15
  686. data/src/core/lib/surface/channel_init.cc +7 -6
  687. data/src/core/lib/surface/channel_init.h +18 -2
  688. data/src/core/lib/surface/init.cc +9 -14
  689. data/src/core/lib/surface/lame_client.cc +3 -28
  690. data/src/core/lib/surface/lame_client.h +7 -2
  691. data/src/core/lib/surface/legacy_channel.cc +414 -0
  692. data/src/core/lib/surface/legacy_channel.h +124 -0
  693. data/src/core/lib/surface/server.cc +20 -35
  694. data/src/core/lib/surface/server.h +10 -6
  695. data/src/core/lib/surface/server_interface.h +43 -0
  696. data/src/core/lib/surface/version.cc +2 -2
  697. data/src/core/lib/transport/batch_builder.cc +7 -16
  698. data/src/core/lib/transport/batch_builder.h +4 -6
  699. data/src/core/lib/transport/call_filters.cc +119 -19
  700. data/src/core/lib/transport/call_filters.h +339 -40
  701. data/src/core/lib/transport/call_spine.h +8 -3
  702. data/src/core/lib/transport/endpoint_info_handshaker.cc +80 -0
  703. data/src/core/lib/transport/endpoint_info_handshaker.h +37 -0
  704. data/src/core/lib/transport/handshaker_factory.h +1 -2
  705. data/src/core/lib/transport/metadata.cc +1 -1
  706. data/src/core/lib/transport/metadata_batch.cc +66 -5
  707. data/src/core/lib/transport/metadata_batch.h +12 -16
  708. data/src/core/lib/transport/metadata_info.cc +55 -0
  709. data/src/core/lib/transport/metadata_info.h +85 -0
  710. data/src/core/lib/transport/transport_op_string.cc +0 -8
  711. data/src/core/load_balancing/address_filtering.cc +1 -1
  712. data/src/core/load_balancing/address_filtering.h +1 -1
  713. data/src/core/{client_channel/backend_metric.cc → load_balancing/backend_metric_parser.cc} +1 -1
  714. data/src/core/{client_channel/backend_metric.h → load_balancing/backend_metric_parser.h} +3 -3
  715. data/src/core/load_balancing/child_policy_handler.cc +1 -1
  716. data/src/core/load_balancing/delegating_helper.h +8 -0
  717. data/src/core/load_balancing/endpoint_list.cc +1 -1
  718. data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +3 -1
  719. data/src/core/load_balancing/grpclb/grpclb.cc +39 -44
  720. data/src/core/load_balancing/grpclb/grpclb_client_stats.h +1 -1
  721. data/src/core/load_balancing/health_check_client.cc +6 -6
  722. data/src/core/load_balancing/health_check_client_internal.h +4 -5
  723. data/src/core/load_balancing/lb_policy.h +13 -4
  724. data/src/core/load_balancing/lb_policy_registry.h +2 -2
  725. data/src/core/load_balancing/oob_backend_metric.cc +6 -6
  726. data/src/core/load_balancing/oob_backend_metric.h +1 -1
  727. data/src/core/load_balancing/oob_backend_metric_internal.h +6 -6
  728. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +29 -29
  729. data/src/core/load_balancing/pick_first/pick_first.cc +70 -148
  730. data/src/core/load_balancing/priority/priority.cc +8 -7
  731. data/src/core/load_balancing/ring_hash/ring_hash.cc +8 -8
  732. data/src/core/load_balancing/ring_hash/ring_hash.h +1 -1
  733. data/src/core/load_balancing/rls/rls.cc +202 -79
  734. data/src/core/load_balancing/rls/rls.h +26 -0
  735. data/src/core/load_balancing/round_robin/round_robin.cc +7 -462
  736. data/src/core/load_balancing/subchannel_interface.h +3 -2
  737. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +1 -1
  738. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +169 -964
  739. data/src/core/load_balancing/weighted_target/weighted_target.cc +13 -10
  740. data/src/core/load_balancing/weighted_target/weighted_target.h +28 -0
  741. data/src/core/load_balancing/xds/cds.cc +8 -8
  742. data/src/core/load_balancing/xds/xds_cluster_impl.cc +101 -57
  743. data/src/core/load_balancing/xds/xds_cluster_manager.cc +6 -6
  744. data/src/core/load_balancing/xds/xds_override_host.cc +15 -15
  745. data/src/core/load_balancing/xds/xds_override_host.h +1 -1
  746. data/src/core/load_balancing/xds/xds_wrr_locality.cc +9 -8
  747. data/src/core/plugin_registry/grpc_plugin_registry.cc +20 -3
  748. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +0 -1
  749. data/src/core/resolver/binder/binder_resolver.cc +9 -2
  750. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +8 -7
  751. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -2
  752. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +3 -3
  753. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +1 -1
  754. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +2 -2
  755. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +3 -1
  756. data/src/core/resolver/dns/native/dns_resolver.cc +3 -3
  757. data/src/core/resolver/endpoint_addresses.h +4 -4
  758. data/src/core/resolver/fake/fake_resolver.cc +2 -2
  759. data/src/core/resolver/fake/fake_resolver.h +1 -1
  760. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +9 -4
  761. data/src/core/resolver/resolver_registry.h +2 -2
  762. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +6 -6
  763. data/src/core/resolver/xds/xds_dependency_manager.cc +14 -9
  764. data/src/core/resolver/xds/xds_dependency_manager.h +5 -5
  765. data/src/core/resolver/xds/xds_resolver.cc +17 -16
  766. data/src/core/resolver/xds/xds_resolver_attributes.h +1 -1
  767. data/src/core/{client_channel → service_config}/service_config_channel_arg_filter.cc +1 -1
  768. data/src/core/service_config/service_config_parser.h +1 -1
  769. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +6 -4
  770. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +1 -0
  771. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +1 -1
  772. data/src/core/tsi/ssl_transport_security.cc +198 -70
  773. data/src/core/tsi/ssl_transport_security_utils.cc +127 -0
  774. data/src/core/tsi/ssl_transport_security_utils.h +27 -0
  775. data/src/ruby/ext/grpc/extconf.rb +0 -3
  776. data/src/ruby/ext/grpc/rb_grpc.c +1 -0
  777. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +0 -2
  778. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +0 -3
  779. data/src/ruby/lib/grpc/generic/active_call.rb +8 -2
  780. data/src/ruby/lib/grpc/version.rb +1 -1
  781. data/src/ruby/spec/generic/rpc_server_spec.rb +25 -0
  782. data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc +320 -0
  783. data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.h +64 -0
  784. data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +93 -0
  785. data/third_party/abseil-cpp/absl/log/globals.cc +178 -0
  786. data/third_party/abseil-cpp/absl/log/globals.h +218 -0
  787. data/third_party/abseil-cpp/absl/log/internal/append_truncated.h +47 -0
  788. data/third_party/abseil-cpp/absl/log/internal/conditions.cc +83 -0
  789. data/third_party/abseil-cpp/absl/log/internal/conditions.h +239 -0
  790. data/third_party/abseil-cpp/absl/log/internal/config.h +45 -0
  791. data/third_party/abseil-cpp/absl/log/internal/fnmatch.cc +73 -0
  792. data/third_party/abseil-cpp/absl/log/internal/fnmatch.h +35 -0
  793. data/third_party/abseil-cpp/absl/log/internal/globals.cc +145 -0
  794. data/third_party/abseil-cpp/absl/log/internal/globals.h +101 -0
  795. data/third_party/abseil-cpp/absl/log/internal/log_format.cc +205 -0
  796. data/third_party/abseil-cpp/absl/log/internal/log_format.h +78 -0
  797. data/third_party/abseil-cpp/absl/log/internal/log_impl.h +282 -0
  798. data/third_party/abseil-cpp/absl/log/internal/log_message.cc +633 -0
  799. data/third_party/abseil-cpp/absl/log/internal/log_message.h +375 -0
  800. data/third_party/abseil-cpp/absl/log/internal/log_sink_set.cc +296 -0
  801. data/third_party/abseil-cpp/absl/log/internal/log_sink_set.h +54 -0
  802. data/third_party/abseil-cpp/absl/log/internal/nullguard.cc +35 -0
  803. data/third_party/abseil-cpp/absl/log/internal/nullguard.h +88 -0
  804. data/third_party/abseil-cpp/absl/log/internal/nullstream.h +136 -0
  805. data/third_party/abseil-cpp/absl/log/internal/proto.cc +220 -0
  806. data/third_party/abseil-cpp/absl/log/internal/proto.h +288 -0
  807. data/third_party/abseil-cpp/absl/log/internal/strip.h +72 -0
  808. data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +340 -0
  809. data/third_party/abseil-cpp/absl/log/internal/vlog_config.h +163 -0
  810. data/third_party/abseil-cpp/absl/log/internal/voidify.h +44 -0
  811. data/third_party/abseil-cpp/absl/log/log.h +361 -0
  812. data/third_party/abseil-cpp/absl/log/log_entry.cc +41 -0
  813. data/third_party/abseil-cpp/absl/log/log_entry.h +221 -0
  814. data/third_party/abseil-cpp/absl/log/log_sink.cc +23 -0
  815. data/third_party/abseil-cpp/absl/log/log_sink.h +64 -0
  816. data/third_party/abseil-cpp/absl/log/log_sink_registry.h +61 -0
  817. data/third_party/abseil-cpp/absl/log/vlog_is_on.h +72 -0
  818. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +1 -7
  819. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +50 -39
  820. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +2 -2
  821. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +15 -28
  822. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
  823. data/third_party/boringssl-with-bazel/src/crypto/des/des.c +45 -32
  824. data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +24 -0
  825. data/third_party/boringssl-with-bazel/src/crypto/internal.h +12 -4
  826. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +4 -0
  827. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +40 -61
  828. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +24 -7
  829. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +36 -59
  830. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +4 -4
  831. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +13 -2
  832. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +10 -10
  833. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +2 -2
  834. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +3 -3
  835. data/third_party/boringssl-with-bazel/src/include/openssl/pki/certificate.h +83 -0
  836. data/third_party/boringssl-with-bazel/src/include/openssl/pki/signature_verify_cache.h +41 -0
  837. data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +6 -0
  838. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +19 -10
  839. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +14 -0
  840. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +16 -4
  841. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +196 -141
  842. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +8 -1
  843. data/third_party/upb/upb/base/descriptor_constants.h +29 -2
  844. data/third_party/upb/upb/{wire/internal/swap.h → base/internal/endian.h} +12 -11
  845. data/third_party/upb/upb/base/status.h +1 -1
  846. data/third_party/upb/upb/base/status.hpp +5 -1
  847. data/third_party/upb/upb/base/string_view.h +7 -5
  848. data/third_party/upb/upb/base/upcast.h +29 -0
  849. data/third_party/upb/upb/generated_code_support.h +2 -1
  850. data/third_party/upb/upb/json/decode.c +103 -53
  851. data/third_party/upb/upb/json/decode.h +3 -26
  852. data/third_party/upb/upb/json/encode.c +3 -26
  853. data/third_party/upb/upb/json/encode.h +3 -26
  854. data/third_party/upb/upb/mem/arena.c +233 -106
  855. data/third_party/upb/upb/mem/arena.h +14 -66
  856. data/third_party/upb/upb/mem/arena.hpp +8 -4
  857. data/third_party/upb/upb/mem/internal/arena.h +76 -58
  858. data/third_party/upb/upb/message/accessors.c +19 -46
  859. data/third_party/upb/upb/message/accessors.h +208 -123
  860. data/third_party/upb/upb/message/array.c +55 -83
  861. data/third_party/upb/upb/message/array.h +18 -30
  862. data/third_party/upb/upb/message/compat.c +39 -0
  863. data/third_party/upb/upb/message/compat.h +41 -0
  864. data/third_party/upb/upb/message/copy.c +322 -0
  865. data/third_party/upb/upb/message/copy.h +56 -0
  866. data/third_party/upb/upb/message/internal/accessors.h +178 -178
  867. data/third_party/upb/upb/message/internal/array.h +80 -81
  868. data/third_party/upb/upb/message/internal/extension.c +63 -0
  869. data/third_party/upb/upb/message/internal/extension.h +12 -12
  870. data/third_party/upb/upb/message/internal/map.h +28 -41
  871. data/third_party/upb/upb/message/internal/map_entry.h +14 -39
  872. data/third_party/upb/upb/message/internal/map_sorter.h +18 -37
  873. data/third_party/upb/upb/message/internal/message.c +59 -0
  874. data/third_party/upb/upb/message/internal/message.h +26 -42
  875. data/third_party/upb/upb/message/internal/tagged_ptr.h +56 -0
  876. data/third_party/upb/upb/message/internal/types.h +7 -12
  877. data/third_party/upb/upb/message/map.c +3 -26
  878. data/third_party/upb/upb/message/map.h +5 -33
  879. data/third_party/upb/upb/message/map_gencode_util.h +3 -26
  880. data/third_party/upb/upb/message/map_sorter.c +22 -34
  881. data/third_party/upb/upb/message/message.c +28 -104
  882. data/third_party/upb/upb/message/message.h +4 -8
  883. data/third_party/upb/upb/message/tagged_ptr.h +14 -31
  884. data/third_party/upb/upb/message/value.h +3 -5
  885. data/third_party/upb/upb/mini_descriptor/build_enum.c +20 -11
  886. data/third_party/upb/upb/mini_descriptor/decode.c +127 -107
  887. data/third_party/upb/upb/mini_descriptor/decode.h +3 -8
  888. data/third_party/upb/upb/mini_descriptor/link.c +34 -22
  889. data/third_party/upb/upb/mini_descriptor/link.h +1 -1
  890. data/third_party/upb/upb/mini_table/enum.h +4 -6
  891. data/third_party/upb/upb/mini_table/extension.h +37 -0
  892. data/third_party/upb/upb/mini_table/extension_registry.c +9 -2
  893. data/third_party/upb/upb/mini_table/field.h +46 -60
  894. data/third_party/upb/upb/mini_table/file.h +44 -0
  895. data/third_party/upb/upb/mini_table/internal/enum.h +19 -20
  896. data/third_party/upb/upb/mini_table/internal/extension.h +34 -3
  897. data/third_party/upb/upb/mini_table/internal/field.h +136 -27
  898. data/third_party/upb/upb/mini_table/internal/file.h +47 -10
  899. data/third_party/upb/upb/mini_table/internal/message.c +17 -9
  900. data/third_party/upb/upb/mini_table/internal/message.h +94 -23
  901. data/third_party/upb/upb/mini_table/internal/size_log2.h +77 -0
  902. data/third_party/upb/upb/mini_table/internal/sub.h +39 -4
  903. data/third_party/upb/upb/mini_table/message.c +18 -19
  904. data/third_party/upb/upb/mini_table/message.h +29 -20
  905. data/third_party/upb/upb/mini_table/sub.h +40 -1
  906. data/third_party/upb/upb/port/def.inc +18 -0
  907. data/third_party/upb/upb/port/undef.inc +3 -0
  908. data/third_party/upb/upb/reflection/def.hpp +8 -4
  909. data/third_party/upb/upb/reflection/def_pool.c +81 -2
  910. data/third_party/upb/upb/reflection/def_pool.h +8 -0
  911. data/third_party/upb/upb/reflection/enum_def.c +42 -19
  912. data/third_party/upb/upb/reflection/enum_def.h +1 -0
  913. data/third_party/upb/upb/reflection/enum_value_def.c +43 -14
  914. data/third_party/upb/upb/reflection/enum_value_def.h +2 -0
  915. data/third_party/upb/upb/reflection/extension_range.c +13 -5
  916. data/third_party/upb/upb/reflection/extension_range.h +2 -0
  917. data/third_party/upb/upb/reflection/field_def.c +177 -130
  918. data/third_party/upb/upb/reflection/field_def.h +10 -1
  919. data/third_party/upb/upb/reflection/file_def.c +98 -9
  920. data/third_party/upb/upb/reflection/file_def.h +3 -0
  921. data/third_party/upb/upb/reflection/internal/def_builder.c +85 -7
  922. data/third_party/upb/upb/reflection/internal/def_builder.h +23 -0
  923. data/third_party/upb/upb/reflection/internal/enum_def.h +5 -4
  924. data/third_party/upb/upb/reflection/internal/enum_reserved_range.h +1 -1
  925. data/third_party/upb/upb/reflection/internal/enum_value_def.h +2 -1
  926. data/third_party/upb/upb/reflection/internal/extension_range.h +2 -2
  927. data/third_party/upb/upb/reflection/internal/field_def.h +11 -10
  928. data/third_party/upb/upb/reflection/internal/message_def.h +6 -3
  929. data/third_party/upb/upb/reflection/internal/method_def.h +5 -3
  930. data/third_party/upb/upb/reflection/internal/oneof_def.h +5 -3
  931. data/third_party/upb/upb/reflection/internal/service_def.h +5 -3
  932. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +20 -0
  933. data/third_party/upb/upb/reflection/message.c +27 -12
  934. data/third_party/upb/upb/reflection/message.h +5 -5
  935. data/third_party/upb/upb/reflection/message_def.c +56 -27
  936. data/third_party/upb/upb/reflection/message_def.h +2 -0
  937. data/third_party/upb/upb/reflection/method_def.c +20 -9
  938. data/third_party/upb/upb/reflection/method_def.h +2 -0
  939. data/third_party/upb/upb/reflection/oneof_def.c +20 -11
  940. data/third_party/upb/upb/reflection/oneof_def.h +3 -1
  941. data/third_party/upb/upb/reflection/service_def.c +25 -13
  942. data/third_party/upb/upb/reflection/service_def.h +2 -0
  943. data/third_party/upb/upb/text/encode.c +126 -36
  944. data/third_party/upb/upb/wire/decode.c +214 -196
  945. data/third_party/upb/upb/wire/decode.h +10 -0
  946. data/third_party/upb/upb/wire/encode.c +105 -91
  947. data/third_party/upb/upb/wire/encode.h +4 -3
  948. data/third_party/upb/upb/wire/{decode_fast.c → internal/decode_fast.c} +53 -48
  949. data/third_party/upb/upb/wire/{decode_fast.h → internal/decode_fast.h} +6 -5
  950. data/third_party/upb/upb/wire/internal/{decode.h → decoder.h} +15 -31
  951. data/third_party/upb/upb/wire/internal/reader.h +61 -0
  952. data/third_party/upb/upb/wire/reader.c +9 -6
  953. data/third_party/upb/upb/wire/reader.h +18 -47
  954. data/third_party/utf8_range/utf8_range.c +467 -0
  955. data/third_party/utf8_range/utf8_range.h +9 -8
  956. metadata +83 -30
  957. data/src/core/client_channel/channel_connectivity.cc +0 -265
  958. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +0 -318
  959. data/src/core/ext/filters/channel_idle/channel_idle_filter.h +0 -150
  960. data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +0 -325
  961. data/src/core/ext/filters/http/message_compress/legacy_compression_filter.h +0 -139
  962. data/src/core/lib/gpr/wrap_memcpy.cc +0 -43
  963. data/src/core/lib/security/transport/legacy_server_auth_filter.cc +0 -244
  964. data/src/core/lib/slice/b64.cc +0 -239
  965. data/src/core/lib/slice/b64.h +0 -52
  966. data/src/core/lib/surface/call_trace.cc +0 -163
  967. data/src/core/lib/surface/channel_ping.cc +0 -69
  968. data/src/core/lib/transport/call_factory.cc +0 -41
  969. data/src/core/lib/transport/call_factory.h +0 -56
  970. data/src/core/load_balancing/subchannel_list.h +0 -455
  971. data/third_party/upb/upb/message/types.h +0 -15
  972. data/third_party/utf8_range/naive.c +0 -92
  973. data/third_party/utf8_range/range2-neon.c +0 -157
  974. data/third_party/utf8_range/range2-sse.c +0 -170
@@ -18,11 +18,9 @@
18
18
 
19
19
  #include <inttypes.h>
20
20
  #include <stdlib.h>
21
- #include <string.h>
22
21
 
23
22
  #include <algorithm>
24
23
  #include <atomic>
25
- #include <functional>
26
24
  #include <map>
27
25
  #include <memory>
28
26
  #include <set>
@@ -46,960 +44,142 @@
46
44
  #include <grpc/impl/connectivity_state.h>
47
45
  #include <grpc/support/log.h>
48
46
 
49
- #include "src/core/load_balancing/backend_metric_data.h"
50
- #include "src/core/load_balancing/endpoint_list.h"
51
- #include "src/core/load_balancing/oob_backend_metric.h"
52
- #include "src/core/load_balancing/subchannel_list.h"
53
- #include "src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h"
54
- #include "src/core/lib/address_utils/sockaddr_utils.h"
55
- #include "src/core/lib/channel/channel_args.h"
56
- #include "src/core/lib/config/core_configuration.h"
57
- #include "src/core/lib/debug/stats.h"
58
- #include "src/core/lib/debug/stats_data.h"
59
- #include "src/core/lib/debug/trace.h"
60
- #include "src/core/lib/experiments/experiments.h"
61
- #include "src/core/lib/gprpp/debug_location.h"
62
- #include "src/core/lib/gprpp/orphanable.h"
63
- #include "src/core/lib/gprpp/ref_counted.h"
64
- #include "src/core/lib/gprpp/ref_counted_ptr.h"
65
- #include "src/core/lib/gprpp/sync.h"
66
- #include "src/core/lib/gprpp/time.h"
67
- #include "src/core/lib/gprpp/validation_errors.h"
68
- #include "src/core/lib/gprpp/work_serializer.h"
69
- #include "src/core/lib/iomgr/exec_ctx.h"
70
- #include "src/core/lib/iomgr/resolved_address.h"
71
- #include "src/core/lib/json/json.h"
72
- #include "src/core/lib/json/json_args.h"
73
- #include "src/core/lib/json/json_object_loader.h"
74
- #include "src/core/lib/transport/connectivity_state.h"
75
- #include "src/core/load_balancing/lb_policy.h"
76
- #include "src/core/load_balancing/lb_policy_factory.h"
77
- #include "src/core/load_balancing/subchannel_interface.h"
78
- #include "src/core/resolver/endpoint_addresses.h"
79
- #include "src/core/resolver/server_address.h"
80
-
81
- namespace grpc_core {
82
-
83
- TraceFlag grpc_lb_wrr_trace(false, "weighted_round_robin_lb");
84
-
85
- namespace {
86
-
87
- constexpr absl::string_view kWeightedRoundRobin = "weighted_round_robin";
88
-
89
- // Config for WRR policy.
90
- class WeightedRoundRobinConfig : public LoadBalancingPolicy::Config {
91
- public:
92
- WeightedRoundRobinConfig() = default;
93
-
94
- WeightedRoundRobinConfig(const WeightedRoundRobinConfig&) = delete;
95
- WeightedRoundRobinConfig& operator=(const WeightedRoundRobinConfig&) = delete;
96
-
97
- WeightedRoundRobinConfig(WeightedRoundRobinConfig&&) = delete;
98
- WeightedRoundRobinConfig& operator=(WeightedRoundRobinConfig&&) = delete;
99
-
100
- absl::string_view name() const override { return kWeightedRoundRobin; }
101
-
102
- bool enable_oob_load_report() const { return enable_oob_load_report_; }
103
- Duration oob_reporting_period() const { return oob_reporting_period_; }
104
- Duration blackout_period() const { return blackout_period_; }
105
- Duration weight_update_period() const { return weight_update_period_; }
106
- Duration weight_expiration_period() const {
107
- return weight_expiration_period_;
108
- }
109
- float error_utilization_penalty() const { return error_utilization_penalty_; }
110
-
111
- static const JsonLoaderInterface* JsonLoader(const JsonArgs&) {
112
- static const auto* loader =
113
- JsonObjectLoader<WeightedRoundRobinConfig>()
114
- .OptionalField("enableOobLoadReport",
115
- &WeightedRoundRobinConfig::enable_oob_load_report_)
116
- .OptionalField("oobReportingPeriod",
117
- &WeightedRoundRobinConfig::oob_reporting_period_)
118
- .OptionalField("blackoutPeriod",
119
- &WeightedRoundRobinConfig::blackout_period_)
120
- .OptionalField("weightUpdatePeriod",
121
- &WeightedRoundRobinConfig::weight_update_period_)
122
- .OptionalField("weightExpirationPeriod",
123
- &WeightedRoundRobinConfig::weight_expiration_period_)
124
- .OptionalField(
125
- "errorUtilizationPenalty",
126
- &WeightedRoundRobinConfig::error_utilization_penalty_)
127
- .Finish();
128
- return loader;
129
- }
130
-
131
- void JsonPostLoad(const Json&, const JsonArgs&, ValidationErrors* errors) {
132
- // Impose lower bound of 100ms on weightUpdatePeriod.
133
- weight_update_period_ =
134
- std::max(weight_update_period_, Duration::Milliseconds(100));
135
- if (error_utilization_penalty_ < 0) {
136
- ValidationErrors::ScopedField field(errors, ".errorUtilizationPenalty");
137
- errors->AddError("must be non-negative");
138
- }
139
- }
140
-
141
- private:
142
- bool enable_oob_load_report_ = false;
143
- Duration oob_reporting_period_ = Duration::Seconds(10);
144
- Duration blackout_period_ = Duration::Seconds(10);
145
- Duration weight_update_period_ = Duration::Seconds(1);
146
- Duration weight_expiration_period_ = Duration::Minutes(3);
147
- float error_utilization_penalty_ = 1.0;
148
- };
149
-
150
- // Legacy WRR LB policy (not delegating to pick_first)
151
- class OldWeightedRoundRobin : public LoadBalancingPolicy {
152
- public:
153
- explicit OldWeightedRoundRobin(Args args);
154
-
155
- absl::string_view name() const override { return kWeightedRoundRobin; }
156
-
157
- absl::Status UpdateLocked(UpdateArgs args) override;
158
- void ResetBackoffLocked() override;
159
-
160
- private:
161
- // Represents the weight for a given address.
162
- class AddressWeight : public RefCounted<AddressWeight> {
163
- public:
164
- AddressWeight(RefCountedPtr<OldWeightedRoundRobin> wrr, std::string key)
165
- : wrr_(std::move(wrr)), key_(std::move(key)) {}
166
- ~AddressWeight() override;
167
-
168
- void MaybeUpdateWeight(double qps, double eps, double utilization,
169
- float error_utilization_penalty);
170
-
171
- float GetWeight(Timestamp now, Duration weight_expiration_period,
172
- Duration blackout_period);
173
-
174
- void ResetNonEmptySince();
175
-
176
- private:
177
- RefCountedPtr<OldWeightedRoundRobin> wrr_;
178
- const std::string key_;
179
-
180
- Mutex mu_;
181
- float weight_ ABSL_GUARDED_BY(&mu_) = 0;
182
- Timestamp non_empty_since_ ABSL_GUARDED_BY(&mu_) = Timestamp::InfFuture();
183
- Timestamp last_update_time_ ABSL_GUARDED_BY(&mu_) = Timestamp::InfPast();
184
- };
185
-
186
- // Forward declaration.
187
- class WeightedRoundRobinSubchannelList;
188
-
189
- // Data for a particular subchannel in a subchannel list.
190
- // This subclass adds the following functionality:
191
- // - Tracks the previous connectivity state of the subchannel, so that
192
- // we know how many subchannels are in each state.
193
- class WeightedRoundRobinSubchannelData
194
- : public SubchannelData<WeightedRoundRobinSubchannelList,
195
- WeightedRoundRobinSubchannelData> {
196
- public:
197
- WeightedRoundRobinSubchannelData(
198
- SubchannelList<WeightedRoundRobinSubchannelList,
199
- WeightedRoundRobinSubchannelData>* subchannel_list,
200
- const ServerAddress& address, RefCountedPtr<SubchannelInterface> sc);
201
-
202
- absl::optional<grpc_connectivity_state> connectivity_state() const {
203
- return logical_connectivity_state_;
204
- }
205
-
206
- RefCountedPtr<AddressWeight> weight() const { return weight_; }
207
-
208
- private:
209
- class OobWatcher : public OobBackendMetricWatcher {
210
- public:
211
- OobWatcher(RefCountedPtr<AddressWeight> weight,
212
- float error_utilization_penalty)
213
- : weight_(std::move(weight)),
214
- error_utilization_penalty_(error_utilization_penalty) {}
215
-
216
- void OnBackendMetricReport(
217
- const BackendMetricData& backend_metric_data) override;
218
-
219
- private:
220
- RefCountedPtr<AddressWeight> weight_;
221
- const float error_utilization_penalty_;
222
- };
223
-
224
- // Performs connectivity state updates that need to be done only
225
- // after we have started watching.
226
- void ProcessConnectivityChangeLocked(
227
- absl::optional<grpc_connectivity_state> old_state,
228
- grpc_connectivity_state new_state) override;
229
-
230
- // Updates the logical connectivity state.
231
- void UpdateLogicalConnectivityStateLocked(
232
- grpc_connectivity_state connectivity_state);
233
-
234
- // The logical connectivity state of the subchannel.
235
- // Note that the logical connectivity state may differ from the
236
- // actual reported state in some cases (e.g., after we see
237
- // TRANSIENT_FAILURE, we ignore any subsequent state changes until
238
- // we see READY).
239
- absl::optional<grpc_connectivity_state> logical_connectivity_state_;
240
-
241
- RefCountedPtr<AddressWeight> weight_;
242
- };
243
-
244
- // A list of subchannels.
245
- class WeightedRoundRobinSubchannelList
246
- : public SubchannelList<WeightedRoundRobinSubchannelList,
247
- WeightedRoundRobinSubchannelData> {
248
- public:
249
- WeightedRoundRobinSubchannelList(OldWeightedRoundRobin* policy,
250
- EndpointAddressesIterator* addresses,
251
- const ChannelArgs& args)
252
- : SubchannelList(policy,
253
- (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)
254
- ? "WeightedRoundRobinSubchannelList"
255
- : nullptr),
256
- addresses, policy->channel_control_helper(), args) {
257
- // Need to maintain a ref to the LB policy as long as we maintain
258
- // any references to subchannels, since the subchannels'
259
- // pollset_sets will include the LB policy's pollset_set.
260
- policy->Ref(DEBUG_LOCATION, "subchannel_list").release();
261
- }
262
-
263
- ~WeightedRoundRobinSubchannelList() override {
264
- OldWeightedRoundRobin* p = static_cast<OldWeightedRoundRobin*>(policy());
265
- p->Unref(DEBUG_LOCATION, "subchannel_list");
266
- }
267
-
268
- // Updates the counters of subchannels in each state when a
269
- // subchannel transitions from old_state to new_state.
270
- void UpdateStateCountersLocked(
271
- absl::optional<grpc_connectivity_state> old_state,
272
- grpc_connectivity_state new_state);
273
-
274
- // Ensures that the right subchannel list is used and then updates
275
- // the aggregated connectivity state based on the subchannel list's
276
- // state counters.
277
- void MaybeUpdateAggregatedConnectivityStateLocked(
278
- absl::Status status_for_tf);
279
-
280
- private:
281
- std::shared_ptr<WorkSerializer> work_serializer() const override {
282
- return static_cast<OldWeightedRoundRobin*>(policy())->work_serializer();
283
- }
284
-
285
- std::string CountersString() const {
286
- return absl::StrCat("num_subchannels=", num_subchannels(),
287
- " num_ready=", num_ready_,
288
- " num_connecting=", num_connecting_,
289
- " num_transient_failure=", num_transient_failure_);
290
- }
291
-
292
- size_t num_ready_ = 0;
293
- size_t num_connecting_ = 0;
294
- size_t num_transient_failure_ = 0;
295
-
296
- absl::Status last_failure_;
297
- };
298
-
299
- // A picker that performs WRR picks with weights based on
300
- // endpoint-reported utilization and QPS.
301
- class Picker : public SubchannelPicker {
302
- public:
303
- Picker(RefCountedPtr<OldWeightedRoundRobin> wrr,
304
- WeightedRoundRobinSubchannelList* subchannel_list);
305
-
306
- ~Picker() override;
307
-
308
- PickResult Pick(PickArgs args) override;
309
-
310
- void Orphan() override;
311
-
312
- private:
313
- // A call tracker that collects per-call endpoint utilization reports.
314
- class SubchannelCallTracker : public SubchannelCallTrackerInterface {
315
- public:
316
- SubchannelCallTracker(RefCountedPtr<AddressWeight> weight,
317
- float error_utilization_penalty)
318
- : weight_(std::move(weight)),
319
- error_utilization_penalty_(error_utilization_penalty) {}
320
-
321
- void Start() override {}
322
-
323
- void Finish(FinishArgs args) override;
324
-
325
- private:
326
- RefCountedPtr<AddressWeight> weight_;
327
- const float error_utilization_penalty_;
328
- };
329
-
330
- // Info stored about each subchannel.
331
- struct SubchannelInfo {
332
- SubchannelInfo(RefCountedPtr<SubchannelInterface> subchannel,
333
- RefCountedPtr<AddressWeight> weight)
334
- : subchannel(std::move(subchannel)), weight(std::move(weight)) {}
335
-
336
- RefCountedPtr<SubchannelInterface> subchannel;
337
- RefCountedPtr<AddressWeight> weight;
338
- };
339
-
340
- // Returns the index into subchannels_ to be picked.
341
- size_t PickIndex();
342
-
343
- // Builds a new scheduler and swaps it into place, then starts a
344
- // timer for the next update.
345
- void BuildSchedulerAndStartTimerLocked()
346
- ABSL_EXCLUSIVE_LOCKS_REQUIRED(&timer_mu_);
347
-
348
- RefCountedPtr<OldWeightedRoundRobin> wrr_;
349
- RefCountedPtr<WeightedRoundRobinConfig> config_;
350
- std::vector<SubchannelInfo> subchannels_;
351
-
352
- Mutex scheduler_mu_;
353
- std::shared_ptr<StaticStrideScheduler> scheduler_
354
- ABSL_GUARDED_BY(&scheduler_mu_);
355
-
356
- Mutex timer_mu_ ABSL_ACQUIRED_BEFORE(&scheduler_mu_);
357
- absl::optional<grpc_event_engine::experimental::EventEngine::TaskHandle>
358
- timer_handle_ ABSL_GUARDED_BY(&timer_mu_);
359
-
360
- // Used when falling back to RR.
361
- std::atomic<size_t> last_picked_index_;
362
- };
363
-
364
- ~OldWeightedRoundRobin() override;
365
-
366
- void ShutdownLocked() override;
367
-
368
- RefCountedPtr<AddressWeight> GetOrCreateWeight(
369
- const grpc_resolved_address& address);
370
-
371
- RefCountedPtr<WeightedRoundRobinConfig> config_;
372
-
373
- // List of subchannels.
374
- RefCountedPtr<WeightedRoundRobinSubchannelList> subchannel_list_;
375
- // Latest pending subchannel list.
376
- // When we get an updated address list, we create a new subchannel list
377
- // for it here, and we wait to swap it into subchannel_list_ until the new
378
- // list becomes READY.
379
- RefCountedPtr<WeightedRoundRobinSubchannelList>
380
- latest_pending_subchannel_list_;
381
-
382
- Mutex address_weight_map_mu_;
383
- std::map<std::string, AddressWeight*, std::less<>> address_weight_map_
384
- ABSL_GUARDED_BY(&address_weight_map_mu_);
385
-
386
- bool shutdown_ = false;
387
-
388
- absl::BitGen bit_gen_;
389
-
390
- // Accessed by picker.
391
- std::atomic<uint32_t> scheduler_state_{absl::Uniform<uint32_t>(bit_gen_)};
392
- };
393
-
394
- //
395
- // OldWeightedRoundRobin::AddressWeight
396
- //
397
-
398
- OldWeightedRoundRobin::AddressWeight::~AddressWeight() {
399
- MutexLock lock(&wrr_->address_weight_map_mu_);
400
- auto it = wrr_->address_weight_map_.find(key_);
401
- if (it != wrr_->address_weight_map_.end() && it->second == this) {
402
- wrr_->address_weight_map_.erase(it);
403
- }
404
- }
405
-
406
- void OldWeightedRoundRobin::AddressWeight::MaybeUpdateWeight(
407
- double qps, double eps, double utilization,
408
- float error_utilization_penalty) {
409
- // Compute weight.
410
- float weight = 0;
411
- if (qps > 0 && utilization > 0) {
412
- double penalty = 0.0;
413
- if (eps > 0 && error_utilization_penalty > 0) {
414
- penalty = eps / qps * error_utilization_penalty;
415
- }
416
- weight = qps / (utilization + penalty);
417
- }
418
- if (weight == 0) {
419
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
420
- gpr_log(GPR_INFO,
421
- "[WRR %p] subchannel %s: qps=%f, eps=%f, utilization=%f: "
422
- "error_util_penalty=%f, weight=%f (not updating)",
423
- wrr_.get(), key_.c_str(), qps, eps, utilization,
424
- error_utilization_penalty, weight);
425
- }
426
- return;
427
- }
428
- Timestamp now = Timestamp::Now();
429
- // Grab the lock and update the data.
430
- MutexLock lock(&mu_);
431
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
432
- gpr_log(GPR_INFO,
433
- "[WRR %p] subchannel %s: qps=%f, eps=%f, utilization=%f "
434
- "error_util_penalty=%f : setting weight=%f weight_=%f now=%s "
435
- "last_update_time_=%s non_empty_since_=%s",
436
- wrr_.get(), key_.c_str(), qps, eps, utilization,
437
- error_utilization_penalty, weight, weight_, now.ToString().c_str(),
438
- last_update_time_.ToString().c_str(),
439
- non_empty_since_.ToString().c_str());
440
- }
441
- if (non_empty_since_ == Timestamp::InfFuture()) non_empty_since_ = now;
442
- weight_ = weight;
443
- last_update_time_ = now;
444
- }
445
-
446
- float OldWeightedRoundRobin::AddressWeight::GetWeight(
447
- Timestamp now, Duration weight_expiration_period,
448
- Duration blackout_period) {
449
- MutexLock lock(&mu_);
450
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
451
- gpr_log(GPR_INFO,
452
- "[WRR %p] subchannel %s: getting weight: now=%s "
453
- "weight_expiration_period=%s blackout_period=%s "
454
- "last_update_time_=%s non_empty_since_=%s weight_=%f",
455
- wrr_.get(), key_.c_str(), now.ToString().c_str(),
456
- weight_expiration_period.ToString().c_str(),
457
- blackout_period.ToString().c_str(),
458
- last_update_time_.ToString().c_str(),
459
- non_empty_since_.ToString().c_str(), weight_);
460
- }
461
- // If the most recent update was longer ago than the expiration
462
- // period, reset non_empty_since_ so that we apply the blackout period
463
- // again if we start getting data again in the future, and return 0.
464
- if (now - last_update_time_ >= weight_expiration_period) {
465
- non_empty_since_ = Timestamp::InfFuture();
466
- return 0;
467
- }
468
- // If we don't have at least blackout_period worth of data, return 0.
469
- if (blackout_period > Duration::Zero() &&
470
- now - non_empty_since_ < blackout_period) {
471
- return 0;
472
- }
473
- // Otherwise, return the weight.
474
- return weight_;
475
- }
476
-
477
- void OldWeightedRoundRobin::AddressWeight::ResetNonEmptySince() {
478
- MutexLock lock(&mu_);
479
- non_empty_since_ = Timestamp::InfFuture();
480
- }
481
-
482
- //
483
- // OldWeightedRoundRobin::Picker::SubchannelCallTracker
484
- //
485
-
486
- void OldWeightedRoundRobin::Picker::SubchannelCallTracker::Finish(
487
- FinishArgs args) {
488
- auto* backend_metric_data =
489
- args.backend_metric_accessor->GetBackendMetricData();
490
- double qps = 0;
491
- double eps = 0;
492
- double utilization = 0;
493
- if (backend_metric_data != nullptr) {
494
- qps = backend_metric_data->qps;
495
- eps = backend_metric_data->eps;
496
- utilization = backend_metric_data->application_utilization;
497
- if (utilization <= 0) {
498
- utilization = backend_metric_data->cpu_utilization;
499
- }
500
- }
501
- weight_->MaybeUpdateWeight(qps, eps, utilization, error_utilization_penalty_);
502
- }
503
-
504
- //
505
- // OldWeightedRoundRobin::Picker
506
- //
507
-
508
- OldWeightedRoundRobin::Picker::Picker(
509
- RefCountedPtr<OldWeightedRoundRobin> wrr,
510
- WeightedRoundRobinSubchannelList* subchannel_list)
511
- : wrr_(std::move(wrr)),
512
- config_(wrr_->config_),
513
- last_picked_index_(absl::Uniform<size_t>(wrr_->bit_gen_)) {
514
- for (size_t i = 0; i < subchannel_list->num_subchannels(); ++i) {
515
- WeightedRoundRobinSubchannelData* sd = subchannel_list->subchannel(i);
516
- if (sd->connectivity_state() == GRPC_CHANNEL_READY) {
517
- subchannels_.emplace_back(sd->subchannel()->Ref(), sd->weight());
518
- }
519
- }
520
- global_stats().IncrementWrrSubchannelListSize(
521
- subchannel_list->num_subchannels());
522
- global_stats().IncrementWrrSubchannelReadySize(subchannels_.size());
523
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
524
- gpr_log(GPR_INFO,
525
- "[WRR %p picker %p] created picker from subchannel_list=%p "
526
- "with %" PRIuPTR " subchannels",
527
- wrr_.get(), this, subchannel_list, subchannels_.size());
528
- }
529
- BuildSchedulerAndStartTimerLocked();
530
- }
531
-
532
- OldWeightedRoundRobin::Picker::~Picker() {
533
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
534
- gpr_log(GPR_INFO, "[WRR %p picker %p] destroying picker", wrr_.get(), this);
535
- }
536
- }
537
-
538
- void OldWeightedRoundRobin::Picker::Orphan() {
539
- MutexLock lock(&timer_mu_);
540
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
541
- gpr_log(GPR_INFO, "[WRR %p picker %p] cancelling timer", wrr_.get(), this);
542
- }
543
- wrr_->channel_control_helper()->GetEventEngine()->Cancel(*timer_handle_);
544
- timer_handle_.reset();
545
- }
546
-
547
- OldWeightedRoundRobin::PickResult OldWeightedRoundRobin::Picker::Pick(
548
- PickArgs /*args*/) {
549
- size_t index = PickIndex();
550
- GPR_ASSERT(index < subchannels_.size());
551
- auto& subchannel_info = subchannels_[index];
552
- // Collect per-call utilization data if needed.
553
- std::unique_ptr<SubchannelCallTrackerInterface> subchannel_call_tracker;
554
- if (!config_->enable_oob_load_report()) {
555
- subchannel_call_tracker = std::make_unique<SubchannelCallTracker>(
556
- subchannel_info.weight, config_->error_utilization_penalty());
557
- }
558
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
559
- gpr_log(GPR_INFO,
560
- "[WRR %p picker %p] returning index %" PRIuPTR ", subchannel=%p",
561
- wrr_.get(), this, index, subchannel_info.subchannel.get());
562
- }
563
- return PickResult::Complete(subchannel_info.subchannel,
564
- std::move(subchannel_call_tracker));
565
- }
566
-
567
- size_t OldWeightedRoundRobin::Picker::PickIndex() {
568
- // Grab a ref to the scheduler.
569
- std::shared_ptr<StaticStrideScheduler> scheduler;
570
- {
571
- MutexLock lock(&scheduler_mu_);
572
- scheduler = scheduler_;
573
- }
574
- // If we have a scheduler, use it to do a WRR pick.
575
- if (scheduler != nullptr) return scheduler->Pick();
576
- // We don't have a scheduler (i.e., either all of the weights are 0 or
577
- // there is only one subchannel), so fall back to RR.
578
- return last_picked_index_.fetch_add(1) % subchannels_.size();
579
- }
580
-
581
- void OldWeightedRoundRobin::Picker::BuildSchedulerAndStartTimerLocked() {
582
- // Build scheduler.
583
- const Timestamp now = Timestamp::Now();
584
- std::vector<float> weights;
585
- weights.reserve(subchannels_.size());
586
- for (const auto& subchannel : subchannels_) {
587
- weights.push_back(subchannel.weight->GetWeight(
588
- now, config_->weight_expiration_period(), config_->blackout_period()));
589
- }
590
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
591
- gpr_log(GPR_INFO, "[WRR %p picker %p] new weights: %s", wrr_.get(), this,
592
- absl::StrJoin(weights, " ").c_str());
593
- }
594
- auto scheduler_or = StaticStrideScheduler::Make(
595
- weights, [this]() { return wrr_->scheduler_state_.fetch_add(1); });
596
- std::shared_ptr<StaticStrideScheduler> scheduler;
597
- if (scheduler_or.has_value()) {
598
- scheduler =
599
- std::make_shared<StaticStrideScheduler>(std::move(*scheduler_or));
600
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
601
- gpr_log(GPR_INFO, "[WRR %p picker %p] new scheduler: %p", wrr_.get(),
602
- this, scheduler.get());
603
- }
604
- } else if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
605
- gpr_log(GPR_INFO, "[WRR %p picker %p] no scheduler, falling back to RR",
606
- wrr_.get(), this);
607
- }
608
- {
609
- MutexLock lock(&scheduler_mu_);
610
- scheduler_ = std::move(scheduler);
611
- }
612
- // Start timer.
613
- timer_handle_ = wrr_->channel_control_helper()->GetEventEngine()->RunAfter(
614
- config_->weight_update_period(),
615
- [self = WeakRefAsSubclass<Picker>(),
616
- work_serializer = wrr_->work_serializer()]() mutable {
617
- ApplicationCallbackExecCtx callback_exec_ctx;
618
- ExecCtx exec_ctx;
619
- {
620
- MutexLock lock(&self->timer_mu_);
621
- if (self->timer_handle_.has_value()) {
622
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
623
- gpr_log(GPR_INFO, "[WRR %p picker %p] timer fired",
624
- self->wrr_.get(), self.get());
625
- }
626
- self->BuildSchedulerAndStartTimerLocked();
627
- }
628
- }
629
- if (!IsWorkSerializerDispatchEnabled()) {
630
- // Release the picker ref inside the WorkSerializer.
631
- work_serializer->Run([self = std::move(self)]() {}, DEBUG_LOCATION);
632
- return;
633
- }
634
- self.reset();
635
- });
636
- }
637
-
638
- //
639
- // WeightedRoundRobin
640
- //
641
-
642
- OldWeightedRoundRobin::OldWeightedRoundRobin(Args args)
643
- : LoadBalancingPolicy(std::move(args)) {
644
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
645
- gpr_log(GPR_INFO, "[WRR %p] Created", this);
646
- }
647
- }
47
+ #include "src/core/lib/channel/channel_args.h"
48
+ #include "src/core/lib/channel/metrics.h"
49
+ #include "src/core/lib/config/core_configuration.h"
50
+ #include "src/core/lib/debug/stats.h"
51
+ #include "src/core/lib/debug/stats_data.h"
52
+ #include "src/core/lib/debug/trace.h"
53
+ #include "src/core/lib/experiments/experiments.h"
54
+ #include "src/core/lib/gprpp/debug_location.h"
55
+ #include "src/core/lib/gprpp/orphanable.h"
56
+ #include "src/core/lib/gprpp/ref_counted.h"
57
+ #include "src/core/lib/gprpp/ref_counted_ptr.h"
58
+ #include "src/core/lib/gprpp/sync.h"
59
+ #include "src/core/lib/gprpp/time.h"
60
+ #include "src/core/lib/gprpp/validation_errors.h"
61
+ #include "src/core/lib/gprpp/work_serializer.h"
62
+ #include "src/core/lib/iomgr/exec_ctx.h"
63
+ #include "src/core/lib/iomgr/resolved_address.h"
64
+ #include "src/core/lib/json/json.h"
65
+ #include "src/core/lib/json/json_args.h"
66
+ #include "src/core/lib/json/json_object_loader.h"
67
+ #include "src/core/lib/transport/connectivity_state.h"
68
+ #include "src/core/load_balancing/backend_metric_data.h"
69
+ #include "src/core/load_balancing/endpoint_list.h"
70
+ #include "src/core/load_balancing/lb_policy.h"
71
+ #include "src/core/load_balancing/lb_policy_factory.h"
72
+ #include "src/core/load_balancing/oob_backend_metric.h"
73
+ #include "src/core/load_balancing/subchannel_interface.h"
74
+ #include "src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h"
75
+ #include "src/core/load_balancing/weighted_target/weighted_target.h"
76
+ #include "src/core/resolver/endpoint_addresses.h"
648
77
 
649
- OldWeightedRoundRobin::~OldWeightedRoundRobin() {
650
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
651
- gpr_log(GPR_INFO, "[WRR %p] Destroying Round Robin policy", this);
652
- }
653
- GPR_ASSERT(subchannel_list_ == nullptr);
654
- GPR_ASSERT(latest_pending_subchannel_list_ == nullptr);
655
- }
78
+ namespace grpc_core {
656
79
 
657
- void OldWeightedRoundRobin::ShutdownLocked() {
658
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
659
- gpr_log(GPR_INFO, "[WRR %p] Shutting down", this);
660
- }
661
- shutdown_ = true;
662
- subchannel_list_.reset();
663
- latest_pending_subchannel_list_.reset();
664
- }
80
+ TraceFlag grpc_lb_wrr_trace(false, "weighted_round_robin_lb");
665
81
 
666
- void OldWeightedRoundRobin::ResetBackoffLocked() {
667
- subchannel_list_->ResetBackoffLocked();
668
- if (latest_pending_subchannel_list_ != nullptr) {
669
- latest_pending_subchannel_list_->ResetBackoffLocked();
670
- }
671
- }
82
+ namespace {
672
83
 
673
- absl::Status OldWeightedRoundRobin::UpdateLocked(UpdateArgs args) {
674
- global_stats().IncrementWrrUpdates();
675
- config_ = args.config.TakeAsSubclass<WeightedRoundRobinConfig>();
676
- std::shared_ptr<EndpointAddressesIterator> addresses;
677
- if (args.addresses.ok()) {
678
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
679
- gpr_log(GPR_INFO, "[WRR %p] received update", this);
680
- }
681
- // Weed out duplicate addresses. Also sort the addresses so that if
682
- // the set of the addresses don't change, their indexes in the
683
- // subchannel list don't change, since this avoids unnecessary churn
684
- // in the picker. Note that this does not ensure that if a given
685
- // address remains present that it will have the same index; if,
686
- // for example, an address at the end of the list is replaced with one
687
- // that sorts much earlier in the list, then all of the addresses in
688
- // between those two positions will have changed indexes.
689
- struct AddressLessThan {
690
- bool operator()(const ServerAddress& address1,
691
- const ServerAddress& address2) const {
692
- const grpc_resolved_address& addr1 = address1.address();
693
- const grpc_resolved_address& addr2 = address2.address();
694
- if (addr1.len != addr2.len) return addr1.len < addr2.len;
695
- return memcmp(addr1.addr, addr2.addr, addr1.len) < 0;
696
- }
697
- };
698
- std::set<ServerAddress, AddressLessThan> ordered_addresses;
699
- (*args.addresses)->ForEach([&](const EndpointAddresses& endpoint) {
700
- ordered_addresses.insert(endpoint);
701
- });
702
- addresses = std::make_shared<EndpointAddressesListIterator>(
703
- ServerAddressList(ordered_addresses.begin(), ordered_addresses.end()));
704
- } else {
705
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
706
- gpr_log(GPR_INFO, "[WRR %p] received update with address error: %s", this,
707
- args.addresses.status().ToString().c_str());
708
- }
709
- // If we already have a subchannel list, then keep using the existing
710
- // list, but still report back that the update was not accepted.
711
- if (subchannel_list_ != nullptr) return args.addresses.status();
712
- }
713
- // Create new subchannel list, replacing the previous pending list, if any.
714
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace) &&
715
- latest_pending_subchannel_list_ != nullptr) {
716
- gpr_log(GPR_INFO, "[WRR %p] replacing previous pending subchannel list %p",
717
- this, latest_pending_subchannel_list_.get());
718
- }
719
- latest_pending_subchannel_list_ =
720
- MakeRefCounted<WeightedRoundRobinSubchannelList>(this, addresses.get(),
721
- args.args);
722
- latest_pending_subchannel_list_->StartWatchingLocked(args.args);
723
- // If the new list is empty, immediately promote it to
724
- // subchannel_list_ and report TRANSIENT_FAILURE.
725
- if (latest_pending_subchannel_list_->num_subchannels() == 0) {
726
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace) &&
727
- subchannel_list_ != nullptr) {
728
- gpr_log(GPR_INFO, "[WRR %p] replacing previous subchannel list %p", this,
729
- subchannel_list_.get());
730
- }
731
- subchannel_list_ = std::move(latest_pending_subchannel_list_);
732
- absl::Status status =
733
- args.addresses.ok() ? absl::UnavailableError(absl::StrCat(
734
- "empty address list: ", args.resolution_note))
735
- : args.addresses.status();
736
- channel_control_helper()->UpdateState(
737
- GRPC_CHANNEL_TRANSIENT_FAILURE, status,
738
- MakeRefCounted<TransientFailurePicker>(status));
739
- return status;
740
- }
741
- // Otherwise, if this is the initial update, immediately promote it to
742
- // subchannel_list_.
743
- if (subchannel_list_.get() == nullptr) {
744
- subchannel_list_ = std::move(latest_pending_subchannel_list_);
745
- }
746
- return absl::OkStatus();
747
- }
84
+ constexpr absl::string_view kWeightedRoundRobin = "weighted_round_robin";
748
85
 
749
- RefCountedPtr<OldWeightedRoundRobin::AddressWeight>
750
- OldWeightedRoundRobin::GetOrCreateWeight(const grpc_resolved_address& address) {
751
- auto key = grpc_sockaddr_to_uri(&address);
752
- if (!key.ok()) return nullptr;
753
- MutexLock lock(&address_weight_map_mu_);
754
- auto it = address_weight_map_.find(*key);
755
- if (it != address_weight_map_.end()) {
756
- auto weight = it->second->RefIfNonZero();
757
- if (weight != nullptr) return weight;
758
- }
759
- auto weight = MakeRefCounted<AddressWeight>(
760
- RefAsSubclass<OldWeightedRoundRobin>(DEBUG_LOCATION, "AddressWeight"),
761
- *key);
762
- address_weight_map_.emplace(*key, weight.get());
763
- return weight;
764
- }
86
+ constexpr absl::string_view kMetricLabelLocality = "grpc.lb.locality";
87
+
88
+ const auto kMetricRrFallback = GlobalInstrumentsRegistry::RegisterUInt64Counter(
89
+ "grpc.lb.wrr.rr_fallback",
90
+ "EXPERIMENTAL. Number of scheduler updates in which there were not "
91
+ "enough endpoints with valid weight, which caused the WRR policy to "
92
+ "fall back to RR behavior.",
93
+ "{update}", {kMetricLabelTarget}, {kMetricLabelLocality}, false);
94
+
95
+ const auto kMetricEndpointWeightNotYetUsable =
96
+ GlobalInstrumentsRegistry::RegisterUInt64Counter(
97
+ "grpc.lb.wrr.endpoint_weight_not_yet_usable",
98
+ "EXPERIMENTAL. Number of endpoints from each scheduler update that "
99
+ "don't yet have usable weight information (i.e., either the load "
100
+ "report has not yet been received, or it is within the blackout "
101
+ "period).",
102
+ "{endpoint}", {kMetricLabelTarget}, {kMetricLabelLocality}, false);
103
+
104
+ const auto kMetricEndpointWeightStale =
105
+ GlobalInstrumentsRegistry::RegisterUInt64Counter(
106
+ "grpc.lb.wrr.endpoint_weight_stale",
107
+ "EXPERIMENTAL. Number of endpoints from each scheduler update whose "
108
+ "latest weight is older than the expiration period.",
109
+ "{endpoint}", {kMetricLabelTarget}, {kMetricLabelLocality}, false);
110
+
111
+ const auto kMetricEndpointWeights =
112
+ GlobalInstrumentsRegistry::RegisterDoubleHistogram(
113
+ "grpc.lb.wrr.endpoint_weights",
114
+ "EXPERIMENTAL. The histogram buckets will be endpoint weight ranges. "
115
+ "Each bucket will be a counter that is incremented once for every "
116
+ "endpoint whose weight is within that range. Note that endpoints "
117
+ "without usable weights will have weight 0.",
118
+ "{weight}", {kMetricLabelTarget}, {kMetricLabelLocality}, false);
765
119
 
766
- //
767
- // OldWeightedRoundRobin::WeightedRoundRobinSubchannelList
768
- //
120
+ // Config for WRR policy.
121
+ class WeightedRoundRobinConfig final : public LoadBalancingPolicy::Config {
122
+ public:
123
+ WeightedRoundRobinConfig() = default;
769
124
 
770
- void OldWeightedRoundRobin::WeightedRoundRobinSubchannelList::
771
- UpdateStateCountersLocked(absl::optional<grpc_connectivity_state> old_state,
772
- grpc_connectivity_state new_state) {
773
- if (old_state.has_value()) {
774
- GPR_ASSERT(*old_state != GRPC_CHANNEL_SHUTDOWN);
775
- if (*old_state == GRPC_CHANNEL_READY) {
776
- GPR_ASSERT(num_ready_ > 0);
777
- --num_ready_;
778
- } else if (*old_state == GRPC_CHANNEL_CONNECTING) {
779
- GPR_ASSERT(num_connecting_ > 0);
780
- --num_connecting_;
781
- } else if (*old_state == GRPC_CHANNEL_TRANSIENT_FAILURE) {
782
- GPR_ASSERT(num_transient_failure_ > 0);
783
- --num_transient_failure_;
784
- }
785
- }
786
- GPR_ASSERT(new_state != GRPC_CHANNEL_SHUTDOWN);
787
- if (new_state == GRPC_CHANNEL_READY) {
788
- ++num_ready_;
789
- } else if (new_state == GRPC_CHANNEL_CONNECTING) {
790
- ++num_connecting_;
791
- } else if (new_state == GRPC_CHANNEL_TRANSIENT_FAILURE) {
792
- ++num_transient_failure_;
793
- }
794
- }
125
+ WeightedRoundRobinConfig(const WeightedRoundRobinConfig&) = delete;
126
+ WeightedRoundRobinConfig& operator=(const WeightedRoundRobinConfig&) = delete;
795
127
 
796
- void OldWeightedRoundRobin::WeightedRoundRobinSubchannelList::
797
- MaybeUpdateAggregatedConnectivityStateLocked(absl::Status status_for_tf) {
798
- OldWeightedRoundRobin* p = static_cast<OldWeightedRoundRobin*>(policy());
799
- // If this is latest_pending_subchannel_list_, then swap it into
800
- // subchannel_list_ in the following cases:
801
- // - subchannel_list_ has no READY subchannels.
802
- // - This list has at least one READY subchannel and we have seen the
803
- // initial connectivity state notification for all subchannels.
804
- // - All of the subchannels in this list are in TRANSIENT_FAILURE.
805
- // (This may cause the channel to go from READY to TRANSIENT_FAILURE,
806
- // but we're doing what the control plane told us to do.)
807
- if (p->latest_pending_subchannel_list_.get() == this &&
808
- (p->subchannel_list_->num_ready_ == 0 ||
809
- (num_ready_ > 0 && AllSubchannelsSeenInitialState()) ||
810
- num_transient_failure_ == num_subchannels())) {
811
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
812
- const std::string old_counters_string =
813
- p->subchannel_list_ != nullptr ? p->subchannel_list_->CountersString()
814
- : "";
815
- gpr_log(
816
- GPR_INFO,
817
- "[WRR %p] swapping out subchannel list %p (%s) in favor of %p (%s)",
818
- p, p->subchannel_list_.get(), old_counters_string.c_str(), this,
819
- CountersString().c_str());
820
- }
821
- p->subchannel_list_ = std::move(p->latest_pending_subchannel_list_);
822
- }
823
- // Only set connectivity state if this is the current subchannel list.
824
- if (p->subchannel_list_.get() != this) return;
825
- // First matching rule wins:
826
- // 1) ANY subchannel is READY => policy is READY.
827
- // 2) ANY subchannel is CONNECTING => policy is CONNECTING.
828
- // 3) ALL subchannels are TRANSIENT_FAILURE => policy is TRANSIENT_FAILURE.
829
- if (num_ready_ > 0) {
830
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
831
- gpr_log(GPR_INFO, "[WRR %p] reporting READY with subchannel list %p", p,
832
- this);
833
- }
834
- p->channel_control_helper()->UpdateState(
835
- GRPC_CHANNEL_READY, absl::Status(),
836
- MakeRefCounted<Picker>(p->RefAsSubclass<OldWeightedRoundRobin>(),
837
- this));
838
- } else if (num_connecting_ > 0) {
839
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
840
- gpr_log(GPR_INFO, "[WRR %p] reporting CONNECTING with subchannel list %p",
841
- p, this);
842
- }
843
- p->channel_control_helper()->UpdateState(
844
- GRPC_CHANNEL_CONNECTING, absl::Status(),
845
- MakeRefCounted<QueuePicker>(p->Ref(DEBUG_LOCATION, "QueuePicker")));
846
- } else if (num_transient_failure_ == num_subchannels()) {
847
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
848
- gpr_log(
849
- GPR_INFO,
850
- "[WRR %p] reporting TRANSIENT_FAILURE with subchannel list %p: %s", p,
851
- this, status_for_tf.ToString().c_str());
852
- }
853
- if (!status_for_tf.ok()) {
854
- last_failure_ = absl::UnavailableError(
855
- absl::StrCat("connections to all backends failing; last error: ",
856
- status_for_tf.ToString()));
857
- }
858
- p->channel_control_helper()->UpdateState(
859
- GRPC_CHANNEL_TRANSIENT_FAILURE, last_failure_,
860
- MakeRefCounted<TransientFailurePicker>(last_failure_));
861
- }
862
- }
128
+ WeightedRoundRobinConfig(WeightedRoundRobinConfig&&) = delete;
129
+ WeightedRoundRobinConfig& operator=(WeightedRoundRobinConfig&&) = delete;
863
130
 
864
- //
865
- // OldWeightedRoundRobin::WeightedRoundRobinSubchannelData::OobWatcher
866
- //
131
+ absl::string_view name() const override { return kWeightedRoundRobin; }
867
132
 
868
- void OldWeightedRoundRobin::WeightedRoundRobinSubchannelData::OobWatcher::
869
- OnBackendMetricReport(const BackendMetricData& backend_metric_data) {
870
- double utilization = backend_metric_data.application_utilization;
871
- if (utilization <= 0) {
872
- utilization = backend_metric_data.cpu_utilization;
133
+ bool enable_oob_load_report() const { return enable_oob_load_report_; }
134
+ Duration oob_reporting_period() const { return oob_reporting_period_; }
135
+ Duration blackout_period() const { return blackout_period_; }
136
+ Duration weight_update_period() const { return weight_update_period_; }
137
+ Duration weight_expiration_period() const {
138
+ return weight_expiration_period_;
873
139
  }
874
- weight_->MaybeUpdateWeight(backend_metric_data.qps, backend_metric_data.eps,
875
- utilization, error_utilization_penalty_);
876
- }
877
-
878
- //
879
- // OldWeightedRoundRobin::WeightedRoundRobinSubchannelData
880
- //
140
+ float error_utilization_penalty() const { return error_utilization_penalty_; }
881
141
 
882
- OldWeightedRoundRobin::WeightedRoundRobinSubchannelData::
883
- WeightedRoundRobinSubchannelData(
884
- SubchannelList<WeightedRoundRobinSubchannelList,
885
- WeightedRoundRobinSubchannelData>* subchannel_list,
886
- const ServerAddress& address, RefCountedPtr<SubchannelInterface> sc)
887
- : SubchannelData(subchannel_list, address, std::move(sc)),
888
- weight_(static_cast<OldWeightedRoundRobin*>(subchannel_list->policy())
889
- ->GetOrCreateWeight(address.address())) {
890
- // Start OOB watch if configured.
891
- OldWeightedRoundRobin* p =
892
- static_cast<OldWeightedRoundRobin*>(subchannel_list->policy());
893
- if (p->config_->enable_oob_load_report()) {
894
- subchannel()->AddDataWatcher(MakeOobBackendMetricWatcher(
895
- p->config_->oob_reporting_period(),
896
- std::make_unique<OobWatcher>(weight_,
897
- p->config_->error_utilization_penalty())));
142
+ static const JsonLoaderInterface* JsonLoader(const JsonArgs&) {
143
+ static const auto* loader =
144
+ JsonObjectLoader<WeightedRoundRobinConfig>()
145
+ .OptionalField("enableOobLoadReport",
146
+ &WeightedRoundRobinConfig::enable_oob_load_report_)
147
+ .OptionalField("oobReportingPeriod",
148
+ &WeightedRoundRobinConfig::oob_reporting_period_)
149
+ .OptionalField("blackoutPeriod",
150
+ &WeightedRoundRobinConfig::blackout_period_)
151
+ .OptionalField("weightUpdatePeriod",
152
+ &WeightedRoundRobinConfig::weight_update_period_)
153
+ .OptionalField("weightExpirationPeriod",
154
+ &WeightedRoundRobinConfig::weight_expiration_period_)
155
+ .OptionalField(
156
+ "errorUtilizationPenalty",
157
+ &WeightedRoundRobinConfig::error_utilization_penalty_)
158
+ .Finish();
159
+ return loader;
898
160
  }
899
- }
900
161
 
901
- void OldWeightedRoundRobin::WeightedRoundRobinSubchannelData::
902
- ProcessConnectivityChangeLocked(
903
- absl::optional<grpc_connectivity_state> old_state,
904
- grpc_connectivity_state new_state) {
905
- OldWeightedRoundRobin* p =
906
- static_cast<OldWeightedRoundRobin*>(subchannel_list()->policy());
907
- GPR_ASSERT(subchannel() != nullptr);
908
- // If this is not the initial state notification and the new state is
909
- // TRANSIENT_FAILURE or IDLE, re-resolve.
910
- // Note that we don't want to do this on the initial state notification,
911
- // because that would result in an endless loop of re-resolution.
912
- if (old_state.has_value() && (new_state == GRPC_CHANNEL_TRANSIENT_FAILURE ||
913
- new_state == GRPC_CHANNEL_IDLE)) {
914
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
915
- gpr_log(GPR_INFO,
916
- "[WRR %p] Subchannel %p reported %s; requesting re-resolution", p,
917
- subchannel(), ConnectivityStateName(new_state));
918
- }
919
- p->channel_control_helper()->RequestReresolution();
920
- }
921
- if (new_state == GRPC_CHANNEL_IDLE) {
922
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
923
- gpr_log(GPR_INFO,
924
- "[WRR %p] Subchannel %p reported IDLE; requesting connection", p,
925
- subchannel());
926
- }
927
- subchannel()->RequestConnection();
928
- } else if (new_state == GRPC_CHANNEL_READY) {
929
- // If we transition back to READY state, restart the blackout period.
930
- // Skip this if this is the initial notification for this
931
- // subchannel (which happens whenever we get updated addresses and
932
- // create a new endpoint list). Also skip it if the previous state
933
- // was READY (which should never happen in practice, but we've seen
934
- // at least one bug that caused this in the outlier_detection
935
- // policy, so let's be defensive here).
936
- //
937
- // Note that we cannot guarantee that we will never receive
938
- // lingering callbacks for backend metric reports from the previous
939
- // connection after the new connection has been established, but they
940
- // should be masked by new backend metric reports from the new
941
- // connection by the time the blackout period ends.
942
- if (old_state.has_value() && old_state != GRPC_CHANNEL_READY) {
943
- weight_->ResetNonEmptySince();
162
+ void JsonPostLoad(const Json&, const JsonArgs&, ValidationErrors* errors) {
163
+ // Impose lower bound of 100ms on weightUpdatePeriod.
164
+ weight_update_period_ =
165
+ std::max(weight_update_period_, Duration::Milliseconds(100));
166
+ if (error_utilization_penalty_ < 0) {
167
+ ValidationErrors::ScopedField field(errors, ".errorUtilizationPenalty");
168
+ errors->AddError("must be non-negative");
944
169
  }
945
170
  }
946
- // Update logical connectivity state.
947
- UpdateLogicalConnectivityStateLocked(new_state);
948
- // Update the policy state.
949
- subchannel_list()->MaybeUpdateAggregatedConnectivityStateLocked(
950
- connectivity_status());
951
- }
952
171
 
953
- void OldWeightedRoundRobin::WeightedRoundRobinSubchannelData::
954
- UpdateLogicalConnectivityStateLocked(
955
- grpc_connectivity_state connectivity_state) {
956
- OldWeightedRoundRobin* p =
957
- static_cast<OldWeightedRoundRobin*>(subchannel_list()->policy());
958
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
959
- gpr_log(
960
- GPR_INFO,
961
- "[WRR %p] connectivity changed for subchannel %p, subchannel_list %p "
962
- "(index %" PRIuPTR " of %" PRIuPTR "): prev_state=%s new_state=%s",
963
- p, subchannel(), subchannel_list(), Index(),
964
- subchannel_list()->num_subchannels(),
965
- (logical_connectivity_state_.has_value()
966
- ? ConnectivityStateName(*logical_connectivity_state_)
967
- : "N/A"),
968
- ConnectivityStateName(connectivity_state));
969
- }
970
- // Decide what state to report for aggregation purposes.
971
- // If the last logical state was TRANSIENT_FAILURE, then ignore the
972
- // state change unless the new state is READY.
973
- if (logical_connectivity_state_.has_value() &&
974
- *logical_connectivity_state_ == GRPC_CHANNEL_TRANSIENT_FAILURE &&
975
- connectivity_state != GRPC_CHANNEL_READY) {
976
- return;
977
- }
978
- // If the new state is IDLE, treat it as CONNECTING, since it will
979
- // immediately transition into CONNECTING anyway.
980
- if (connectivity_state == GRPC_CHANNEL_IDLE) {
981
- if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
982
- gpr_log(GPR_INFO,
983
- "[WRR %p] subchannel %p, subchannel_list %p (index %" PRIuPTR
984
- " of %" PRIuPTR "): treating IDLE as CONNECTING",
985
- p, subchannel(), subchannel_list(), Index(),
986
- subchannel_list()->num_subchannels());
987
- }
988
- connectivity_state = GRPC_CHANNEL_CONNECTING;
989
- }
990
- // If no change, return false.
991
- if (logical_connectivity_state_.has_value() &&
992
- *logical_connectivity_state_ == connectivity_state) {
993
- return;
994
- }
995
- // Otherwise, update counters and logical state.
996
- subchannel_list()->UpdateStateCountersLocked(logical_connectivity_state_,
997
- connectivity_state);
998
- logical_connectivity_state_ = connectivity_state;
999
- }
172
+ private:
173
+ bool enable_oob_load_report_ = false;
174
+ Duration oob_reporting_period_ = Duration::Seconds(10);
175
+ Duration blackout_period_ = Duration::Seconds(10);
176
+ Duration weight_update_period_ = Duration::Seconds(1);
177
+ Duration weight_expiration_period_ = Duration::Minutes(3);
178
+ float error_utilization_penalty_ = 1.0;
179
+ };
1000
180
 
1001
- // New WRR LB policy (with delegation to pick_first)
1002
- class WeightedRoundRobin : public LoadBalancingPolicy {
181
+ // WRR LB policy
182
+ class WeightedRoundRobin final : public LoadBalancingPolicy {
1003
183
  public:
1004
184
  explicit WeightedRoundRobin(Args args);
1005
185
 
@@ -1010,7 +190,7 @@ class WeightedRoundRobin : public LoadBalancingPolicy {
1010
190
 
1011
191
  private:
1012
192
  // Represents the weight for a given address.
1013
- class EndpointWeight : public RefCounted<EndpointWeight> {
193
+ class EndpointWeight final : public RefCounted<EndpointWeight> {
1014
194
  public:
1015
195
  EndpointWeight(RefCountedPtr<WeightedRoundRobin> wrr,
1016
196
  EndpointAddressSet key)
@@ -1021,7 +201,8 @@ class WeightedRoundRobin : public LoadBalancingPolicy {
1021
201
  float error_utilization_penalty);
1022
202
 
1023
203
  float GetWeight(Timestamp now, Duration weight_expiration_period,
1024
- Duration blackout_period);
204
+ Duration blackout_period, uint64_t* num_not_yet_usable,
205
+ uint64_t* num_stale);
1025
206
 
1026
207
  void ResetNonEmptySince();
1027
208
 
@@ -1032,12 +213,12 @@ class WeightedRoundRobin : public LoadBalancingPolicy {
1032
213
  Mutex mu_;
1033
214
  float weight_ ABSL_GUARDED_BY(&mu_) = 0;
1034
215
  Timestamp non_empty_since_ ABSL_GUARDED_BY(&mu_) = Timestamp::InfFuture();
1035
- Timestamp last_update_time_ ABSL_GUARDED_BY(&mu_) = Timestamp::InfPast();
216
+ Timestamp last_update_time_ ABSL_GUARDED_BY(&mu_) = Timestamp::InfFuture();
1036
217
  };
1037
218
 
1038
- class WrrEndpointList : public EndpointList {
219
+ class WrrEndpointList final : public EndpointList {
1039
220
  public:
1040
- class WrrEndpoint : public Endpoint {
221
+ class WrrEndpoint final : public Endpoint {
1041
222
  public:
1042
223
  WrrEndpoint(RefCountedPtr<EndpointList> endpoint_list,
1043
224
  const EndpointAddresses& addresses, const ChannelArgs& args,
@@ -1051,7 +232,7 @@ class WeightedRoundRobin : public LoadBalancingPolicy {
1051
232
  RefCountedPtr<EndpointWeight> weight() const { return weight_; }
1052
233
 
1053
234
  private:
1054
- class OobWatcher : public OobBackendMetricWatcher {
235
+ class OobWatcher final : public OobBackendMetricWatcher {
1055
236
  public:
1056
237
  OobWatcher(RefCountedPtr<EndpointWeight> weight,
1057
238
  float error_utilization_penalty)
@@ -1128,7 +309,7 @@ class WeightedRoundRobin : public LoadBalancingPolicy {
1128
309
 
1129
310
  // A picker that performs WRR picks with weights based on
1130
311
  // endpoint-reported utilization and QPS.
1131
- class Picker : public SubchannelPicker {
312
+ class Picker final : public SubchannelPicker {
1132
313
  public:
1133
314
  Picker(RefCountedPtr<WeightedRoundRobin> wrr,
1134
315
  WrrEndpointList* endpoint_list);
@@ -1137,11 +318,9 @@ class WeightedRoundRobin : public LoadBalancingPolicy {
1137
318
 
1138
319
  PickResult Pick(PickArgs args) override;
1139
320
 
1140
- void Orphan() override;
1141
-
1142
321
  private:
1143
322
  // A call tracker that collects per-call endpoint utilization reports.
1144
- class SubchannelCallTracker : public SubchannelCallTrackerInterface {
323
+ class SubchannelCallTracker final : public SubchannelCallTrackerInterface {
1145
324
  public:
1146
325
  SubchannelCallTracker(
1147
326
  RefCountedPtr<EndpointWeight> weight, float error_utilization_penalty,
@@ -1170,6 +349,8 @@ class WeightedRoundRobin : public LoadBalancingPolicy {
1170
349
  RefCountedPtr<EndpointWeight> weight;
1171
350
  };
1172
351
 
352
+ void Orphaned() override;
353
+
1173
354
  // Returns the index into endpoints_ to be picked.
1174
355
  size_t PickIndex();
1175
356
 
@@ -1215,6 +396,8 @@ class WeightedRoundRobin : public LoadBalancingPolicy {
1215
396
  std::map<EndpointAddressSet, EndpointWeight*> endpoint_weight_map_
1216
397
  ABSL_GUARDED_BY(&endpoint_weight_map_mu_);
1217
398
 
399
+ const absl::string_view locality_name_;
400
+
1218
401
  bool shutdown_ = false;
1219
402
 
1220
403
  absl::BitGen bit_gen_;
@@ -1276,8 +459,8 @@ void WeightedRoundRobin::EndpointWeight::MaybeUpdateWeight(
1276
459
  }
1277
460
 
1278
461
  float WeightedRoundRobin::EndpointWeight::GetWeight(
1279
- Timestamp now, Duration weight_expiration_period,
1280
- Duration blackout_period) {
462
+ Timestamp now, Duration weight_expiration_period, Duration blackout_period,
463
+ uint64_t* num_not_yet_usable, uint64_t* num_stale) {
1281
464
  MutexLock lock(&mu_);
1282
465
  if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
1283
466
  gpr_log(GPR_INFO,
@@ -1294,12 +477,14 @@ float WeightedRoundRobin::EndpointWeight::GetWeight(
1294
477
  // period, reset non_empty_since_ so that we apply the blackout period
1295
478
  // again if we start getting data again in the future, and return 0.
1296
479
  if (now - last_update_time_ >= weight_expiration_period) {
480
+ ++*num_stale;
1297
481
  non_empty_since_ = Timestamp::InfFuture();
1298
482
  return 0;
1299
483
  }
1300
484
  // If we don't have at least blackout_period worth of data, return 0.
1301
485
  if (blackout_period > Duration::Zero() &&
1302
486
  now - non_empty_since_ < blackout_period) {
487
+ ++*num_not_yet_usable;
1303
488
  return 0;
1304
489
  }
1305
490
  // Otherwise, return the weight.
@@ -1370,7 +555,7 @@ WeightedRoundRobin::Picker::~Picker() {
1370
555
  }
1371
556
  }
1372
557
 
1373
- void WeightedRoundRobin::Picker::Orphan() {
558
+ void WeightedRoundRobin::Picker::Orphaned() {
1374
559
  MutexLock lock(&timer_mu_);
1375
560
  if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
1376
561
  gpr_log(GPR_INFO, "[WRR %p picker %p] cancelling timer", wrr_.get(), this);
@@ -1418,14 +603,28 @@ size_t WeightedRoundRobin::Picker::PickIndex() {
1418
603
  }
1419
604
 
1420
605
  void WeightedRoundRobin::Picker::BuildSchedulerAndStartTimerLocked() {
1421
- // Build scheduler.
606
+ auto& stats_plugins = wrr_->channel_control_helper()->GetStatsPluginGroup();
607
+ // Build scheduler, reporting metrics on endpoint weights.
1422
608
  const Timestamp now = Timestamp::Now();
1423
609
  std::vector<float> weights;
1424
610
  weights.reserve(endpoints_.size());
611
+ uint64_t num_not_yet_usable = 0;
612
+ uint64_t num_stale = 0;
1425
613
  for (const auto& endpoint : endpoints_) {
1426
- weights.push_back(endpoint.weight->GetWeight(
1427
- now, config_->weight_expiration_period(), config_->blackout_period()));
1428
- }
614
+ float weight = endpoint.weight->GetWeight(
615
+ now, config_->weight_expiration_period(), config_->blackout_period(),
616
+ &num_not_yet_usable, &num_stale);
617
+ weights.push_back(weight);
618
+ stats_plugins.RecordHistogram(kMetricEndpointWeights, weight,
619
+ {wrr_->channel_control_helper()->GetTarget()},
620
+ {wrr_->locality_name_});
621
+ }
622
+ stats_plugins.AddCounter(
623
+ kMetricEndpointWeightNotYetUsable, num_not_yet_usable,
624
+ {wrr_->channel_control_helper()->GetTarget()}, {wrr_->locality_name_});
625
+ stats_plugins.AddCounter(kMetricEndpointWeightStale, num_stale,
626
+ {wrr_->channel_control_helper()->GetTarget()},
627
+ {wrr_->locality_name_});
1429
628
  if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
1430
629
  gpr_log(GPR_INFO, "[WRR %p picker %p] new weights: %s", wrr_.get(), this,
1431
630
  absl::StrJoin(weights, " ").c_str());
@@ -1440,9 +639,14 @@ void WeightedRoundRobin::Picker::BuildSchedulerAndStartTimerLocked() {
1440
639
  gpr_log(GPR_INFO, "[WRR %p picker %p] new scheduler: %p", wrr_.get(),
1441
640
  this, scheduler.get());
1442
641
  }
1443
- } else if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
1444
- gpr_log(GPR_INFO, "[WRR %p picker %p] no scheduler, falling back to RR",
1445
- wrr_.get(), this);
642
+ } else {
643
+ if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
644
+ gpr_log(GPR_INFO, "[WRR %p picker %p] no scheduler, falling back to RR",
645
+ wrr_.get(), this);
646
+ }
647
+ stats_plugins.AddCounter(kMetricRrFallback, 1,
648
+ {wrr_->channel_control_helper()->GetTarget()},
649
+ {wrr_->locality_name_});
1446
650
  }
1447
651
  {
1448
652
  MutexLock lock(&scheduler_mu_);
@@ -1483,9 +687,13 @@ void WeightedRoundRobin::Picker::BuildSchedulerAndStartTimerLocked() {
1483
687
  //
1484
688
 
1485
689
  WeightedRoundRobin::WeightedRoundRobin(Args args)
1486
- : LoadBalancingPolicy(std::move(args)) {
690
+ : LoadBalancingPolicy(std::move(args)),
691
+ locality_name_(channel_args()
692
+ .GetString(GRPC_ARG_LB_WEIGHTED_TARGET_CHILD)
693
+ .value_or("")) {
1487
694
  if (GRPC_TRACE_FLAG_ENABLED(grpc_lb_wrr_trace)) {
1488
- gpr_log(GPR_INFO, "[WRR %p] Created", this);
695
+ gpr_log(GPR_INFO, "[WRR %p] Created -- locality_name=\"%s\"", this,
696
+ std::string(locality_name_).c_str());
1489
697
  }
1490
698
  }
1491
699
 
@@ -1789,13 +997,10 @@ void WeightedRoundRobin::WrrEndpointList::
1789
997
  // factory
1790
998
  //
1791
999
 
1792
- class WeightedRoundRobinFactory : public LoadBalancingPolicyFactory {
1000
+ class WeightedRoundRobinFactory final : public LoadBalancingPolicyFactory {
1793
1001
  public:
1794
1002
  OrphanablePtr<LoadBalancingPolicy> CreateLoadBalancingPolicy(
1795
1003
  LoadBalancingPolicy::Args args) const override {
1796
- if (!IsWrrDelegateToPickFirstEnabled()) {
1797
- return MakeOrphanable<OldWeightedRoundRobin>(std::move(args));
1798
- }
1799
1004
  return MakeOrphanable<WeightedRoundRobin>(std::move(args));
1800
1005
  }
1801
1006