Hi all,
following the instruction of the Jupyter notebbok. I correctly filled the terraform files and run the terraform commands. Unfortunately when i start the Glue jobs by VSCode terminal I’ve obtained the following exception
Can you help me with this issue?
Hello @Giuseppe_Rizzo
You should replace <JOB-NAME>
placeholder in the aws glue start-job-run --job-name <JOB-NAME> | jq -r '.JobRunId'
command using the outputs from terraform apply
. For instance, glue_api_users_extract_job
is not the correct job name, but there is an output in terraform with the same name, the value of which is the job name you need in your command.
Hope this helps.