-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a diagram of the composite design for broker migration
- Loading branch information
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
@startuml | ||
left to right direction | ||
|
||
together { | ||
cloud akamai_mqtt_broker as "Akamai MQTT Broker" | ||
|
||
component akamai_mqtt_consumer as "MQTT Consumer" | ||
|
||
component akamai_kafka_consumer1 as "Kafka Consumer" | ||
|
||
component akamai_api_server1 as "API Server" | ||
|
||
database akamai_database as "Database" | ||
|
||
queue akamai_queue as "Kafka" | ||
} | ||
|
||
together { | ||
cloud aws_mqtt_broker as "AWS MQTT Broker" | ||
|
||
component aws_mqtt_consumer as "MQTT Consumer" | ||
|
||
component aws_kafka_consumer1 as "Kafka Consumer" | ||
|
||
component aws_api_server1 as "API Server" | ||
|
||
database aws_database as "Database" | ||
|
||
queue aws_queue as "Kafka" | ||
} | ||
|
||
|
||
component composite_api_server1 as "Composite API Server" | ||
|
||
@enduml | ||
|
||
|
||
akamai_mqtt_broker <-> akamai_mqtt_consumer | ||
akamai_mqtt_consumer -> akamai_queue | ||
akamai_queue --> akamai_kafka_consumer1 | ||
|
||
akamai_kafka_consumer1 --> akamai_database | ||
|
||
akamai_api_server1 --> akamai_database | ||
|
||
akamai_api_server1 -> akamai_mqtt_broker | ||
|
||
|
||
|
||
aws_mqtt_broker <-> aws_mqtt_consumer | ||
aws_mqtt_consumer -> aws_queue | ||
aws_queue --> aws_kafka_consumer1 | ||
|
||
aws_kafka_consumer1 --> aws_database | ||
|
||
aws_api_server1 --> aws_database | ||
|
||
aws_api_server1 -> aws_mqtt_broker | ||
|
||
|
||
composite_api_server1 -> aws_api_server1 | ||
composite_api_server1 -> akamai_api_server1 | ||
|