In indexing service flow chart, it should be middlemanager who writes task status to zookeeper (#4654)

This commit is contained in:
zhangxinyu1 2017-08-28 01:17:15 +08:00 committed by Fangjin Yang
parent 43488df975
commit b04261e7a2
1 changed files with 4 additions and 3 deletions

View File

@ -32,10 +32,11 @@ digraph g {
peon_12[label = "peon"]
peon_13[label = "peon"]
mm1 -> peon_11 [label = "new_task"]
mm1 -> { peon_12; peon_13 }
mm1 -> {peon_11;peon_12}
mm1 -> peon_13 [label = "new_task"]
mm1 -> peon_13:e [label = "new_task_status" dir=back]
}
zk_status:new_task:s -> peon_11:e [label = "new_task_status" dir = back]
zk_status:new_task:s -> mm1:e [label = "new_task_status" dir = back]
overlord:e -> zk_status:new_task:n [dir=back label="new_task_status"]
}