-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to load data #40
Comments
I thought maybe the Middle Manager was missing. I've added it to
|
I've rebuilt the image with |
Great find! Does not look like the middle-manager was needed. |
I have just started this docker for the first time, the starting goes well but I'am not being able of loading any data using the overlord service. As @darabos said coordinator is running as Overlord so I'am trying to load data into the druid using the 3001 port (coordinator port) but nothing happens. 3001 port is exposes to my host
No tasks appairs in the UI http://localhost:3001/console.html I tried to do the kafka tutorial (http://druid.io/docs/latest/tutorials/tutorial-kafka.html) and same results obtained. Nothing happens. My main question here is. Am I correct in using 3001 port (coordinator port) to do the curl requests? Best regards |
I would hope the coordinator log can tell you what's going wrong. It could be that it finds something wrong with the task specification. |
Thanks for this Docker image! It's really great for giving Druid a quick try. (Also thanks for Druid. 😄)
I can't figure out how to load my data into it though. The docs tell me to send the request to
localhost:8090/druid/indexer/v1/task
. Port 8090 is open on this container but it immediately closes when I connect to it.There is no Overlord configured in
supervisor.conf
. But the Coordinator is configured withdruid.coordinator.asOverlord.enabled=true
. I guess I'm supposed to use port 8081 then? When I send the request to 8081 (curl -X 'POST' -H 'Content-Type:application/json' -d @ingest.json localhost:8081/druid/indexer/v1/task
) I get a 500 error back and the Coordinator logs the following:I'll keep trying to figure this out. But it would be very helpful to include an example of ingestion in
README.md
. Thanks!The text was updated successfully, but these errors were encountered: