You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example of a working serverless job and an environment that deploys wheels - a direct adaptation of job_with_multiple_wheels
resources:
jobs:
serverless_job:
name: "Example with multiple wheels"tasks:
- task_key: taskspark_python_task:
python_file: ../src/call_wheel.pyenvironment_key: default# A list of task execution environment specifications that can be referenced by tasks of this job.environments:
- environment_key: default# Full documentation of this spec can be found at:# https://docs.databricks.com/api/workspace/jobs/create#environments-specspec:
client: "1"dependencies:
- ../my_custom_wheel2/dist/my_custom_wheel2-0.0.1-py3-none-any.whl
- ../my_custom_wheel1/dist/my_custom_wheel1-0.0.1-py3-none-any.whl
The text was updated successfully, but these errors were encountered:
For Serverless jobs, Python dependencies must be declared as part of an environment.
Customers are going to private_wheel_packages and job_with_multiple_wheels and realizing it doesn't work with Serverless. New examples that combine Serverless and wheels are needed.
Example of a working serverless job and an environment that deploys wheels - a direct adaptation of job_with_multiple_wheels
The text was updated successfully, but these errors were encountered: