HyukjinKwon commented on a change in pull request #32161:
URL: https://github.com/apache/spark/pull/32161#discussion_r613901184



##########
File path: docs/sql-data-sources-parquet.md
##########
@@ -286,6 +286,24 @@ Data source options of Parquet can be set via:
     </td>
     <td>read</td>
   </tr>
+  <tr>
+    <td><code>mergeSchema</code></td>
+    <td>The SQL config <code>spark.sql.parquet.mergeSchema</code> which is 
<code>false</code> by default.</td>
+    <td>Sets whether we should merge schemas collected from all Parquet 
part-files. This will override <code>spark.sql.parquet.mergeSchema</code>.</td>
+    <td>read</td>
+  </tr>
+  <tr>
+    <td><code>compression</code></td>
+    <td>None</td>
+    <td>Compression codec to use when saving to file. This can be one of the 
known case-insensitive shorten names (none, uncompressed, snappy, gzip, lzo, 
brotli, lz4, and zstd). This will override 
<code>spark.sql.parquet.compression.codec</code>. If None is set, it uses the 
value specified in <code>spark.sql.parquet.compression.codec</code>.</td>
+    <td>write</td>
+  </tr>
+  <tr>
+    <td><code>partitionBy</code></td>
+    <td>None</td>
+    <td>Names of partitioning columns</td>
+    <td>write</td>
+  </tr>

Review comment:
       Can we point out an URL link for the general options like 
`pathGlobFilter` and/or `modifiedBefore`?




-- 
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.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to