-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to update to a newer CRDB version to support S2Cell index queries #1070
Comments
Thank you @jctrouble for opening this issue and the detailed analysis. The fix you referenced has been released as part of version 22.2.0. We are planning to upgrade to 24.1.3 shortly. |
As requested in #1070 in order to properly support indexes used by the DSS, this PR upgrades CockroachDB to version 24.1.3. A backward incompatibility impacting migrations has been addressed in #1079. Depends on #1077, #1076 and #1080 to properly upgrade the version. This PR includes: Upgrade of all CRDB image references from 21.2.7 to 24.1.3. Migration notes and references to CRDB documentation. Helm: Instructions on how to adjust CRDB Helm deployment instructions to map to our Helm chart practices Tanka: Manual upgrade Kubernetes steps number have been changed to 1. instead of incremented numbers to reflect editing practices of other documents.
Upgrade of CockroachDB to 24.1.3 addressed in #1075 and released as part of v0.17.0-rc1. |
There is some high latency (700+ms) when querying SCD subscriptions for updates.
This query (source):
triggers a full table scan (analysis bundle):
Index support for the
&&
operator wasn't added until Apr 9, 2022, but the current deployed CRDB version (v21.2.7
) is from March 14, 2022.In order to effectively perform these queries and use the inverted index
scd_subscriptions@cell_idx
, we need to update the CRDB version.The text was updated successfully, but these errors were encountered: