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
Starting with #13351, we store app-throttling rules in topo. This means vtctldclient UpdateThrottlerConfig now supports per-app throttling configuration, e.g.:
However, we also already have existing ALTER VITESS_MIGRATION ... (THROTTLE|UNTHROTTLE) ... set of commands. Today, these are sent to the backend tablets just like any other ALTER VITESS_MIGRATION command such as CANCEL, COMPLETE, etc.
As a reminder, ALTER VITESS_MIGRATION ... (THROTTLE|UNTHROTTLE) ... was constructed for a convenient control over schema migrations. . It applies either to a given UUID or to "online-ddl" apps. Examples:
alter vitess_migration '96ace339_23b6_11ee_b8b7_0a43f95f28a3' throttle expire `1h`;
alter vitess_migration '96ace339_23b6_11ee_b8b7_0a43f95f28a3' unthrottle;
alter vitess_migration throttle all;
alter vitess_migration unthrottle all;
The command must now reroute through topo: it must not reach the backend tablets directly. It should apply to Keyspace and SrvKeyspace in topo, on which the tablet throttler listens.
The text was updated successfully, but these errors were encountered:
Context: #13341
Starting with #13351, we store app-throttling rules in
topo
. This meansvtctldclient UpdateThrottlerConfig
now supports per-app throttling configuration, e.g.:However, we also already have existing
ALTER VITESS_MIGRATION ... (THROTTLE|UNTHROTTLE) ...
set of commands. Today, these are sent to the backend tablets just like any otherALTER VITESS_MIGRATION
command such asCANCEL
,COMPLETE
, etc.As a reminder,
ALTER VITESS_MIGRATION ... (THROTTLE|UNTHROTTLE) ...
was constructed for a convenient control over schema migrations. . It applies either to a given UUID or to"online-ddl"
apps. Examples:The command must now reroute through
topo
: it must not reach the backend tablets directly. It should apply toKeyspace
andSrvKeyspace
intopo
, on which the tablet throttler listens.The text was updated successfully, but these errors were encountered: