[
https://issues.apache.org/jira/browse/ARROW-17046?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17565271#comment-17565271
]
Alenka Frim commented on ARROW-17046:
-------------------------------------
Yes, this documentation is autogenerated (reference documentation, see
[https://arrow.apache.org/docs/developers/guide/documentation.html#where-to-find-the-correct-file-to-change).]
You can edit it via GitHub still, just use this link:
[https://github.com/apache/arrow/blob/efd7c3a0b2a6ec9c87f80ab4120702364e531369/python/pyarrow/parquet/__init__.py#L3116-L3121]
where I marked the lines that need change and on the top right corner you can
click the edit button to make changes in a form of Pull Request.
> [Python] pyarrow.parquet.write_to_dataset fails to pass kwargs to write_table
> function
> --------------------------------------------------------------------------------------
>
> Key: ARROW-17046
> URL: https://issues.apache.org/jira/browse/ARROW-17046
> Project: Apache Arrow
> Issue Type: Improvement
> Components: Python
> Affects Versions: 8.0.0
> Reporter: Amir Khosroshahi
> Priority: Minor
>
> According to PyArrow 8.0.0
> [documentation|https://arrow.apache.org/docs/python/generated/pyarrow.parquet.write_to_dataset.html]
> {{kwargs}} is "Additional kwargs for {{write_table}} function." However when
> I try to pass additional arguments, for example {{{}flavor{}}}, to the
> underlying write_table I get the following error
> {code:java}
> TypeError: unexpected parquet write option: flavor{code}
> This used to work in PyArrow versions as late as 7.0.0 but started to break
> in 8.0.0.
> Minimal example to reproduce the error
> {code:java}
> import pyarrow as pa
> import pandas as pd
> import pyarrow.parquet as pq
> df = pd.DataFrame({'a': [1, 2], 'b': [3, 4]})
> tb = pa.Table.from_pandas(df)
> pq.write_to_dataset(tb, "test.parquet", flavor="spark") {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)