Databricks Jobs URI format
URI definition for Databricks jobs follows this standard:
Identifier fragments:
- Namespace:
databricks://{host}
- Scheme =
databricks
- Authority =
{host}
- Scheme =
- Unique name:
job={jobName}
Job URI format:
databricks://{host};job={jobName}
Instance URI format:
databricks://{host}
Parameters limitations:
host
identifier must start with a lowercase letter and include only lowercase letters, numbers, dash and dot (regex:[a-z][a-z0-9-.]+
)jobName
can have two format, following databricks naming standards: quoted and unquoted- unquoted identifier must include only lowercases, uppercases, numbers and underscore (regex:
[a-zA-Z0-9_]+
) - quoted identifier needs to be quoted using backtick ``` and must include only characters included in those unicode ranges:
- U+0021 to U+002D
- U+0030 to U+005F
- U+0061 to U+007E
- U+0080 to U+FFFF
- unquoted identifier must include only lowercases, uppercases, numbers and underscore (regex:
Job example:
databricks://sifflet-dev-databricks.cfbuquha2ngc.eu-west-1.rds.amazonaws.com;job=tree
Instance example:
databricks://sifflet-dev-databricks.cfbuquha2ngc.eu-west-1.rds.amazonaws.com
Updated about 4 hours ago