-
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/importer: unskip TestCSVImportCanBeResumed #94010
sql/importer: unskip TestCSVImportCanBeResumed #94010
Conversation
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.
thanks!
@@ -668,6 +664,7 @@ func TestCSVImportCanBeResumed(t *testing.T) { | |||
BulkAdderFlushesEveryBatch: true, | |||
}, | |||
}, | |||
SQLMemoryPoolSize: 1 << 30, // 1 GiB |
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.
This LGTM, but I think in other places we've dropped how much kv.bulk_ingest.pk_buffer_size
asks for to begin with to prevent the memory monitor from shouting at us.
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.
Done
This unskips the test and adds a memory limit. The test completed 1500+ runs under stress. I believe cockroachdb#93782 resolved the main source of flakiness here. Fixes cockroachdb#91828 Release note: None
76e7646
to
d522dab
Compare
Test failures look unrelated: bors r=rafiss |
Build failed (retrying...): |
Build succeeded: |
This unskips the test and adds a memory limit. The test completed 1500+ runs under stress. I believe #93782 resolved the main source of flakiness here.
Fixes #91828
Release note: None