Github user marmbrus commented on a diff in the pull request:
https://github.com/apache/spark/pull/2576#discussion_r18298956
--- Diff: sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala ---
@@ -83,6 +84,12 @@ private[sql] trait SQLConf {
/** The compression codec for writing to a Parquetfile */
private[spark] def parquetCompressionCodec: String =
getConf(PARQUET_COMPRESSION, "snappy")
+ /** The compression codec for writing to a Orcfile
+ * Note: only support zlib now since we use
```OrcOutputFormat.getRecordWriter``` ,which is not
+ * allowed to configure thr compression kind
+ */
+ private[spark] def orcCompressionCodec: String =
getConf(ORC_COMPRESSION, "zlib")
--- End diff --
If we don't actually support other codecs we should probably leave this out
for now.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]