@flyteorg/flyteidl 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -501,6 +501,7 @@ Custom Proto for Spark Plugin.
501
501
  "sparkConf", ":ref:`ref_flyteidl.plugins.SparkJob.SparkConfEntry`", "repeated", ""
502
502
  "hadoopConf", ":ref:`ref_flyteidl.plugins.SparkJob.HadoopConfEntry`", "repeated", ""
503
503
  "executorPath", ":ref:`ref_string`", "", "Executor path for Python jobs."
504
+ "databricksConf", ":ref:`ref_string`", "", "databricksConf is base64 encoded string which stores databricks job configuration. Config structure can be found here. https://docs.databricks.com/dev-tools/api/2.0/jobs.html#request-structure The config is automatically encoded by flytekit, and decoded in the propeller."
504
505
 
505
506
 
506
507
 
@@ -1,6 +1,7 @@
1
1
  syntax = "proto3";
2
2
 
3
3
  package flyteidl.plugins;
4
+ import "google/protobuf/struct.proto";
4
5
 
5
6
  option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
6
7
 
@@ -21,4 +22,13 @@ message SparkJob {
21
22
  map<string, string> sparkConf = 4;
22
23
  map<string, string> hadoopConf = 5;
23
24
  string executorPath = 6; // Executor path for Python jobs.
25
+ // Databricks job configuration.
26
+ // Config structure can be found here. https://docs.databricks.com/dev-tools/api/2.0/jobs.html#request-structure.
27
+ google.protobuf.Struct databricksConf = 7;
28
+ // Databricks access token. https://docs.databricks.com/dev-tools/api/latest/authentication.html
29
+ // This token can be set in either flytepropeller or flytekit.
30
+ string databricksToken = 8;
31
+ // Domain name of your deployment. Use the form <account>.cloud.databricks.com.
32
+ // This instance name can be set in either flytepropeller or flytekit.
33
+ string databricksInstance = 9;
24
34
  }