blob: b815e1c321b36a8d3631527293fd1636ee695775 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
}
}
|