How to read parquet file with a condition using pyarrow in Python

前端 未结 2 833
长情又很酷
长情又很酷 2021-02-09 04:05

I have created a parquet file with three columns (id, author, title) from database and want to read the parquet file with a condition (title=\'Learn Python\'). Below mentioned i

2条回答
  •  梦毁少年i
    2021-02-09 04:40

    This is not yet supported. We intend to develop this functionality in the future. I recommend doing the filtering with pandas after the conversion from Arrow table.

提交回复
热议问题