-
Notifications
You must be signed in to change notification settings - Fork 29.3k
[SPARK-23238][SQL] Externalize SQLConf configurations exposed in documentation #20403
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
4899e33
1f4d288
0c05526
fd7f5c0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1045,9 +1045,10 @@ object SQLConf { | |
| buildConf("spark.sql.execution.arrow.enabled") | ||
| .internal() | ||
| .doc("Make use of Apache Arrow for columnar data transfers. Currently available " + | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| "for use with pyspark.sql.DataFrame.toPandas with the following data types: " + | ||
| "StringType, BinaryType, BooleanType, DoubleType, FloatType, ByteType, IntegerType, " + | ||
| "LongType, ShortType") | ||
| "for use with pyspark.sql.DataFrame.toPandas, and " + | ||
| "pyspark.sql.SparkSession.createDataFrame when its input is a Pandas DataFrame. " + | ||
| "The following data types are unsupported: " + | ||
| "MapType, ArrayType of TimestampType, and nested StructType.") | ||
| .booleanConf | ||
| .createWithDefault(false) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yup. Let me update |
||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This conf will be mentioned in the doc #19575. I think this is not qualified as an internal conf.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you change it in this PR and use this JIRA number https://issues.apache.org/jira/browse/SPARK-23238
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup.