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
sql: accept WITH (WAIT ...) on ALTER CLUSTER unconditionally
Graceful cluster reconfiguration has been behind the
`enable_zero_downtime_cluster_reconfiguration` feature flag, default off, so
the `WITH (WAIT ...)` surface is rejected at plan time unless a deployment
turns it on. The controller record is now the only managed-cluster reshape
path, which leaves the flag controlling only whether users can express its
deadline and timeout behavior.
Remove the flag and planner gate. The two rejections that share the code path
stay: a `WAIT` without a replica-shape change, and a `WAIT` on an unmanaged
cluster.
Every test that used the surface enabled the flag itself, so those statements
go. In a mixed-version run some phases execute against a released binary that
still enforces the gate, so `get_minimal_system_parameters` pins the flag on
below v26.39 instead.
The docs drop the private-preview badges because the surface is generally
available once nothing gates it.
Copy file name to clipboardExpand all lines: doc/user/data/examples/alter_cluster.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -96,8 +96,8 @@
96
96
The following `<with_option>`s are supported:
97
97
| Option | Description |
98
98
|--------|-------------|
99
-
| `WAIT UNTIL READY(...)` | ***Private preview.** This option has known performance or stability issues and is under active development.* {{< include-from-yaml data="examples/alter_cluster" name="wait-until-ready-cmd-option" >}} |
100
-
| `WAIT FOR` | ***Private preview.** This option has known performance or stability issues and is under active development.* A fixed duration to wait for the new replicas to be ready. This option can lead to downtime. As such, we recommend using the `WAIT UNTIL READY` option instead.|
| `WAIT FOR` | A fixed duration to wait for the new replicas to be ready. This option can lead to downtime. As such, we recommend using the `WAIT UNTIL READY` option instead.|
0 commit comments