Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2024 02:11 AM
I am working on reading spatial data with mosaic and gdal Previously I used databricks mosaic = 0.3.9 version with databricks cluster = 12.2 LTS version With following command - %pip install databricks-mosaic==0.3.9 --quiet Now It's giving timeout error - TimeoutException: Futures timed out after [80 seconds] And whenever I try to run it again it gives python kernel error - jupyter client is not available because the python kernel is not defined. The kernel may be restarting or the repl may have been shut down Is there any way to avoid this error without restarting cluster every time Also I tried adding timeout as it was giving timeout error %pip install databricks-mosaic==0.3.9 --quiet --timeout 1800 This also fails with same above error I also tried using DBR 13.3 version with installing databricks using %pip install 'databricks-mosaic<0.4,>=0.3' command but this also not working How to resolve this issue, Thanks in advance