-
Notifications
You must be signed in to change notification settings - Fork 61
Conversation
Signed-off-by: Kevin Su <[email protected]>
Signed-off-by: Kevin Su <[email protected]>
Signed-off-by: Kevin Su <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #351 +/- ##
=======================================
Coverage 73.12% 73.12%
=======================================
Files 18 18
Lines 1362 1362
=======================================
Hits 996 996
Misses 315 315
Partials 51 51
Flags with carried forward coverage won't be shown. Click here to find out more. Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
protos/flyteidl/plugins/spark.proto
Outdated
@@ -21,4 +21,8 @@ message SparkJob { | |||
map<string, string> sparkConf = 4; | |||
map<string, string> hadoopConf = 5; | |||
string executorPath = 6; // Executor path for Python jobs. | |||
// databricksConf is base64 encoded string which stores databricks job 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.
why is the databricks one a b64 encoded string while the spark and hadoop conf's above just a map of str, str? Is the databricks one a binary object that needs to be encoded?
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.
Because it's nested dict. wait, I think I can use Struct
here. Let me update it
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
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.
approve but maybe address question in a comment?
Signed-off-by: Kevin Su <[email protected]>
Signed-off-by: Kevin Su <[email protected]>
Signed-off-by: Kevin Su <[email protected]>
Signed-off-by: Kevin Su <[email protected]>
Signed-off-by: Kevin Su <[email protected]>
* databricks plugin Signed-off-by: Kevin Su <[email protected]> * update comment Signed-off-by: Kevin Su <[email protected]> * Use struct instead of string Signed-off-by: Kevin Su <[email protected]> * Add token Signed-off-by: Kevin Su <[email protected]> * nit Signed-off-by: Kevin Su <[email protected]> * add instance name Signed-off-by: Kevin Su <[email protected]> * add instance name Signed-off-by: Kevin Su <[email protected]> Signed-off-by: Kevin Su <[email protected]>
TL;DR
This config is used by the dbx plugin in propeller to submit the dbx job request.
Type
Are all requirements met?
Complete description
^^^
Tracking Issue
flyteorg/flyte#3173