Skip to content
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

Add serverless_compute_id field to the config #952

Merged
merged 3 commits into from
Jun 21, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ type Config struct {
// Databricks host (either of workspace endpoint or Accounts API endpoint)
Host string `name:"host" env:"DATABRICKS_HOST"`

ClusterID string `name:"cluster_id" env:"DATABRICKS_CLUSTER_ID"`
WarehouseID string `name:"warehouse_id" env:"DATABRICKS_WAREHOUSE_ID"`
ClusterID string `name:"cluster_id" env:"DATABRICKS_CLUSTER_ID"`
WarehouseID string `name:"warehouse_id" env:"DATABRICKS_WAREHOUSE_ID"`
ServerlessComputeId string `name:"serverless_compute_id" env:"DATABRICKS_SERVERLESS_COMPUTE_ID"`
alexkh-db marked this conversation as resolved.
Show resolved Hide resolved

// URL of the metadata service that provides authentication credentials.
MetadataServiceURL string `name:"metadata_service_url" env:"DATABRICKS_METADATA_SERVICE_URL" auth:"metadata-service,sensitive"`
Expand Down