SIENTIAPDE-1084
Refactor README.md to update the Scouter Workflow Architecture flowchart, transitioning to a left-to-right layout for improved readability and clarity in depicting data processing steps and service interactions.
This commit is contained in:
23
README.md
23
README.md
@@ -150,23 +150,14 @@ The **CoreScouter** workflow implements the core data processing pipeline for in
|
|||||||
#### Architecture
|
#### Architecture
|
||||||
|
|
||||||
```mermaid
|
```mermaid
|
||||||
flowchart TB
|
flowchart LR
|
||||||
subgraph workflow [" "]
|
A[1. data_quality_gate] --> B[2. aggregate_data] --> C[3. group_and_hold_data] --> D[4. export_data_to_postgres] --> E[5. write_metrics]
|
||||||
A[1. data_quality_gate] --> B[2. aggregate_data] --> C[3. group_and_hold_data] --> D[4. export_data_to_postgres] --> E[5. write_metrics]
|
|
||||||
end
|
|
||||||
|
|
||||||
subgraph services [" "]
|
A -.-> Filters[Quality Filters]
|
||||||
Filters[Quality Filters] ~~~ Redis1[(Redis)] ~~~ Redis2[(Redis)] ~~~ PostgreSQL[(PostgreSQL)] ~~~ Metrics[Prometheus]
|
B -.-> Redis1[(Redis)]
|
||||||
end
|
C -.-> Redis2[(Redis)]
|
||||||
|
D -.-> PostgreSQL[(PostgreSQL)]
|
||||||
A -.-> Filters
|
E -.-> Metrics[Prometheus]
|
||||||
B -.-> Redis1
|
|
||||||
C -.-> Redis2
|
|
||||||
D -.-> PostgreSQL
|
|
||||||
E -.-> Metrics
|
|
||||||
|
|
||||||
style workflow fill:none,stroke:none
|
|
||||||
style services fill:none,stroke:none
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### 3. FakeData Workflow (`fake_data.py`)
|
### 3. FakeData Workflow (`fake_data.py`)
|
||||||
|
|||||||
Reference in New Issue
Block a user