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
148465: opt: convert parameterized lookup joins to placeholder scans r=mgartner a=mgartner
Parameterized lookup joins, which are used in generic query plans, are
now converted to placeholder scans in some cases. These placeholder
scans are more efficient because they cater to a narrower set of
features than general-purpose lookup joins and because they natively
support vectorization. See the new exploration rule for more details.
Release note: None
149570: cli: improve debug.zip transaction_contention_events query r=alyshanjahani-crl a=alyshanjahani-crl
Improvements to this query were made in #139735, however statement timeouts and memory budget exceeded errors were still occurring.
This commit improves the query dump by reducing the result set of the CTEs used in the query. Instead of retrieving all fingerprints from the statement_statistics table and using those in the joins, it first filters by the fingerprints present in the contention event registry.
Fixes: #146877
Release note (cli change): Improves the performance of the debug zip query that collects transaction_contention_events data, reducing the chances of "memory budget exceeded" or "query execution canceled due to statement timeout" errors.
149718: roachtest: fix hibernate nightly test r=rafiss a=rafiss
The previous version fails during installation with:
```
FAILURE: Build completed with 2 failures.
1: Task failed with an exception.
-----------
* What went wrong:
Execution failed for task ':hibernate-core:generateGraphParser'.
> Failed to load cache entry 7ed5a08bcdbd74c9347d61047c20a896 for task ':hibernate-core:generateGraphParser': Could not load from remote cache: Not in GZIP format
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Get more help at https://help.gradle.org.
==============================================================================
2: Task failed with an exception.
-----------
* What went wrong:
Execution failed for task ':hibernate-jpamodelgen:jaxb'.
> Failed to load cache entry dd3fbbdea5c65a87fb9d720c326dd64b for task ':hibernate-jpamodelgen:jaxb': Could not load from remote cache: Not in GZIP format
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Get more help at https://help.gradle.org.
==============================================================================
```
fixes#149404fixes#149457fixes#149455fixes#149399fixes#149346fixes#149393fixes#149400fixes#149398fixes#149406fixes#149395
Release note: None
149786: roachtest: Fix JSON configuration file for db-console/endpoints r=alyshanjahani-crl a=alyshanjahani-crl
A previous PR modified one of the json configuration files for what endpoints to test. It forgot to include a comma...
Fixes: #149735, #149732
Release note: None
149793: roachtest: add schemachange/bulkingest variant for ADD COLUMN r=rafiss a=rafiss
This patch adds testing for ADD COLUMN backfills. This differs from the CREATE INDEX operation since ADD COLUMN populates an index in order, so it runs more quickly. Measuring this will help us observe improvements in CREATE INDEX.
informs #146571
Release note: None
Co-authored-by: Marcus Gartner <[email protected]>
Co-authored-by: Alyshan Jahani <[email protected]>
Co-authored-by: Rafi Shamim <[email protected]>
0 commit comments