Has anyone figured out how to install packages on serverless compute using asset bundle,s similar to how we handle it for jobs or job tasks?
I didn’t see any direct option for this, apart from installing packages manually within a notebook.
I tried installing packages on DLT serverless compute via asset bundles using the following approach, but it doesn’t seem to apply the package correctly:
resources:
jobs:
xyz:
name: x_y_z
tasks:
- task_key: PipelineTask
pipeline_task:
pipeline_id: ${resources.pipelines.my_pipeline.id}
libraries:
- pypi:
package: pandera
repo: https://pypi.org/simple/
queue:
enabled: true
max_concurrent_runs: 1
environments:
- environment_key: default
spec:
client: "1"
dependencies:
- pandera
sandeepss