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
107572: changefeedccl: warn when using https sink urls r=[miretskiy] a=HonoreDB
Changefeeds previously used http as their URI to align with backups.
Backups no longer support http, and for changefeeds http is ambiguous,
leading users to create cloudstorage sinks when they meant webhook sinks.
This PR changes the scheme to file-http. Webhooks still use webhook-http.
Fixescockroachdb#98719.
Release note (enterprise change): Changefeeds that create files over an http connection may now be specified via `INTO 'file-https://'` to disambiguate with `webhook-https`.
107993: sql: Deflake TestTxnObeysTableModificationTime r=Xiang-Gu a=Xiang-Gu
This commit refactors and simplifies this test, and a local execution with `--race --stress` succeeded for at least 10 minutes.
Fixescockroachdb#107736Fixescockroachdb#107159
Epic: None
Release note: None
108013: c2c: reduce TestStreamingAutoReplan runtime r=stevendanna a=msbutler
In a suprising twist, cockroachdb#106853 deflaked this test, but also increased the runtime to 10 minutes. To understand why, consider that the default value of the stream_replication.replan_flow_frequency setting is 10 minutes, and if the user changes the cluster setting, the frequency will only take effect on the next replanning check. So, if a stream begins at t0, and the user changes the setting at t1, the replanning frequency will actually change 10 minutes after t0.
In cockroachdb#105853 patch reduced stream_replication.replan_flow_frequency setting to 500 ms _after_ the stream began, which caused the next replanninng check to occur a full 10 minutes after the stream started! This patch changes this cluster setting _before_ the stream begins, reducing the runtime of this test to a speedy 10 seconds.
Epic: none
Release note: none
Co-authored-by: Aaron Zinger <[email protected]>
Co-authored-by: Xiang Gu <[email protected]>
Co-authored-by: Michael Butler <[email protected]>
0 commit comments