westonpace commented on issue #33845: URL: https://github.com/apache/arrow/issues/33845#issuecomment-1409529524
Ah, by default the new [dataset API](https://arrow.apache.org/docs/python/generated/pyarrow.dataset.dataset.html#pyarrow.dataset.dataset) is configured to ignore files & directories starting with `.` or `_`. This should work: ``` ds.dataset('example_pq_ds', partitioning='hive', ignore_prefixes=[]).to_table() ``` -- 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]
