iajoiner commented on a change in pull request #9702:
URL: https://github.com/apache/arrow/pull/9702#discussion_r787115280
##########
File path: python/pyarrow/orc.py
##########
@@ -117,21 +185,92 @@ def read(self, columns=None):
return self.reader.read(columns=columns)
+_orc_writer_args_docs = """file_version : {"0.11", "0.12"}, default "0.12"
+ Determine which ORC file version to use. Hive 0.11 / ORC v0 is the older
+ version as defined `here <https://orc.apache.org/specification/ORCv0/>`
+ while Hive 0.12 / ORC v1 is the newer one as defined
+ `here <https://orc.apache.org/specification/ORCv1/>`.
+batch_size : int, default 1024
+ Number of rows the ORC writer writes at a time.
+stripe_size : int, default 64 * 1024 * 1024
+ Size of each ORC stripe.
+compression : string, default 'zlib'
+ Specify the compression codec.
Review comment:
Fixed.
--
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]