cianoo45 opened a new issue, #39162:
URL: https://github.com/apache/arrow/issues/39162
### Describe the bug, including details regarding any error messages,
version, and platform.
Reading a parquet file from s3 using `pyarrow.parquet.read_table` seems to
intermittently cause a exit code 139 error with the message `terminate called
without an active exception` when you add filters that filter out all of the
data.
```
import fsspec
import pyarrow.parquet as pq
fs, path = fsspec.core_url_to_fs(s3_file_path)
dataset = pq.read_table(path, filesystem=fs, filters= [[('date', '<',
'2000-01-01')]])
```
### Environment
Python 3.8
fsspec==2023.12.0
pyarrow==14.0.1
### Component(s)
Parquet, Python
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]