Hi, using the Databricks cli, I exported the jobs in json format from the workspace in Azure, using the same json to create a new job, but in a workspace in AWS, the error below occurs.
To create a job via Databricks cli on AWS, do you need to change something?, following error and an example of json.
ERROR failed execution pid=1561981 exit_code=1 error="invalid character 'j' looking for beginning of value"
I used this command to generate the json:
databricks jobs list --output json > file.json
example json job:
{
"created_time": 1715267389892,
"job_id": 665523989155957,
"settings": {
"email_notifications": {
"no_alert_for_skipped_runs": true,
"on_failure": [
"email@test.com"
]
},
"format": "MULTI_TASK",
"max_concurrent_runs": 1,
"name": "job_teste",
"timeout_seconds": 0
}
#aws #jobs