diff options
author | su622b <sunil.unnava@att.com> | 2018-04-16 16:50:25 -0400 |
---|---|---|
committer | su622b <sunil.unnava@att.com> | 2018-04-16 16:50:52 -0400 |
commit | 1c624de20ff321fe5c86c4df873952d82b1946b3 (patch) | |
tree | 5bc44799ec76af23108d7bee9d71f8038fd0a05a /docs/delivery | |
parent | 7cd58518e9dc263521f252c1095a43244e464222 (diff) |
updated the documentation
Issue-ID: DMAAP-413
Change-Id: I4955f7e512e594c189c5183ec83c5769d33d8f05
Signed-off-by: su622b <sunil.unnava@att.com>
Diffstat (limited to 'docs/delivery')
-rw-r--r-- | docs/delivery/delivery.rst | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/delivery/delivery.rst b/docs/delivery/delivery.rst new file mode 100644 index 0000000..b815e1c --- /dev/null +++ b/docs/delivery/delivery.rst @@ -0,0 +1,34 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 International License. +.. http://creativecommons.org/licenses/by/4.0 + +Delivery +======== + +Message Router is comprised of Message Router service and Message Router API. Message Router uses Kafka and ZooKeeper + +.. blockdiag:: + + + blockdiag layers { + orientation = portrait + MR_SERVIVE -> MR_API; + MR_SERVIVE -> KAFKA; + MR_SERVIVE -> ZOOKEEPER; + group l1 { + color = blue; + label = "MR container"; + MR_SERVIVE; MR_API; + } + group l2 { + color = yellow; + label = "Kafka Container"; + KAFKA; + } + group l3 { + color = orange; + label = "ZooKeeper Container"; + ZOOKEEPER; + } + + } + |