This message was deleted.
# general
s
This message was deleted.
b
I don't know Airflow, but it looks like it, based on get_uri in their doc.
v
are you trying to query druid or kick off an ingestion task. The api end point will be different based on what you are trying to do
g
I wish I knew but I'm not really familiar with airflow As others have mentioned there's a couple of possible endpoints you might be interested in If it wants the Broker that'd be
http://<hostname>:8082/druid/v2/
(or maybe you just provide host and port and Airflow fills in the rest…?) If it wants Overlord or Indexing Service that'd be
http://<hostname>:8090/druid/indexer/v1/
(or, again, maybe you just provide host and port?) Hope this helps!
v
@shraddha jain I am planning to put the together something with airflow and druid - blog plus samples. Should have it in a few days
s
Thank you everyone. The information that I got is, it is needed for ingestion. Based on that what should be the uri?
g
i would try
http://<hostname>:8090/druid/indexer/v1/
first or perhaps
http://<hostname>:8090/
(if airflow automatically adds the
/druid/indexer/v1/
part)
s
sure, thanks, let me share it with the team.