Hello,
I am following the Dremio blog BI Dashboards 101 with Dremio and Superset | Dremio , and trying to setup Superset.
I was able to standup Dremio on Docker containers, but unable to connect database from Superset into the local dremio container.
Specifically, I have a problem creating dremio database conenction from superset
The blog mentions, For Dremio Software
dremio+flight://dremio-username:dremio-password@host:32010/?UseEncryption=false
Accordingly, I configured the connection as,
dremio+flight://admin:Password1@localhost:32010/?UseEncryption=false
but unable to connect since Superset container could not connect to Dremio.
ERROR: (builtins.NoneType) None
[SQL: Flight returned unavailable error, with message: failed to connect to all addresses; last error: UNKNOWN: ipv4:127.0.0.1:32010: Failed to connect to remote host: Connection refused]
(Background on this error at: Error Messages — SQLAlchemy 1.4 Documentation)
Could you please let me know the right URI to be used in this case? I did read the complete blog but could not find a solution to this problem.