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
153961: catalog/lease: update locked timestamps when updates are received r=fqazi a=fqazi
Previously, the lease manager would increase its locked read time stamp was when a check point occurred on the range feed. This was not adequate because this could cause schema changes could be slowed down if the old version of descriptors was held. While the current design does not intentionally reserve, previous versions, a later update will start holding old versions intentionally to serve queries. To address this, this patch has schema changes write the list of descriptors modified to a special key `/Table/Descriptors/2/<First ID in Schema Change`, which will be used by the lease manager range feed to to update timestamps. Additionally, this patch also deflakes and fixes
`TestLeaseManagerLockedTimestampBasic`, which was not setup correctly.
Informs: #153618Fixes: #153826Fixes: #154075
Release note: None
154866: roachtest: deflake c2c/disconnect r=jeffswenson a=msbutler
Previously, the c2c/disconnect roachtest was disconnecting two source nodes, instead of a pair of source/destination nodes. This patch fixes this bug.
Informs: #152248
Informs: #150474
Release note: none
154977: roachtest: deflake backup/mvcc-range-tombstones r=kev-cao a=msbutler
Informs #154841
Release note: none
Co-authored-by: Faizan Qazi <[email protected]>
Co-authored-by: Michael Butler <[email protected]>
srcTenantSQL.QueryRow(t, `select split_part(consumer, '[', 1) from crdb_internal.cluster_replication_node_streams order by random() limit 1`).Scan(&dstNode)
2059
2059
2060
+
roachprodDstNode:=dstNode+sp.srcNodes
2061
+
2060
2062
disconnectDuration:=sp.additionalDuration
2061
2063
rd.t.L().Printf("Disconnecting Src %d, Dest %d for %.2f minutes", srcNode,
2062
-
dstNode, disconnectDuration.Minutes())
2064
+
roachprodDstNode, disconnectDuration.Minutes())
2063
2065
2064
2066
// Normally, the blackholeFailer is accessed through the failer interface,
2065
2067
// at least in the failover tests. Because this test shouldn't use all the
2066
2068
// failer interface calls (e.g. Setup(), and Ready()), we use the
2067
2069
// blakholeFailer struct directly. In other words, in this test, we
2068
2070
// shouldn't treat the blackholeFailer as an abstracted api.
0 commit comments