You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Now there is no way to provide additional configuration options for spark jobs. For example, this is required to provide credentials for s3 storage.
Describe the solution you'd like
I'm using python sdk, so I dont know if this can be replicated in java and go, but my proposal is to add a configuration option, something like FEAST_SPARK_ADDITIONAL_OPTS which can be set to something like "option1=value1;option2=value2" and this options would be added in spark_submit method for standalone, dataproc_sumbit for dataproc and _submit_emr_job for emr.
We need to carefully pick the right format for this configuration option, considering there might be ; or = in option names or values.
Describe alternatives you've considered
Maybe explicitly provide those options with every client.start.... call, but it would break existing api, so it is way worse in my opinion.
The text was updated successfully, but these errors were encountered:
my proposal is to add a configuration option, something like FEAST_SPARK_ADDITIONAL_OPTS which can be set to something like "option1=value1;option2=value2"
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Is your feature request related to a problem? Please describe.
Now there is no way to provide additional configuration options for spark jobs. For example, this is required to provide credentials for s3 storage.
Describe the solution you'd like
I'm using python sdk, so I dont know if this can be replicated in java and go, but my proposal is to add a configuration option, something like
FEAST_SPARK_ADDITIONAL_OPTS
which can be set to something like"option1=value1;option2=value2"
and this options would be added inspark_submit
method for standalone,dataproc_sumbit
for dataproc and_submit_emr_job
for emr.We need to carefully pick the right format for this configuration option, considering there might be
;
or=
in option names or values.Describe alternatives you've considered
Maybe explicitly provide those options with every
client.start....
call, but it would break existing api, so it is way worse in my opinion.The text was updated successfully, but these errors were encountered: