Describe the bug, including details regarding any error messages, version, and platform.
arrow::write_dataset(dataset = x, path = "...", partitioning = somekeys,
max_rows_per_file = 0L)
# Error: Invalid: max_rows_per_group must be a positive number
The document says
max_rows_per_file: maximum number of rows per file. If greater than 0
then this will limit how many rows are placed in any single
file. Default is 0L.
min_rows_per_group: write the row groups to the disk when this number
of rows have accumulated. Default is 0L.
Two things:
- the error references an argument that was not provided
- either update the documentation or accept
0 as an acceptable argument (that just reasserts the behavior of "no limit")
Component(s)
R
Describe the bug, including details regarding any error messages, version, and platform.
The document says
Two things:
0as an acceptable argument (that just reasserts the behavior of "no limit")Component(s)
R