Slackbot
05/30/2024, 5:05 PMMarvin
05/30/2024, 5:05 PMI have the following deployment configuration for both local deployment (using a local work pool) and azure deployment (using a push pool).```name: ml-ops prefect-version: 2.19.1 # build section allows you to manage and build docker images build: null # push section allows you to manage if and how this project is uploaded to remote locations push: null # pull section allows you to provide instructions for cloning this project in remote locations pull: - prefect.deployments.steps.git_clone: id: clone-step repository: XXXXXXX branch: retrain_pipeline credentials: "{{ prefect.blocks.github-credentials.github-access-token }}" - prefect.deployments.steps.run_shell_script: id: list-directory-structure script: "ls -R {{ clone-step.directory }}" stream_output: True - prefect.deployments.steps.pip_install_requirements: directory: "{{ clone-step.directory }}" requirements_file: prefect-requirements.txt stream_output: True - prefect.deployments.steps.set_working_directory: directory: "/opt/prefect/{{ clone-step.directory }}/code_base/models/performance_model/" # the deployments section allows you to provide configuration for deploying flows deployments: - name: my-local-deployment version: tags: [] description: entrypoint: prefect_flow.py:run_flow parameters: {} work_pool: name: my-d
Lennart
05/30/2024, 5:07 PMmlflow.exceptions.ExecutionException: Run (ID '6af723af94ec483c8831c337b59a0e4c') failed
Do you what could cause a difference in local docker deployment and Azure Container Instance deployment? Or do you have a suggestion on how to debug this?Marvin
05/30/2024, 5:07 PM