-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.yml
More file actions
75 lines (62 loc) · 2.51 KB
/
variables.yml
File metadata and controls
75 lines (62 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
variables:
# ================================================
# Unity Catalog Configuration
# ================================================
catalog_name:
description: Unity Catalog name (override per target in databricks.yml)
default: "dev_analytics"
schema_prefix:
description: Prefix for schema names (provides per-user isolation in development)
default: "${workspace.current_user.short_name}_"
default_schema_name:
description: Default schema for resources
default: "bronze"
# ================================================
# LDP Pipeline Configuration
# ================================================
pipeline_min_workers:
description: Min workers for pipeline autoscale (custom clusters only)
default: 1
pipeline_max_workers:
description: Max workers for pipeline autoscale (custom clusters only)
default: 4
photon_enabled:
description: Enable Photon acceleration
default: true
continuous_mode:
description: Run pipeline continuously (vs triggered)
default: false
# ================================================
# Job Configuration
# ================================================
job_cluster_min_workers:
description: Min workers for job cluster autoscale (custom clusters only)
default: 1
job_cluster_max_workers:
description: Max workers for job cluster autoscale (custom clusters only)
default: 4
failure_notification_emails:
description: Email addresses for job failure alerts
default: []
max_retries:
description: Max retries for failed job tasks
default: 2
retry_interval_millis:
description: Wait time between retries (ms)
default: 300_000
# ================================================
# Service Principals (for CI/CD deployments)
# ================================================
# Set service principals using one of methods:
# * Set values directly here for `default:` key
# * CLI: databricks bundle deploy -t dev --var="dev_service_principal=<app-id>,..."
# * Env variable: BUNDLE_VAR_dev_service_principal=<app-id>
#
# NOTE: Search for "SP_PLACEHOLDER" to find and replace these values
# with your actual service principal application IDs.
stage_service_principal:
description: Service principal app ID for stage environment
default: "SP_PLACEHOLDER_STAGE" # Replace with your stage SP app ID
prod_service_principal:
description: Service principal app ID for prod environment
default: "SP_PLACEHOLDER_PROD" # Replace with your prod SP app ID