You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by fj...@apache.org on 2019/07/06 15:50:10 UTC

[incubator-druid] branch master updated: Fix overlord port in delete data tutorial (#8037)

This is an automated email from the ASF dual-hosted git repository.

fjy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-druid.git


The following commit(s) were added to refs/heads/master by this push:
     new 9c7c7c5  Fix overlord port in delete data tutorial (#8037)
9c7c7c5 is described below

commit 9c7c7c58ae3ff58c1fcd2db7c243385b039314e4
Author: Dinesh Sawant <di...@gmail.com>
AuthorDate: Sat Jul 6 21:20:01 2019 +0530

    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.
---
 docs/content/tutorials/tutorial-delete-data.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/content/tutorials/tutorial-delete-data.md b/docs/content/tutorials/tutorial-delete-data.md
index 46fbbdc..9009122 100644
--- a/docs/content/tutorials/tutorial-delete-data.md
+++ b/docs/content/tutorials/tutorial-delete-data.md
@@ -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:


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org