Uh oh!
There was an error while loading. Please reload this page.
ARROW-17583: [C++][Python] Changed datawidth of WrittenFile.size to int64 to match C++ code - #14032
Conversation
joosthooz
commented
Sep 2, 2022
I'm using this script to reproduce the problem: It's a bit cumbersome and takes a minute or so, so I don't think it is suitable to add as a unit test. |
joosthooz
commented
Sep 5, 2022
There's a failure in |
jorisvandenbossche
commented
Sep 5, 2022
That seems to be https://issues.apache.org/jira/browse/ARROW-17614 |
jorisvandenbossche
commented
Sep 5, 2022
We do have a |
joosthooz
commented
Sep 8, 2022
Is there anything I can do? I'd be happy to run additional tests if needed |
jorisvandenbossche
commented
Sep 8, 2022
Let's just merge this as is. Thanks for the PR! |
ursabot
commented
Sep 8, 2022
Benchmark runs are scheduled for baseline = 6ff5224 and contender = 43670af. 43670af is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
…nt64 to match C++ code (apache#14032) To fix an exception while writing large parquet files: ``` Traceback (most recent call last): File "pyarrow/_dataset_parquet.pyx", line 165, in pyarrow._dataset_parquet.ParquetFileFormat._finish_write File "pyarrow/dataset.pyx", line 2695, in pyarrow._dataset.WrittenFile.init_ OverflowError: value too large to convert to int Exception ignored in: 'pyarrow._dataset._filesystemdataset_write_visitor' ``` Authored-by: Joost Hoozemans <joosthooz@msn.com> Signed-off-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
To fix an exception while writing large parquet files: