mirror of https://github.com/apache/druid.git
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:
parent
0ded0ce414
commit
9c7c7c58ae
|
@ -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:
|
||||
|
||||
```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:
|
||||
|
|
Loading…
Reference in New Issue