Skip to content

Commit

Permalink
Fix mermaid diagrams for delete data
Browse files Browse the repository at this point in the history
  • Loading branch information
pflooky committed Mar 29, 2024
1 parent 95de8cf commit 778d320
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 15 deletions.
20 changes: 13 additions & 7 deletions docs/setup/delete-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,27 @@ graph LR
dataCaterer["Data Caterer"]
subgraph postgresAccTable ["Postgres accounts table"]
accountA["ACC12345,2024-01-01"]
accountB["ACC98765,2024-01-23"]
accountC["..."]
subgraph table
direction TB
accountA["ACC12345,2024-01-01"]
accountB["ACC98765,2024-01-23"]
accountC["..."]
end
end
consumerJob["Consumer"]
subgraph parquetAcc ["Parquet accounts file"]
accountParquetA["ACC12345,2024-01-01"]
accountParquetB["ACC98765,2024-01-23"]
accountParquetC["..."]
subgraph parquet
direction TB
accountParquetA["ACC12345,2024-01-01"]
accountParquetB["ACC98765,2024-01-23"]
accountParquetC["..."]
end
end
postgresAccount --> dataCaterer
dataCaterer --> postgresAccTable
postgresAccTable <-- consumerJob
consumerJob --> postgresAccTable
consumerJob --> parquetAcc
```
2 changes: 1 addition & 1 deletion site/search/search_index.json

Large diffs are not rendered by default.

20 changes: 13 additions & 7 deletions site/setup/delete-data/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2268,22 +2268,28 @@ <h3 id="delete">Delete</h3>
dataCaterer["Data Caterer"]

subgraph postgresAccTable ["Postgres accounts table"]
accountA["ACC12345,2024-01-01"]
accountB["ACC98765,2024-01-23"]
accountC["..."]
subgraph table
direction TB
accountA["ACC12345,2024-01-01"]
accountB["ACC98765,2024-01-23"]
accountC["..."]
end
end

consumerJob["Consumer"]

subgraph parquetAcc ["Parquet accounts file"]
accountParquetA["ACC12345,2024-01-01"]
accountParquetB["ACC98765,2024-01-23"]
accountParquetC["..."]
subgraph parquet
direction TB
accountParquetA["ACC12345,2024-01-01"]
accountParquetB["ACC98765,2024-01-23"]
accountParquetC["..."]
end
end

postgresAccount --&gt; dataCaterer
dataCaterer --&gt; postgresAccTable
postgresAccTable &lt;-- consumerJob
consumerJob --&gt; postgresAccTable
consumerJob --&gt; parquetAcc</code></pre>


Expand Down
Binary file modified site/sitemap.xml.gz
Binary file not shown.

0 comments on commit 778d320

Please sign in to comment.