Replies: 7 comments 6 replies
-
Having an option to pass parameters via one string is a good idea, I can see use cases for this, so LGTM :) |
Beta Was this translation helpful? Give feedback.
-
I think this update will be worth it, using |
Beta Was this translation helpful? Give feedback.
-
We have to basically look at both spark properties with support dynamically setting and some has to be set before application even starts. So maintaining multiple configs doesn't make sense. But we have to even consider the situation where there can be multiple project refer to same profile, so keeping at project is always preferrable, and my solution works more in that way. Please have a look once before directly deciding. |
Beta Was this translation helpful? Give feedback.
-
I prefer the |
Beta Was this translation helpful? Give feedback.
-
I also prefer the server_side_parameters, as a dictionary over the string. |
Beta Was this translation helpful? Give feedback.
-
Hi all, @Fleid, @Fokko and I sent today in implementing the The following issues and PRs are ready to be resolved and merged:
The following issue and PR can be closed:
|
Beta Was this translation helpful? Give feedback.
-
@Fleid @JCZuurmond before closing this lets also put conclusion on bringing the |
Beta Was this translation helpful? Give feedback.
-
This is a trendy topic, for sure :)
What we have right now
dbt-spark
supports 4 connection methods, only one hasserver_side_parameters
: ODBC.For Thrift, Http and Session, there is no native way to provide these parameters. The usual workaround is to do so via hooks.
There are 2 common asks from here:
I just want to get everybody in the same room to make sure I'm understanding the landscape right.
Ideal state
Across all 4 connection methods,
dbt-spark
supports 2 ways to provide Spark configuration options:server_side_parameters
, as a dictionaryspark_config_string
, as a string (not sure about that name though)Does that make sense? Everybody agrees here?
Beta Was this translation helpful? Give feedback.
All reactions