-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-27870][PYTHON][FOLLOW-UP] Rename spark.sql.pandas.udf.buffer.size to spark.sql.execution.pandas.udf.buffer.size #27450
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
Conversation
|
retest this please |
1 similar comment
|
retest this please |
|
Seems jenkins has an issue |
|
cc @shaneknapp fyi |
|
retest this please |
that worker has a bad hard drive and has been taken offline. |
|
test this please |
dongjoon-hyun
left a comment
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.
+1, LGTM.
|
Test build #117863 has finished for PR 27450 at commit
|
|
The tests will be fixed at #27460. I am going to merge this. |
|
Merged to master. |
|
All tests passed. The R failure is a known issue. Merged to master. |
|
Oh, @HyukjinKwon is faster. :) |
…ize to spark.sql.execution.pandas.udf.buffer.size ### What changes were proposed in this pull request? This PR renames `spark.sql.pandas.udf.buffer.size` to `spark.sql.execution.pandas.udf.buffer.size` to be more consistent with other pandas configuration prefixes, given: - `spark.sql.execution.pandas.arrowSafeTypeConversion` - `spark.sql.execution.pandas.respectSessionTimeZone` - `spark.sql.legacy.execution.pandas.groupedMap.assignColumnsByName` - other configurations like `spark.sql.execution.arrow.*`. ### Why are the changes needed? To make configuration names consistent. ### Does this PR introduce any user-facing change? No because this configuration was not released yet. ### How was this patch tested? Existing tests should cover. Closes #27450 from HyukjinKwon/SPARK-27870-followup. Authored-by: HyukjinKwon <gurwls223@apache.org> Signed-off-by: HyukjinKwon <gurwls223@apache.org>
What changes were proposed in this pull request?
This PR renames
spark.sql.pandas.udf.buffer.sizetospark.sql.execution.pandas.udf.buffer.sizeto be more consistent with other pandas configuration prefixes, given:spark.sql.execution.pandas.arrowSafeTypeConversionspark.sql.execution.pandas.respectSessionTimeZonespark.sql.legacy.execution.pandas.groupedMap.assignColumnsByNamespark.sql.execution.arrow.*.Why are the changes needed?
To make configuration names consistent.
Does this PR introduce any user-facing change?
No because this configuration was not released yet.
How was this patch tested?
Existing tests should cover.