Dbx installing libraries for a long time #414
-
Hi, I'm using dbx to launch my python job to databricks. However, the launch step always stuck at the "Installing libraries" state. Then after some time, the launch would time out. Is there any way I could trouble shoot why it takes so long for dbx to install libraries? Thanks in advance for any tips and ideas. Here are the commands I had executed:
The list of packages in
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
hi @datascientistlin , Also, please check that you're not running this on an all-purpose cluster - it's not possible to install one version over another when its a job which is running on all-purpose cluster. |
Beta Was this translation helpful? Give feedback.
hi @datascientistlin ,
I would recommend specifying the dependencies in your
setup.py
instead of using requirements.txt.Built-in pip installation from
setup.py
should run faster.Also, please check that you're not running this on an all-purpose cluster - it's not possible to install one version over another when its a job which is running on all-purpose cluster.