-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
sql: bump workmem size to avoid sqllite flakes on index/1000 tests #90095
Conversation
I'm worried this will cause logic tests to stop exercising the various operators that spill to disk. Could we just exempt this particular test? |
Below ~70k these tests would flake like so: ``` pq: streamer budget: memory budget exceeded: 38112 bytes requested, 57344 currently allocated, 76801 bytes in budget ``` Fixes: cockroachdb#89635 Release note: None
d445806
to
ba4e08f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well I think its a whole slew of the "1000" tests but easy enough to limit to the sqlite "Big" tests.
Reviewable status: complete! 0 of 0 LGTMs obtained
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: complete! 1 of 0 LGTMs obtained
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 1 files at r2, all commit messages.
Reviewable status: complete! 2 of 0 LGTMs obtained (waiting on @cucaroach)
bors r+ |
Build succeeded: |
@mgartner should I backport this to 22.2.0 as well? |
It's a test-only change so that seems fine to me. 👍 |
My guess is that the reuse of the |
Below ~70k these tests would flake like so:
Fixes: #89635
Release note: None