-
Notifications
You must be signed in to change notification settings - Fork 902
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
Temporarily disabling problematic test in parquet writer #9230
Temporarily disabling problematic test in parquet writer #9230
Conversation
Is there an open issue tracking the bug mentioned here? |
Codecov Report
@@ Coverage Diff @@
## branch-21.10 #9230 +/- ##
===============================================
Coverage ? 10.84%
===============================================
Files ? 115
Lines ? 19176
Branches ? 0
===============================================
Hits ? 2080
Misses ? 17096
Partials ? 0 Continue to review full report at Codecov.
|
Not yet. This comes from a slack thread where CI issues were being discussed. |
I think this PR is probably worth getting merged ASAP to unblock CI since it is randomly forcing people to rerun tests, but it probably is worth opening an issue in case this turns out to be something that we can reproduce? I don't know if it really is a CI bug or just an intermittent problem that arises with a specific CUDA/Python/OS combination. Based on CI it was Ubuntu 18.04, CUDA 11.2, Python 3.8 I believe. |
I believe it's a problem with writing an all null dataframe to parquet in Pascal. I found that the other two CI machines have Volta and Ampere. |
rerun tests |
@gpucibot merge |
stat.(min/max)_value.str_val.length is used in calculating allocation size for page/stripe headers. Not zero initializing stat caused these values to be garbage. Also re-enable the pytest that was disabled in rapidsai#9230
`stat.(min/max)_value.str_val.length` is used in calculating allocation size for page/stripe headers. Not zero initializing stat caused these values to be garbage. Also re-enabled the pytest that was disabled in #9230 Fixes #9231 Authors: - Devavret Makkar (https://github.com/devavret) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) - Mike Wilson (https://github.com/hyperbolic2346) - https://github.com/brandon-b-miller - Elias Stehle (https://github.com/elstehle) URL: #9368
There is a bug in parquet writer that shows up in one pytest.
Disabling this test to unblock CI for other PRs.
Related to #9231