grpc 1.66.0 → 1.67.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +19 -10
- data/include/grpc/credentials.h +1 -1
- data/include/grpc/event_engine/README.md +1 -1
- data/include/grpc/event_engine/internal/slice_cast.h +1 -1
- data/include/grpc/event_engine/slice.h +0 -1
- data/include/grpc/event_engine/slice_buffer.h +0 -1
- data/include/grpc/grpc_crl_provider.h +1 -1
- data/include/grpc/impl/channel_arg_names.h +1 -1
- data/include/grpc/support/log.h +34 -32
- data/include/grpc/support/sync_generic.h +2 -4
- data/src/core/channelz/channelz.cc +0 -1
- data/src/core/channelz/channelz_registry.cc +0 -1
- data/src/core/client_channel/client_channel.cc +10 -7
- data/src/core/client_channel/client_channel.h +1 -1
- data/src/core/client_channel/client_channel_filter.cc +21 -18
- data/src/core/client_channel/client_channel_filter.h +1 -1
- data/src/core/client_channel/client_channel_internal.h +0 -2
- data/src/core/client_channel/config_selector.h +0 -1
- data/src/core/client_channel/dynamic_filters.cc +0 -2
- data/src/core/client_channel/local_subchannel_pool.cc +0 -2
- data/src/core/client_channel/retry_filter.h +0 -1
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +175 -257
- data/src/core/client_channel/subchannel.cc +21 -27
- data/src/core/client_channel/subchannel_stream_client.cc +1 -1
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +8 -9
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +0 -1
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +3 -4
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +167 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +82 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +81 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +87 -0
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +7 -9
- data/src/core/ext/filters/http/server/http_server_filter.cc +2 -4
- data/src/core/ext/filters/message_size/message_size_filter.cc +6 -7
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +0 -2
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +0 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +6 -8
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +288 -265
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/flow_control.h +0 -1
- data/src/core/ext/transport/chttp2/transport/frame.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +5 -6
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +37 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +27 -6
- data/src/core/ext/transport/chttp2/transport/internal.h +2 -3
- data/src/core/ext/transport/chttp2/transport/parsing.cc +21 -32
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +6 -8
- data/src/core/ext/transport/chttp2/transport/varint.h +0 -1
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/writing.cc +22 -22
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +431 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +129 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +16 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +13 -2
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +397 -22
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +94 -20
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +2 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +86 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +47 -0
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +108 -107
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +101 -78
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +10 -0
- data/src/core/handshaker/handshaker.cc +21 -29
- data/src/core/handshaker/security/secure_endpoint.cc +3 -3
- data/src/core/handshaker/security/security_handshaker.cc +60 -72
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +0 -1
- data/src/core/lib/backoff/backoff.cc +7 -10
- data/src/core/lib/backoff/backoff.h +4 -6
- data/src/core/lib/channel/channel_stack.cc +0 -1
- data/src/core/lib/channel/channel_stack.h +0 -1
- data/src/core/lib/channel/channel_stack_builder_impl.cc +0 -1
- data/src/core/lib/channel/connected_channel.cc +0 -1
- data/src/core/lib/channel/promise_based_filter.cc +146 -194
- data/src/core/lib/channel/promise_based_filter.h +1 -1
- data/src/core/lib/compression/compression_internal.cc +0 -1
- data/src/core/lib/config/config_vars.cc +11 -1
- data/src/core/lib/config/config_vars.h +8 -0
- data/src/core/lib/config/core_configuration.cc +0 -1
- data/src/core/lib/config/core_configuration.h +0 -1
- data/src/core/lib/debug/event_log.cc +0 -1
- data/src/core/lib/debug/trace_flags.cc +4 -18
- data/src/core/lib/debug/trace_flags.h +2 -5
- data/src/core/lib/debug/trace_impl.h +6 -0
- data/src/core/lib/event_engine/ares_resolver.cc +89 -56
- data/src/core/lib/event_engine/ares_resolver.h +0 -9
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +14 -1
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
- data/src/core/lib/event_engine/forkable.cc +0 -1
- data/src/core/lib/event_engine/forkable.h +0 -1
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +1 -1
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +4 -4
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +0 -1
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +0 -1
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +9 -1
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +0 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +2 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +1 -2
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +4 -9
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +0 -1
- data/src/core/lib/event_engine/resolved_address.cc +0 -1
- data/src/core/lib/event_engine/slice.cc +0 -1
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +0 -1
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +3 -5
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +121 -93
- data/src/core/lib/experiments/config.cc +12 -10
- data/src/core/lib/experiments/experiments.cc +45 -66
- data/src/core/lib/experiments/experiments.h +22 -27
- data/src/core/lib/gprpp/chunked_vector.h +0 -1
- data/src/core/lib/gprpp/down_cast.h +0 -1
- data/src/core/lib/gprpp/host_port.cc +0 -1
- data/src/core/lib/gprpp/load_file.cc +0 -1
- data/src/core/lib/gprpp/mpscq.h +0 -1
- data/src/core/lib/gprpp/single_set_ptr.h +0 -1
- data/src/core/lib/gprpp/status_helper.cc +0 -1
- data/src/core/lib/gprpp/sync.h +0 -1
- data/src/core/lib/gprpp/table.h +28 -0
- data/src/core/lib/gprpp/thd.h +0 -1
- data/src/core/lib/gprpp/time.h +0 -1
- data/src/core/lib/gprpp/time_util.cc +0 -1
- data/src/core/lib/gprpp/windows/directory_reader.cc +0 -2
- data/src/core/lib/gprpp/windows/thd.cc +0 -1
- data/src/core/lib/gprpp/work_serializer.cc +23 -34
- data/src/core/lib/iomgr/buffer_list.cc +0 -1
- data/src/core/lib/iomgr/call_combiner.h +6 -8
- data/src/core/lib/iomgr/cfstream_handle.cc +6 -8
- data/src/core/lib/iomgr/closure.h +5 -8
- data/src/core/lib/iomgr/combiner.cc +6 -8
- data/src/core/lib/iomgr/endpoint_cfstream.cc +17 -22
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +0 -1
- data/src/core/lib/iomgr/error.h +0 -1
- data/src/core/lib/iomgr/ev_apple.cc +13 -18
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +47 -85
- data/src/core/lib/iomgr/ev_poll_posix.cc +17 -24
- data/src/core/lib/iomgr/ev_posix.cc +55 -44
- data/src/core/lib/iomgr/ev_posix.h +0 -5
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +7 -9
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +3 -4
- data/src/core/lib/iomgr/exec_ctx.cc +6 -9
- data/src/core/lib/iomgr/exec_ctx.h +26 -16
- data/src/core/lib/iomgr/executor.cc +43 -33
- data/src/core/lib/iomgr/fork_windows.cc +0 -1
- data/src/core/lib/iomgr/internal_errqueue.cc +0 -1
- data/src/core/lib/iomgr/iocp_windows.cc +0 -1
- data/src/core/lib/iomgr/iomgr_windows.cc +0 -2
- data/src/core/lib/iomgr/lockfree_event.cc +7 -11
- data/src/core/lib/iomgr/polling_entity.cc +10 -3
- data/src/core/lib/iomgr/pollset_windows.cc +0 -2
- data/src/core/lib/iomgr/resolve_address.cc +0 -1
- data/src/core/lib/iomgr/resolve_address_posix.cc +0 -1
- data/src/core/lib/iomgr/resolve_address_windows.cc +0 -1
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +0 -1
- data/src/core/lib/iomgr/socket_mutator.cc +0 -1
- data/src/core/lib/iomgr/socket_utils_linux.cc +0 -2
- data/src/core/lib/iomgr/socket_utils_posix.cc +0 -1
- data/src/core/lib/iomgr/socket_utils_windows.cc +0 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +7 -12
- data/src/core/lib/iomgr/tcp_client_posix.cc +8 -12
- data/src/core/lib/iomgr/tcp_client_windows.cc +0 -1
- data/src/core/lib/iomgr/tcp_posix.cc +32 -68
- data/src/core/lib/iomgr/tcp_server_posix.cc +7 -11
- data/src/core/lib/iomgr/tcp_windows.cc +4 -12
- data/src/core/lib/iomgr/timer_generic.cc +46 -65
- data/src/core/lib/iomgr/timer_manager.cc +4 -5
- data/src/core/lib/iomgr/unix_sockets_posix.cc +0 -1
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -2
- data/src/core/lib/iomgr/vsock.cc +0 -1
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +0 -2
- data/src/core/lib/promise/activity.h +0 -1
- data/src/core/lib/promise/context.h +0 -1
- data/src/core/lib/promise/detail/join_state.h +44 -44
- data/src/core/lib/promise/detail/seq_state.h +1101 -1356
- data/src/core/lib/promise/for_each.h +8 -15
- data/src/core/lib/promise/interceptor_list.h +17 -27
- data/src/core/lib/promise/latch.h +16 -24
- data/src/core/lib/promise/map.h +1 -1
- data/src/core/lib/promise/party.cc +238 -114
- data/src/core/lib/promise/party.h +105 -308
- data/src/core/lib/promise/pipe.h +3 -4
- data/src/core/lib/promise/poll.h +0 -1
- data/src/core/lib/promise/status_flag.h +0 -1
- data/src/core/lib/resource_quota/connection_quota.cc +0 -1
- data/src/core/lib/resource_quota/memory_quota.cc +11 -19
- data/src/core/lib/resource_quota/memory_quota.h +2 -4
- data/src/core/lib/resource_quota/periodic_update.cc +2 -3
- data/src/core/lib/resource_quota/thread_quota.cc +0 -1
- data/src/core/lib/security/authorization/audit_logging.cc +0 -1
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +0 -1
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +14 -19
- data/src/core/lib/security/authorization/stdout_logger.cc +0 -1
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +0 -1
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +0 -1
- data/src/core/lib/security/credentials/call_creds_util.cc +0 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +0 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -0
- data/src/core/lib/security/credentials/credentials.h +1 -2
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +322 -324
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +53 -42
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +391 -353
- data/src/core/lib/security/credentials/external/external_account_credentials.h +121 -51
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +83 -44
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +27 -7
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +91 -116
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +14 -17
- data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -0
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +196 -0
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +27 -41
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +0 -1
- data/src/core/lib/security/credentials/iam/iam_credentials.h +2 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +163 -259
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +34 -56
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +12 -16
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +0 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +0 -1
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +298 -0
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +176 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +0 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +0 -1
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +0 -1
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +0 -1
- data/src/core/lib/security/transport/server_auth_filter.cc +4 -6
- data/src/core/lib/slice/percent_encoding.cc +0 -1
- data/src/core/lib/slice/slice.cc +0 -1
- data/src/core/lib/slice/slice.h +0 -1
- data/src/core/lib/slice/slice_buffer.cc +0 -1
- data/src/core/lib/slice/slice_internal.h +0 -1
- data/src/core/lib/slice/slice_refcount.h +6 -8
- data/src/core/lib/surface/byte_buffer_reader.cc +0 -1
- data/src/core/lib/surface/call.cc +3 -5
- data/src/core/lib/surface/call_utils.h +0 -1
- data/src/core/lib/surface/channel.cc +0 -1
- data/src/core/lib/surface/channel_create.cc +0 -1
- data/src/core/lib/surface/channel_init.h +0 -1
- data/src/core/lib/surface/client_call.cc +0 -1
- data/src/core/lib/surface/client_call.h +0 -1
- data/src/core/lib/surface/completion_queue.cc +28 -4
- data/src/core/lib/surface/completion_queue_factory.cc +0 -1
- data/src/core/lib/surface/filter_stack_call.cc +9 -9
- data/src/core/lib/surface/filter_stack_call.h +0 -1
- data/src/core/lib/surface/lame_client.cc +0 -1
- data/src/core/lib/surface/server_call.cc +0 -1
- data/src/core/lib/surface/server_call.h +0 -1
- data/src/core/lib/surface/validate_metadata.h +0 -1
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +9 -12
- data/src/core/lib/transport/bdp_estimator.h +6 -8
- data/src/core/lib/transport/call_arena_allocator.cc +2 -16
- data/src/core/lib/transport/call_arena_allocator.h +20 -5
- data/src/core/lib/transport/call_filters.cc +6 -9
- data/src/core/lib/transport/call_spine.h +24 -13
- data/src/core/lib/transport/connectivity_state.cc +34 -42
- data/src/core/lib/transport/metadata_batch.h +41 -1
- data/src/core/lib/transport/timeout_encoding.cc +0 -1
- data/src/core/lib/transport/transport.h +6 -8
- data/src/core/lib/transport/transport_op_string.cc +0 -1
- data/src/core/lib/uri/uri_parser.cc +0 -1
- data/src/core/load_balancing/grpclb/grpclb.cc +55 -71
- data/src/core/load_balancing/health_check_client.cc +31 -42
- data/src/core/load_balancing/oob_backend_metric.cc +2 -4
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +99 -129
- data/src/core/load_balancing/pick_first/pick_first.cc +168 -228
- data/src/core/load_balancing/priority/priority.cc +77 -106
- data/src/core/load_balancing/ring_hash/ring_hash.cc +32 -46
- data/src/core/load_balancing/rls/rls.cc +142 -187
- data/src/core/load_balancing/round_robin/round_robin.cc +36 -55
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +0 -1
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +85 -110
- data/src/core/load_balancing/weighted_target/weighted_target.cc +52 -75
- data/src/core/load_balancing/xds/cds.cc +26 -43
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +57 -54
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +36 -50
- data/src/core/load_balancing/xds/xds_override_host.cc +95 -131
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +15 -23
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +3 -0
- data/src/core/resolver/binder/binder_resolver.cc +0 -2
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +62 -44
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +0 -2
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +110 -89
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +132 -96
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +0 -7
- data/src/core/resolver/dns/dns_resolver_plugin.cc +0 -1
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +40 -39
- data/src/core/resolver/dns/native/dns_resolver.cc +8 -14
- data/src/core/resolver/endpoint_addresses.cc +0 -1
- data/src/core/resolver/fake/fake_resolver.cc +0 -1
- data/src/core/resolver/polling_resolver.cc +6 -15
- data/src/core/resolver/polling_resolver.h +1 -1
- data/src/core/resolver/xds/xds_config.cc +96 -0
- data/src/core/resolver/xds/xds_config.h +109 -0
- data/src/core/resolver/xds/xds_dependency_manager.cc +59 -154
- data/src/core/resolver/xds/xds_dependency_manager.h +1 -69
- data/src/core/resolver/xds/xds_resolver.cc +51 -55
- data/src/core/server/server.cc +2 -2
- data/src/core/server/server_config_selector_filter.cc +0 -1
- data/src/core/server/xds_server_config_fetcher.cc +4 -6
- data/src/core/service_config/service_config_call_data.h +2 -3
- data/src/core/service_config/service_config_channel_arg_filter.cc +0 -1
- data/src/core/service_config/service_config_impl.h +0 -1
- data/src/core/telemetry/call_tracer.cc +0 -1
- data/src/core/telemetry/metrics.h +0 -1
- data/src/core/telemetry/stats_data.cc +67 -0
- data/src/core/telemetry/stats_data.h +48 -0
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +0 -1
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +0 -1
- data/src/core/tsi/fake_transport_security.cc +6 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +0 -1
- data/src/core/util/alloc.cc +0 -1
- data/src/core/util/gcp_metadata_query.cc +0 -1
- data/src/core/util/http_client/httpcli.cc +12 -15
- data/src/core/util/http_client/httpcli.h +16 -11
- data/src/core/util/http_client/parser.cc +3 -4
- data/src/core/util/json/json_reader.cc +0 -1
- data/src/core/util/latent_see.cc +29 -9
- data/src/core/util/latent_see.h +122 -27
- data/src/core/util/log.cc +36 -55
- data/src/core/util/lru_cache.h +104 -0
- data/src/core/util/msys/tmpfile.cc +0 -1
- data/src/core/util/posix/sync.cc +0 -1
- data/src/core/util/posix/time.cc +0 -1
- data/src/core/util/ring_buffer.h +123 -0
- data/src/core/util/spinlock.h +1 -2
- data/src/core/util/string.cc +7 -7
- data/src/core/util/sync.cc +0 -1
- data/src/core/util/sync_abseil.cc +0 -1
- data/src/core/util/time.cc +0 -1
- data/src/core/util/unique_ptr_with_bitset.h +86 -0
- data/src/core/util/useful.h +0 -24
- data/src/core/util/windows/cpu.cc +0 -1
- data/src/core/util/windows/sync.cc +0 -1
- data/src/core/util/windows/time.cc +0 -1
- data/src/core/util/windows/tmpfile.cc +0 -1
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +0 -32
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +0 -5
- data/src/core/xds/grpc/xds_certificate_provider.cc +0 -1
- data/src/core/xds/grpc/xds_client_grpc.cc +11 -16
- data/src/core/xds/grpc/xds_cluster.cc +2 -8
- data/src/core/xds/grpc/xds_cluster.h +4 -4
- data/src/core/xds/grpc/xds_cluster_parser.cc +58 -96
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +0 -1
- data/src/core/xds/grpc/xds_common_types_parser.cc +4 -4
- data/src/core/xds/grpc/xds_common_types_parser.h +17 -0
- data/src/core/xds/grpc/xds_endpoint_parser.cc +14 -14
- data/src/core/xds/grpc/xds_http_fault_filter.cc +15 -6
- data/src/core/xds/grpc/xds_http_fault_filter.h +5 -1
- data/src/core/xds/grpc/xds_http_filter.h +11 -1
- data/src/core/xds/grpc/xds_http_filter_registry.cc +7 -1
- data/src/core/xds/grpc/xds_http_filter_registry.h +8 -1
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +142 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +61 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +14 -6
- data/src/core/xds/grpc/xds_http_rbac_filter.h +5 -1
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +9 -1
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +5 -1
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +14 -16
- data/src/core/xds/grpc/xds_listener_parser.cc +10 -11
- data/src/core/xds/grpc/xds_metadata.cc +62 -0
- data/src/core/xds/grpc/xds_metadata.h +127 -0
- data/src/core/xds/grpc/xds_metadata_parser.cc +143 -0
- data/src/core/xds/grpc/xds_metadata_parser.h +36 -0
- data/src/core/xds/grpc/xds_route_config_parser.cc +12 -17
- data/src/core/xds/grpc/xds_routing.cc +57 -22
- data/src/core/xds/grpc/xds_routing.h +10 -2
- data/src/core/xds/grpc/xds_transport_grpc.cc +0 -1
- data/src/core/xds/xds_client/xds_client.cc +124 -165
- data/src/core/xds/xds_client/xds_client_stats.cc +20 -27
- data/src/ruby/ext/grpc/rb_call.c +1 -1
- data/src/ruby/ext/grpc/rb_call_credentials.c +34 -27
- data/src/ruby/ext/grpc/rb_channel.c +22 -16
- data/src/ruby/ext/grpc/rb_event_thread.c +3 -2
- data/src/ruby/ext/grpc/rb_grpc.c +9 -8
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -10
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -15
- data/src/ruby/ext/grpc/rb_server.c +10 -8
- data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/spec/call_spec.rb +53 -40
- data/src/ruby/spec/channel_spec.rb +4 -2
- data/src/ruby/spec/client_server_spec.rb +148 -507
- data/src/ruby/spec/generic/active_call_spec.rb +64 -86
- data/src/ruby/spec/support/services.rb +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand/fork_detect.h → bcm_support.h} +51 -6
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +72 -23
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +79 -78
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div.c → div.c.inc} +146 -179
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{random.c → random.c.inc} +6 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{sqrt.c → sqrt.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aes.c → e_aes.c.inc} +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_key.c → ec_key.c.inc} +11 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-nistz.c → p256-nistz.c.inc} +104 -12
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/{ecdsa.c → ecdsa.c.inc} +52 -107
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{rand.c → rand.c.inc} +26 -40
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{padding.c → padding.c.inc} +2 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa_impl.c → rsa_impl.c.inc} +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{self_check.c → self_check.c.inc} +9 -35
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/{service_indicator.c → service_indicator.c.inc} +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +293 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +69 -14
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +4 -5
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/fork_detect.c +26 -28
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/urandom.c +19 -19
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +14 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +13 -15
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +3 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +22 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +35 -5
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +5 -6
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +6 -1
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +13 -1
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +289 -55
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +2 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +69 -38
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +14 -3
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +107 -14
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +44 -16
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +97 -3
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +31 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +18 -4
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +15 -5
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +3 -23
- metadata +113 -87
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -45
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
- data/src/core/util/android/log.cc +0 -48
- data/src/core/util/linux/log.cc +0 -69
- data/src/core/util/posix/log.cc +0 -69
- data/src/core/util/windows/log.cc +0 -73
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes.c → aes.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bytes.c → bytes.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div_extra.c → div_extra.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{exponentiation.c → exponentiation.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd_extra.c → gcd_extra.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery_inv.c → montgomery_inv.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{mul.c → mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{prime.c → prime.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{scalar.c → scalar.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa.c → rsa.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{fips.c → fips.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha1.c → sha1.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha256.c → sha256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha512.c → sha512.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/{kdf.c → kdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -284,22 +284,19 @@ WeightedTargetLb::PickResult WeightedTargetLb::WeightedPicker::Pick(
|
|
284
284
|
|
285
285
|
WeightedTargetLb::WeightedTargetLb(Args args)
|
286
286
|
: LoadBalancingPolicy(std::move(args)) {
|
287
|
-
|
288
|
-
|
289
|
-
}
|
287
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
288
|
+
<< "[weighted_target_lb " << this << "] created";
|
290
289
|
}
|
291
290
|
|
292
291
|
WeightedTargetLb::~WeightedTargetLb() {
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
}
|
292
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
293
|
+
<< "[weighted_target_lb " << this
|
294
|
+
<< "] destroying weighted_target LB policy";
|
297
295
|
}
|
298
296
|
|
299
297
|
void WeightedTargetLb::ShutdownLocked() {
|
300
|
-
|
301
|
-
|
302
|
-
}
|
298
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
299
|
+
<< "[weighted_target_lb " << this << "] shutting down";
|
303
300
|
shutting_down_ = true;
|
304
301
|
targets_.clear();
|
305
302
|
}
|
@@ -310,9 +307,8 @@ void WeightedTargetLb::ResetBackoffLocked() {
|
|
310
307
|
|
311
308
|
absl::Status WeightedTargetLb::UpdateLocked(UpdateArgs args) {
|
312
309
|
if (shutting_down_) return absl::OkStatus();
|
313
|
-
|
314
|
-
|
315
|
-
}
|
310
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
311
|
+
<< "[weighted_target_lb " << this << "] received update";
|
316
312
|
update_in_progress_ = true;
|
317
313
|
// Update config.
|
318
314
|
config_ = args.config.TakeAsSubclass<WeightedTargetLbConfig>();
|
@@ -382,10 +378,9 @@ void WeightedTargetLb::UpdateStateLocked() {
|
|
382
378
|
// all children. This avoids unnecessary picker churn while an update
|
383
379
|
// is being propagated to our children.
|
384
380
|
if (update_in_progress_) return;
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
}
|
381
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
382
|
+
<< "[weighted_target_lb " << this
|
383
|
+
<< "] scanning children to determine connectivity state";
|
389
384
|
// Construct lists of child pickers with associated weights, one for
|
390
385
|
// children that are in state READY and another for children that are
|
391
386
|
// in state TRANSIENT_FAILURE. Each child is represented by a portion of
|
@@ -407,13 +402,10 @@ void WeightedTargetLb::UpdateStateLocked() {
|
|
407
402
|
continue;
|
408
403
|
}
|
409
404
|
auto child_picker = child->picker();
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
<< " weight=" << child->weight()
|
415
|
-
<< " picker=" << child_picker.get();
|
416
|
-
}
|
405
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
406
|
+
<< "[weighted_target_lb " << this << "] child=" << child_name
|
407
|
+
<< " state=" << ConnectivityStateName(child->connectivity_state())
|
408
|
+
<< " weight=" << child->weight() << " picker=" << child_picker.get();
|
417
409
|
switch (child->connectivity_state()) {
|
418
410
|
case GRPC_CHANNEL_READY: {
|
419
411
|
CHECK_GT(child->weight(), 0u);
|
@@ -450,10 +442,9 @@ void WeightedTargetLb::UpdateStateLocked() {
|
|
450
442
|
} else {
|
451
443
|
connectivity_state = GRPC_CHANNEL_TRANSIENT_FAILURE;
|
452
444
|
}
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
}
|
445
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
446
|
+
<< "[weighted_target_lb " << this << "] connectivity changed to "
|
447
|
+
<< ConnectivityStateName(connectivity_state);
|
457
448
|
RefCountedPtr<SubchannelPicker> picker;
|
458
449
|
absl::Status status;
|
459
450
|
switch (connectivity_state) {
|
@@ -494,13 +485,11 @@ WeightedTargetLb::WeightedChild::DelayedRemovalTimer::DelayedRemovalTimer(
|
|
494
485
|
|
495
486
|
void WeightedTargetLb::WeightedChild::DelayedRemovalTimer::Orphan() {
|
496
487
|
if (timer_handle_.has_value()) {
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
<< ": cancelling delayed removal timer";
|
503
|
-
}
|
488
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
489
|
+
<< "[weighted_target_lb "
|
490
|
+
<< weighted_child_->weighted_target_policy_.get() << "] WeightedChild "
|
491
|
+
<< weighted_child_.get() << " " << weighted_child_->name_
|
492
|
+
<< ": cancelling delayed removal timer";
|
504
493
|
weighted_child_->weighted_target_policy_->channel_control_helper()
|
505
494
|
->GetEventEngine()
|
506
495
|
->Cancel(*timer_handle_);
|
@@ -525,27 +514,22 @@ WeightedTargetLb::WeightedChild::WeightedChild(
|
|
525
514
|
: weighted_target_policy_(std::move(weighted_target_policy)),
|
526
515
|
name_(name),
|
527
516
|
picker_(MakeRefCounted<QueuePicker>(nullptr)) {
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
}
|
517
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
518
|
+
<< "[weighted_target_lb " << weighted_target_policy_.get()
|
519
|
+
<< "] created WeightedChild " << this << " for " << name_;
|
532
520
|
}
|
533
521
|
|
534
522
|
WeightedTargetLb::WeightedChild::~WeightedChild() {
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
<< ": destroying child";
|
539
|
-
}
|
523
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
524
|
+
<< "[weighted_target_lb " << weighted_target_policy_.get()
|
525
|
+
<< "] WeightedChild " << this << " " << name_ << ": destroying child";
|
540
526
|
weighted_target_policy_.reset(DEBUG_LOCATION, "WeightedChild");
|
541
527
|
}
|
542
528
|
|
543
529
|
void WeightedTargetLb::WeightedChild::Orphan() {
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
<< ": shutting down child";
|
548
|
-
}
|
530
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
531
|
+
<< "[weighted_target_lb " << weighted_target_policy_.get()
|
532
|
+
<< "] WeightedChild " << this << " " << name_ << ": shutting down child";
|
549
533
|
// Remove the child policy's interested_parties pollset_set from the
|
550
534
|
// xDS policy.
|
551
535
|
grpc_pollset_set_del_pollset_set(
|
@@ -570,11 +554,10 @@ WeightedTargetLb::WeightedChild::CreateChildPolicyLocked(
|
|
570
554
|
OrphanablePtr<LoadBalancingPolicy> lb_policy =
|
571
555
|
MakeOrphanable<ChildPolicyHandler>(std::move(lb_policy_args),
|
572
556
|
&weighted_target_lb_trace);
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
}
|
557
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
558
|
+
<< "[weighted_target_lb " << weighted_target_policy_.get()
|
559
|
+
<< "] WeightedChild " << this << " " << name_
|
560
|
+
<< ": created new child policy handler " << lb_policy.get();
|
578
561
|
// Add the xDS's interested_parties pollset_set to that of the newly created
|
579
562
|
// child policy. This will make the child policy progress upon activity on
|
580
563
|
// xDS LB, which in turn is tied to the application's call.
|
@@ -598,11 +581,9 @@ absl::Status WeightedTargetLb::WeightedChild::UpdateLocked(
|
|
598
581
|
weight_ = config.weight;
|
599
582
|
// Reactivate if needed.
|
600
583
|
if (delayed_removal_timer_ != nullptr) {
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
<< ": reactivating";
|
605
|
-
}
|
584
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
585
|
+
<< "[weighted_target_lb " << weighted_target_policy_.get()
|
586
|
+
<< "] WeightedChild " << this << " " << name_ << ": reactivating";
|
606
587
|
delayed_removal_timer_.reset();
|
607
588
|
}
|
608
589
|
// Create child policy if needed.
|
@@ -617,11 +598,10 @@ absl::Status WeightedTargetLb::WeightedChild::UpdateLocked(
|
|
617
598
|
update_args.resolution_note = resolution_note;
|
618
599
|
update_args.args = std::move(args);
|
619
600
|
// Update the policy.
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
}
|
601
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
602
|
+
<< "[weighted_target_lb " << weighted_target_policy_.get()
|
603
|
+
<< "] WeightedChild " << this << " " << name_
|
604
|
+
<< ": updating child policy handler " << child_policy_.get();
|
625
605
|
return child_policy_->UpdateLocked(std::move(update_args));
|
626
606
|
}
|
627
607
|
|
@@ -634,13 +614,11 @@ void WeightedTargetLb::WeightedChild::OnConnectivityStateUpdateLocked(
|
|
634
614
|
RefCountedPtr<SubchannelPicker> picker) {
|
635
615
|
// Cache the picker in the WeightedChild.
|
636
616
|
picker_ = std::move(picker);
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
<< ") picker=" << picker_.get();
|
643
|
-
}
|
617
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
618
|
+
<< "[weighted_target_lb " << weighted_target_policy_.get()
|
619
|
+
<< "] WeightedChild " << this << " " << name_
|
620
|
+
<< ": connectivity state update: state=" << ConnectivityStateName(state)
|
621
|
+
<< " (" << status << ") picker=" << picker_.get();
|
644
622
|
// If the child reports IDLE, immediately tell it to exit idle.
|
645
623
|
if (state == GRPC_CHANNEL_IDLE) child_policy_->ExitIdleLocked();
|
646
624
|
// Decide what state to report for aggregation purposes.
|
@@ -657,10 +635,9 @@ void WeightedTargetLb::WeightedChild::OnConnectivityStateUpdateLocked(
|
|
657
635
|
void WeightedTargetLb::WeightedChild::DeactivateLocked() {
|
658
636
|
// If already deactivated, don't do that again.
|
659
637
|
if (weight_ == 0) return;
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
}
|
638
|
+
GRPC_TRACE_LOG(weighted_target_lb, INFO)
|
639
|
+
<< "[weighted_target_lb " << weighted_target_policy_.get()
|
640
|
+
<< "] WeightedChild " << this << " " << name_ << ": deactivating";
|
664
641
|
// Set the child weight to 0 so that future picker won't contain this child.
|
665
642
|
weight_ = 0;
|
666
643
|
// Start a timer to delete the child.
|
@@ -78,8 +78,6 @@ bool XdsAggregateClusterBackwardCompatibilityEnabled() {
|
|
78
78
|
return parse_succeeded && parsed_value;
|
79
79
|
}
|
80
80
|
|
81
|
-
using XdsConfig = XdsDependencyManager::XdsConfig;
|
82
|
-
|
83
81
|
constexpr absl::string_view kCds = "cds_experimental";
|
84
82
|
|
85
83
|
// Config for this LB policy.
|
@@ -183,21 +181,16 @@ class CdsLb final : public LoadBalancingPolicy {
|
|
183
181
|
//
|
184
182
|
|
185
183
|
CdsLb::CdsLb(Args args) : LoadBalancingPolicy(std::move(args)) {
|
186
|
-
|
187
|
-
LOG(INFO) << "[cdslb " << this << "] created";
|
188
|
-
}
|
184
|
+
GRPC_TRACE_LOG(cds_lb, INFO) << "[cdslb " << this << "] created";
|
189
185
|
}
|
190
186
|
|
191
187
|
CdsLb::~CdsLb() {
|
192
|
-
|
193
|
-
|
194
|
-
}
|
188
|
+
GRPC_TRACE_LOG(cds_lb, INFO)
|
189
|
+
<< "[cdslb " << this << "] destroying cds LB policy";
|
195
190
|
}
|
196
191
|
|
197
192
|
void CdsLb::ShutdownLocked() {
|
198
|
-
|
199
|
-
LOG(INFO) << "[cdslb " << this << "] shutting down";
|
200
|
-
}
|
193
|
+
GRPC_TRACE_LOG(cds_lb, INFO) << "[cdslb " << this << "] shutting down";
|
201
194
|
shutting_down_ = true;
|
202
195
|
ResetState();
|
203
196
|
}
|
@@ -280,11 +273,10 @@ class PriorityEndpointIterator final : public EndpointAddressesIterator {
|
|
280
273
|
absl::Status CdsLb::UpdateLocked(UpdateArgs args) {
|
281
274
|
// Get new config.
|
282
275
|
auto new_config = args.config.TakeAsSubclass<CdsLbConfig>();
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
}
|
276
|
+
GRPC_TRACE_LOG(cds_lb, INFO)
|
277
|
+
<< "[cdslb " << this
|
278
|
+
<< "] received update: cluster=" << new_config->cluster()
|
279
|
+
<< " is_dynamic=" << new_config->is_dynamic();
|
288
280
|
CHECK(new_config != nullptr);
|
289
281
|
// Cluster name should never change, because we should use a different
|
290
282
|
// child name in xds_cluster_manager in that case.
|
@@ -295,11 +287,9 @@ absl::Status CdsLb::UpdateLocked(UpdateArgs args) {
|
|
295
287
|
}
|
296
288
|
// Start dynamic subscription if needed.
|
297
289
|
if (new_config->is_dynamic() && subscription_ == nullptr) {
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
<< cluster_name_;
|
302
|
-
}
|
290
|
+
GRPC_TRACE_LOG(cds_lb, INFO)
|
291
|
+
<< "[cdslb " << this << "] obtaining dynamic subscription for cluster "
|
292
|
+
<< cluster_name_;
|
303
293
|
auto* dependency_mgr = args.args.GetObject<XdsDependencyManager>();
|
304
294
|
if (dependency_mgr == nullptr) {
|
305
295
|
// Should never happen.
|
@@ -326,11 +316,10 @@ absl::Status CdsLb::UpdateLocked(UpdateArgs args) {
|
|
326
316
|
// If we are already subscribed, it's possible that we just
|
327
317
|
// recently subscribed but another update came through before we
|
328
318
|
// got the new cluster, in which case it will still be missing.
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
}
|
319
|
+
GRPC_TRACE_LOG(cds_lb, INFO)
|
320
|
+
<< "[cdslb " << this
|
321
|
+
<< "] xDS config has no entry for dynamic cluster " << cluster_name_
|
322
|
+
<< ", waiting for subsequent update";
|
334
323
|
// Stay in CONNECTING until we get an update that has the cluster.
|
335
324
|
return absl::OkStatus();
|
336
325
|
}
|
@@ -452,11 +441,9 @@ absl::Status CdsLb::UpdateLocked(UpdateArgs args) {
|
|
452
441
|
}
|
453
442
|
grpc_pollset_set_add_pollset_set(child_policy_->interested_parties(),
|
454
443
|
interested_parties());
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
<< ")";
|
459
|
-
}
|
444
|
+
GRPC_TRACE_LOG(cds_lb, INFO)
|
445
|
+
<< "[cdslb " << this << "] created child policy "
|
446
|
+
<< (*child_config)->name() << " (" << child_policy_.get() << ")";
|
460
447
|
}
|
461
448
|
// Update child policy.
|
462
449
|
update_args.config = std::move(*child_config);
|
@@ -662,10 +649,9 @@ Json CdsLb::CreateChildPolicyConfigForLeafCluster(
|
|
662
649
|
{"outlier_detection_experimental",
|
663
650
|
Json::FromObject(std::move(outlier_detection_config))},
|
664
651
|
})});
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
}
|
652
|
+
GRPC_TRACE_LOG(cds_lb, INFO)
|
653
|
+
<< "[cdslb " << this << "] generated config for child policy: "
|
654
|
+
<< JsonDump(outlier_detection_policy, /*indent=*/1);
|
669
655
|
return outlier_detection_policy;
|
670
656
|
}
|
671
657
|
|
@@ -695,10 +681,9 @@ Json CdsLb::CreateChildPolicyConfigForAggregateCluster(
|
|
695
681
|
{"priorities", Json::FromArray(std::move(priority_priorities))},
|
696
682
|
})},
|
697
683
|
})});
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
}
|
684
|
+
GRPC_TRACE_LOG(cds_lb, INFO)
|
685
|
+
<< "[cdslb " << this << "] generated config for child policy: "
|
686
|
+
<< JsonDump(json, /*indent=*/1);
|
702
687
|
return json;
|
703
688
|
}
|
704
689
|
|
@@ -714,10 +699,8 @@ void CdsLb::ResetState() {
|
|
714
699
|
}
|
715
700
|
|
716
701
|
void CdsLb::ReportTransientFailure(absl::Status status) {
|
717
|
-
|
718
|
-
|
719
|
-
<< "] reporting TRANSIENT_FAILURE: " << status;
|
720
|
-
}
|
702
|
+
GRPC_TRACE_LOG(cds_lb, INFO)
|
703
|
+
<< "[cdslb " << this << "] reporting TRANSIENT_FAILURE: " << status;
|
721
704
|
ResetState();
|
722
705
|
channel_control_helper()->UpdateState(
|
723
706
|
GRPC_CHANNEL_TRANSIENT_FAILURE, status,
|
@@ -35,7 +35,6 @@
|
|
35
35
|
#include "absl/types/variant.h"
|
36
36
|
|
37
37
|
#include <grpc/impl/connectivity_state.h>
|
38
|
-
#include <grpc/support/log.h>
|
39
38
|
#include <grpc/support/port_platform.h>
|
40
39
|
|
41
40
|
#include "src/core/client_channel/client_channel_internal.h"
|
@@ -63,7 +62,7 @@
|
|
63
62
|
#include "src/core/load_balancing/subchannel_interface.h"
|
64
63
|
#include "src/core/load_balancing/xds/xds_channel_args.h"
|
65
64
|
#include "src/core/resolver/endpoint_addresses.h"
|
66
|
-
#include "src/core/resolver/xds/
|
65
|
+
#include "src/core/resolver/xds/xds_config.h"
|
67
66
|
#include "src/core/resolver/xds/xds_resolver_attributes.h"
|
68
67
|
#include "src/core/telemetry/call_tracer.h"
|
69
68
|
#include "src/core/util/json/json.h"
|
@@ -80,8 +79,6 @@ namespace grpc_core {
|
|
80
79
|
|
81
80
|
namespace {
|
82
81
|
|
83
|
-
using XdsConfig = XdsDependencyManager::XdsConfig;
|
84
|
-
|
85
82
|
//
|
86
83
|
// global circuit breaker atomic map
|
87
84
|
//
|
@@ -293,6 +290,8 @@ class XdsClusterImplLb final : public LoadBalancingPolicy {
|
|
293
290
|
// Current config from the resolver.
|
294
291
|
RefCountedPtr<XdsClusterImplLbConfig> config_;
|
295
292
|
std::shared_ptr<const XdsClusterResource> cluster_resource_;
|
293
|
+
RefCountedStringValue service_telemetry_label_;
|
294
|
+
RefCountedStringValue namespace_telemetry_label_;
|
296
295
|
RefCountedPtr<XdsEndpointResource::DropConfig> drop_config_;
|
297
296
|
|
298
297
|
// Current concurrent number of requests.
|
@@ -397,17 +396,15 @@ XdsClusterImplLb::Picker::Picker(XdsClusterImplLb* xds_cluster_impl_lb,
|
|
397
396
|
: call_counter_(xds_cluster_impl_lb->call_counter_),
|
398
397
|
max_concurrent_requests_(
|
399
398
|
xds_cluster_impl_lb->cluster_resource_->max_concurrent_requests),
|
400
|
-
service_telemetry_label_(
|
401
|
-
xds_cluster_impl_lb->cluster_resource_->service_telemetry_label),
|
399
|
+
service_telemetry_label_(xds_cluster_impl_lb->service_telemetry_label_),
|
402
400
|
namespace_telemetry_label_(
|
403
|
-
xds_cluster_impl_lb->
|
401
|
+
xds_cluster_impl_lb->namespace_telemetry_label_),
|
404
402
|
drop_config_(xds_cluster_impl_lb->drop_config_),
|
405
403
|
drop_stats_(xds_cluster_impl_lb->drop_stats_),
|
406
404
|
picker_(std::move(picker)) {
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
}
|
405
|
+
GRPC_TRACE_LOG(xds_cluster_impl_lb, INFO)
|
406
|
+
<< "[xds_cluster_impl_lb " << xds_cluster_impl_lb
|
407
|
+
<< "] constructed new picker " << this;
|
411
408
|
}
|
412
409
|
|
413
410
|
LoadBalancingPolicy::PickResult XdsClusterImplLb::Picker::Pick(
|
@@ -500,23 +497,20 @@ LoadBalancingPolicy::PickResult XdsClusterImplLb::Picker::Pick(
|
|
500
497
|
XdsClusterImplLb::XdsClusterImplLb(RefCountedPtr<GrpcXdsClient> xds_client,
|
501
498
|
Args args)
|
502
499
|
: LoadBalancingPolicy(std::move(args)), xds_client_(std::move(xds_client)) {
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
}
|
500
|
+
GRPC_TRACE_LOG(xds_cluster_impl_lb, INFO)
|
501
|
+
<< "[xds_cluster_impl_lb " << this << "] created -- using xds client "
|
502
|
+
<< xds_client_.get();
|
507
503
|
}
|
508
504
|
|
509
505
|
XdsClusterImplLb::~XdsClusterImplLb() {
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
}
|
506
|
+
GRPC_TRACE_LOG(xds_cluster_impl_lb, INFO)
|
507
|
+
<< "[xds_cluster_impl_lb " << this
|
508
|
+
<< "] destroying xds_cluster_impl LB policy";
|
514
509
|
}
|
515
510
|
|
516
511
|
void XdsClusterImplLb::ShutdownLocked() {
|
517
|
-
|
518
|
-
|
519
|
-
}
|
512
|
+
GRPC_TRACE_LOG(xds_cluster_impl_lb, INFO)
|
513
|
+
<< "[xds_cluster_impl_lb " << this << "] shutting down";
|
520
514
|
shutting_down_ = true;
|
521
515
|
ResetState();
|
522
516
|
xds_client_.reset(DEBUG_LOCATION, "XdsClusterImpl");
|
@@ -537,10 +531,9 @@ void XdsClusterImplLb::ResetState() {
|
|
537
531
|
}
|
538
532
|
|
539
533
|
void XdsClusterImplLb::ReportTransientFailure(absl::Status status) {
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
}
|
534
|
+
GRPC_TRACE_LOG(xds_cluster_impl_lb, INFO)
|
535
|
+
<< "[xds_cluster_impl_lb " << this
|
536
|
+
<< "] reporting TRANSIENT_FAILURE: " << status;
|
544
537
|
ResetState();
|
545
538
|
channel_control_helper()->UpdateState(
|
546
539
|
GRPC_CHANNEL_TRANSIENT_FAILURE, status,
|
@@ -564,9 +557,8 @@ std::string GetEdsResourceName(const XdsClusterResource& cluster_resource) {
|
|
564
557
|
}
|
565
558
|
|
566
559
|
absl::Status XdsClusterImplLb::UpdateLocked(UpdateArgs args) {
|
567
|
-
|
568
|
-
|
569
|
-
}
|
560
|
+
GRPC_TRACE_LOG(xds_cluster_impl_lb, INFO)
|
561
|
+
<< "[xds_cluster_impl_lb " << this << "] Received update";
|
570
562
|
// Grab new LB policy config.
|
571
563
|
auto new_config = args.config.TakeAsSubclass<XdsClusterImplLbConfig>();
|
572
564
|
// Cluster name should never change, because the cds policy will assign a
|
@@ -654,6 +646,23 @@ absl::Status XdsClusterImplLb::UpdateLocked(UpdateArgs args) {
|
|
654
646
|
// Update config state, now that we're done comparing old and new fields.
|
655
647
|
config_ = std::move(new_config);
|
656
648
|
cluster_resource_ = new_cluster_config.cluster;
|
649
|
+
const XdsMetadataValue* metadata_value =
|
650
|
+
cluster_resource_->metadata.Find("com.google.csm.telemetry_labels");
|
651
|
+
if (metadata_value != nullptr &&
|
652
|
+
metadata_value->type() == XdsStructMetadataValue::Type()) {
|
653
|
+
const Json::Object& json_object =
|
654
|
+
DownCast<const XdsStructMetadataValue*>(metadata_value)
|
655
|
+
->json()
|
656
|
+
.object();
|
657
|
+
auto it = json_object.find("service_name");
|
658
|
+
if (it != json_object.end() && it->second.type() == Json::Type::kString) {
|
659
|
+
service_telemetry_label_ = RefCountedStringValue(it->second.string());
|
660
|
+
}
|
661
|
+
it = json_object.find("service_namespace");
|
662
|
+
if (it != json_object.end() && it->second.type() == Json::Type::kString) {
|
663
|
+
namespace_telemetry_label_ = RefCountedStringValue(it->second.string());
|
664
|
+
}
|
665
|
+
}
|
657
666
|
drop_config_ = endpoint_config->endpoints != nullptr
|
658
667
|
? endpoint_config->endpoints->drop_config
|
659
668
|
: nullptr;
|
@@ -736,11 +745,10 @@ void XdsClusterImplLb::MaybeUpdatePickerLocked() {
|
|
736
745
|
// whether) the child has reported.
|
737
746
|
if (drop_config_ != nullptr && drop_config_->drop_all()) {
|
738
747
|
auto drop_picker = MakeRefCounted<Picker>(this, picker_);
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
}
|
748
|
+
GRPC_TRACE_LOG(xds_cluster_impl_lb, INFO)
|
749
|
+
<< "[xds_cluster_impl_lb " << this
|
750
|
+
<< "] updating connectivity (drop all): state=READY picker="
|
751
|
+
<< drop_picker.get();
|
744
752
|
channel_control_helper()->UpdateState(GRPC_CHANNEL_READY, absl::Status(),
|
745
753
|
std::move(drop_picker));
|
746
754
|
return;
|
@@ -748,12 +756,10 @@ void XdsClusterImplLb::MaybeUpdatePickerLocked() {
|
|
748
756
|
// Otherwise, update only if we have a child picker.
|
749
757
|
if (picker_ != nullptr) {
|
750
758
|
auto drop_picker = MakeRefCounted<Picker>(this, picker_);
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
<< ") picker=" << drop_picker.get();
|
756
|
-
}
|
759
|
+
GRPC_TRACE_LOG(xds_cluster_impl_lb, INFO)
|
760
|
+
<< "[xds_cluster_impl_lb " << this
|
761
|
+
<< "] updating connectivity: state=" << ConnectivityStateName(state_)
|
762
|
+
<< " status=(" << status_ << ") picker=" << drop_picker.get();
|
757
763
|
channel_control_helper()->UpdateState(state_, status_,
|
758
764
|
std::move(drop_picker));
|
759
765
|
}
|
@@ -769,10 +775,9 @@ OrphanablePtr<LoadBalancingPolicy> XdsClusterImplLb::CreateChildPolicyLocked(
|
|
769
775
|
OrphanablePtr<LoadBalancingPolicy> lb_policy =
|
770
776
|
MakeOrphanable<ChildPolicyHandler>(std::move(lb_policy_args),
|
771
777
|
&xds_cluster_impl_lb_trace);
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
}
|
778
|
+
GRPC_TRACE_LOG(xds_cluster_impl_lb, INFO)
|
779
|
+
<< "[xds_cluster_impl_lb " << this
|
780
|
+
<< "] Created new child policy handler " << lb_policy.get();
|
776
781
|
// Add our interested_parties pollset_set to that of the newly created
|
777
782
|
// child policy. This will make the child policy progress upon activity on
|
778
783
|
// this policy, which in turn is tied to the application's call.
|
@@ -796,10 +801,9 @@ absl::Status XdsClusterImplLb::UpdateChildPolicyLocked(
|
|
796
801
|
update_args.args =
|
797
802
|
args.Set(GRPC_ARG_XDS_CLUSTER_NAME, config_->cluster_name());
|
798
803
|
// Update the policy.
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
}
|
804
|
+
GRPC_TRACE_LOG(xds_cluster_impl_lb, INFO)
|
805
|
+
<< "[xds_cluster_impl_lb " << this << "] Updating child policy handler "
|
806
|
+
<< child_policy_.get();
|
803
807
|
return child_policy_->UpdateLocked(std::move(update_args));
|
804
808
|
}
|
805
809
|
|
@@ -850,12 +854,11 @@ void XdsClusterImplLb::Helper::UpdateState(
|
|
850
854
|
grpc_connectivity_state state, const absl::Status& status,
|
851
855
|
RefCountedPtr<SubchannelPicker> picker) {
|
852
856
|
if (parent()->shutting_down_) return;
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
}
|
857
|
+
GRPC_TRACE_LOG(xds_cluster_impl_lb, INFO)
|
858
|
+
<< "[xds_cluster_impl_lb " << parent()
|
859
|
+
<< "] child connectivity state update: state="
|
860
|
+
<< ConnectivityStateName(state) << " (" << status
|
861
|
+
<< ") picker=" << picker.get();
|
859
862
|
// Save the state and picker.
|
860
863
|
parent()->state_ = state;
|
861
864
|
parent()->status_ = status;
|