I currently connect to the druid cluster through the druid connector in Apache Superset. I heard that SQL can be used to query druid. Is it possible to point my SQL database connection to druid?
相关问题
- SQL join to get the cartesian product of 2 columns
- sql execution latency when assign to a variable
- Difference between Types.INTEGER and Types.NULL in
- php PDO::FETCH_ASSOC doesnt detect select after ba
- Bulk update SQL Server C#
Follow the steps below
You need to use latest version of
pydruid
for enabling sqlalchemy support. For me pydruid 0.4.1 is working fine.On Superset, in the Databases section you need to provide the
SQLAlchemy URI druid://XX.XX:8082/druid/v2/sql/
using a broker ip/host.Third thing you need to do is to enable
druid.sql.enable=true
on broker.I hope this will help you.