mirror of https://github.com/databricks/cli.git
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
package mutator
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/databricks/cli/bundle"
|
|
"github.com/databricks/cli/bundle/config"
|
|
"github.com/databricks/cli/bundle/config/resources"
|
|
"github.com/databricks/cli/libs/env"
|
|
)
|
|
|
|
type overrideCompute struct{}
|
|
|
|
func OverrideCompute() bundle.Mutator {
|
|
return &overrideCompute{}
|
|
}
|
|
|
|
func (m *overrideCompute) Name() string {
|
|
return "OverrideCompute"
|
|
}
|
|
|
|
func overrideJobCompute(j *resources.Job, compute string) {
|
|
for i := range j.Tasks {
|
|
task := &j.Tasks[i]
|
|
if task.NewCluster != nil || task.ExistingClusterId != "" || task.ComputeKey != "" || task.JobClusterKey != "" {
|
|
task.NewCluster = nil
|
|
task.JobClusterKey = ""
|
|
task.ComputeKey = ""
|
|
task.ExistingClusterId = compute
|
|
}
|
|
}
|
|
}
|
|
|
|
func (m *overrideCompute) Apply(ctx context.Context, b *bundle.Bundle) error {
|
|
if b.Config.Bundle.Mode != config.Development {
|
|
if b.Config.Bundle.ComputeID != "" {
|
|
return fmt.Errorf("cannot override compute for an target that does not use 'mode: development'")
|
|
}
|
|
return nil
|
|
}
|
|
if v := env.Get(ctx, "DATABRICKS_CLUSTER_ID"); v != "" {
|
|
b.Config.Bundle.ComputeID = v
|
|
}
|
|
|
|
if b.Config.Bundle.ComputeID == "" {
|
|
return nil
|
|
}
|
|
|
|
r := b.Config.Resources
|
|
for i := range r.Jobs {
|
|
overrideJobCompute(r.Jobs[i], b.Config.Bundle.ComputeID)
|
|
}
|
|
|
|
return nil
|
|
}
|