-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrorFlow.wsd
More file actions
43 lines (33 loc) · 965 Bytes
/
errorFlow.wsd
File metadata and controls
43 lines (33 loc) · 965 Bytes
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
35
36
37
38
39
40
41
42
43
@startuml
rectangle "Stream" {
queue PrincipalStream
actor Consumer
}
rectangle "Errors with retries" {
card ErrorManagement
queue RetryStream
card RetryManagement
queue DelQueueStream
}
rectangle "Supervision" {
card AnalyticsMonitoring
actor ManualOperation
database Database
}
entity entry
entry -> PrincipalStream
Consumer --> ErrorManagement : **Error detected**
ErrorManagement --> RetryStream : Can Retry
RetryManagement <-- RetryStream : Consume
RetryManagement --> RetryManagement : Wait
PrincipalStream <-- RetryManagement : Retry
ErrorManagement --> DelQueueStream : Not resolvable
DelQueueStream --> ManualOperation : Consume
ManualOperation <--> Database
ManualOperation -> RetryStream : Produce
Consumer <-l- PrincipalStream : Consume
RetryStream ---> AnalyticsMonitoring : Consume
DelQueueStream --->AnalyticsMonitoring : Consume
AnalyticsMonitoring->ManualOperation : Alert And Monitor
AnalyticsMonitoring <-> Database
@enduml