-
Notifications
You must be signed in to change notification settings - Fork 209
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
Update spark_data_source.py with configuration param #1884
base: main
Are you sure you want to change the base?
Conversation
Added param 'configuration' to support additional spark configurations like 'spark.executor.memory':'512m'
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
@@ -59,6 +60,7 @@ def hive_connection_function( | |||
port=port, | |||
database=database, | |||
auth=auth_method, | |||
configuration=configuration, |
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.
Can you please use kwargs
instead? Otherwise it will break other connection functions
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.
Please see my comment about kwarts ...
hi @Clusiv , could you please do the requested changes from above please? |
Added param 'configuration' to support additional spark configurations like 'spark.executor.memory':'512m'