GitHub user danieljimenez added a comment to the discussion: Unable to connect to Dremio instance
I managed to fix this. In my bootstrap script I had: ```yaml values: bootstrapScript: | #!/bin/bash -exuo pipefail pip install .[postgres] pip install .[dremio] pip install .[spark] pip install sqlalchemy-risingwave pip install prophet if [ ! -f ~/bootstrap ]; then echo "Running Superset with uid {{ .Values.runAsUser }}" > ~/bootstrap; fi ``` This installed dremio driver 1.2.1. I changed it to: ```yaml values: bootstrapScript: | #!/bin/bash -exuo pipefail pip install .[postgres] pip install sqlalchemy_dremio==3.0.4 pip install .[spark] pip install sqlalchemy-risingwave pip install prophet if [ ! -f ~/bootstrap ]; then echo "Running Superset with uid {{ .Values.runAsUser }}" > ~/bootstrap; fi ``` This installed Dremio driver 3.0.4. Now I'm able to connect. GitHub link: https://github.com/apache/superset/discussions/34527#discussioncomment-13988818 ---- This is an automatically sent email for notifications@superset.apache.org. To unsubscribe, please send an email to: notifications-unsubscr...@superset.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org