I have Druid and superset running locally, but I am not able to connect them together.
I have sample data wikiticker in Druid. I already installed pydruid with pip3: pip3 install pydruid (I am not sure if I need to install this to any particular location).
I have also installed superset using docker-compose locally using This Link, However, I am not able to connect Druid with Superset. I went to Data->Databases->add database. In Connection, I gave Database name as Druid and not sure what to give in SQLALCHEMY URI*
.
I tried these:
druid//admin:admin@localhost:8082/wikiticker
pydruid//admin:admin@localhost:8082/wikiticker
druid://admin:admin@localhost:8082/druid/v2/sql
but nothing is working.
As far as I know, Druid has no built-in authentication. The SQLALCHEMY_URI string should be
druid+https://localhost:8082/druid/v2/sql/(ordruid+http://localhost:8082/druid/v2/sql/if you're using HTTP).