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
148001: server,ui: increase max result size for sql over http requests r=dhartunian a=kyle-a-wong
The default for max result size for the sql over http v2 API was previously set to 10kb, which was frequently resulting in incomplete results / error messages in db console. Additionally, db console used 50kb to as the
"LARGE_RESULT_SIZE" value for many of db consoles sql over http requests. This has also been seen to result in errors like "Not all insights are displayed because the maximum number of insights was reached in the console." in the db console insights page.
This change increases the default on the server side from 10kb to 100kb and the value of "LARGE_RESULT_SIZE" from 50kb to 1Mb
Resolves: #146875
Epic: None
Release note: None
148700: sql: always wait for all goroutines in fingerprintSpan r=yuzefovich a=yuzefovich
This commit fixes an oversight from 1cf6236. In particular, in that change we ensured that we never leak the worker goroutines in fingerprintSpan by cancelling the context in the coordinator and checking for that in the workers. However, it was possible for the coordinator to exit before the workers which can lead to undefined behavior down the line (in a test failure we just saw usage of the trace span after finish). This commit fixes the oversight by always blocking the coordinator until all its workers exit.
Fixes: #148602.
Release note: None
148743: sql: version-gate sql.txn.write_buffering_for_weak_isolation.enabled r=yuzefovich a=stevendanna
Buffering writes in weak isolation levels such as read committed requires lock loss detection to avoid intra-statement anomalies.
Lock loss detection is only available when all nodes are on 25.3 or greater.
Epic: none
Release note: None
Co-authored-by: Kyle Wong <[email protected]>
Co-authored-by: Yahor Yuzefovich <[email protected]>
Co-authored-by: Steven Danna <[email protected]>
0 commit comments