From 79dc20e993ce65a20bdf3b3530ea0f8813a94409 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Fri, 29 Aug 2025 16:31:02 -0300 Subject: [PATCH] SIENTIAPDE-1084 Update README.md to modify the Scouter Workflow Architecture flowchart, enhancing clarity by restructuring the diagram layout and correcting the connections to Redis and MongoDB components. --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d2fd466..b27aff3 100644 --- a/README.md +++ b/README.md @@ -75,12 +75,17 @@ The **Scouter** workflow is the main entry point for data processing pipelines. #### Architecture ```mermaid -flowchart LR - A[1. get_last_data_timestamp] --> B[2. load_latest_data] --> C[3. put_last_data_timestamp] --> D[4. core_scouter ⬛] +flowchart TB + subgraph " " + A[1. get_last_data_timestamp] --- B[2. load_latest_data] --- C[3. put_last_data_timestamp] --- D[4. core_scouter ⬛] + end + subgraph " " + Redis[(Redis)] ~~~ MongoDB[(MongoDB)] ~~~ Redis2[(Redis)] + end - A -.-> Redis[(Redis)] - B -.-> MongoDB[(MongoDB)] - C -.-> Redis + A -.-> Redis + B -.-> MongoDB + C -.-> Redis2 ``` ### Key Components