You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
server: always enable DRPC listener irrespective of the setting
Previously, the DRPC server was only started when the experimental DRPC
setting was enabled. This created a problem where enabling DRPC after a
node had already started would not work, as the listener would not be
running and would reject all DRPC requests until the node was restarted.
To address this, this patch always enables the DRPC listener regardless of
the experimental setting. The cost of leaving the DRPC listener on all the
time is low, and this change simplifies the codebase by removing the need
to check cluster settings when creating clients. This could even help us
avoid the need for a restart to enable DRPC entirely, if we can also figure
out how to swap our gRPC clients for DRPC clients in various subsystems.
Release note: None
Epic: CRDB-52378
0 commit comments