Fix overlord port in delete data tutorial (#8037)

In Single-Server Quickstart tutorial the overlord and coordinator
is started as one process on port 8081. But in delete data tutorial the kill
task is sent to 8090 port, which fails.
This commit is contained in:
Dinesh Sawant 2019-07-06 21:20:01 +05:30 committed by Fangjin Yang
parent 0ded0ce414
commit 9c7c7c58ae
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ Now that we have disabled some segments, we can submit a Kill Task, which will d
A Kill Task spec has been provided at `quickstart/tutorial/deletion-kill.json`. Submit this task to the Overlord with the following command: A Kill Task spec has been provided at `quickstart/tutorial/deletion-kill.json`. Submit this task to the Overlord with the following command:
```bash ```bash
curl -X 'POST' -H 'Content-Type:application/json' -d @quickstart/tutorial/deletion-kill.json http://localhost:8090/druid/indexer/v1/task curl -X 'POST' -H 'Content-Type:application/json' -d @quickstart/tutorial/deletion-kill.json http://localhost:8081/druid/indexer/v1/task
``` ```
After this task completes, you can see that the disabled segments have now been removed from deep storage: After this task completes, you can see that the disabled segments have now been removed from deep storage: