-
Notifications
You must be signed in to change notification settings - Fork 38
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
Add "WHERE key='local'" to accelerate queries against system.local #434
Conversation
What other keys can be in this table? For a 3-node cluster I get:
so I don't see what this |
I think what it does is convert it from a full scan to a regular partition query (see #23 (comment) ). |
9e53894
to
575750e
Compare
It's unclear to me why zero token tests are running against 2024.2. What's the expected results here? |
I don't remember if it's in 2024.2 or not, but if not this should be changes:
|
When creating this test there was no official Scylla release with zero-token related changes in. I've set the requirement to the next numbered version I expected to appear, so I wouldn't forget to adjust this. I did not want to overshoot the version requirement. |
#413 is merged, but I'm still failing on it. |
I think it's an 2025.1.0 feature. |
Created #435 to quickly take care of this |
Just like other drivers (Python, GoCQL), the Java 4.x driver can query with this simple WHERE clause added, to improve query performance. Fixes: scylladb#282 Signed-off-by: Yaniv Kaul <[email protected]>
Just like other drivers (Python, GoCQL), the Java 4.x driver can query with this simple WHERE clause added, to improve query performance.
Fixes: #282
Signed-off-by: Yaniv Kaul [email protected]
(Untested!)