Architecture Diagrams
What are Architecture Diagrams?
Architecture diagrams help you visualize relationships between services and resources in your data infrastructure. They're particularly useful for documenting cloud deployments, data pipelines, and system integrations. You can group related services together and show how different components connect and interact.
Creating Your First Architecture Diagram
From the Code IDE, Click Apps and Agents from the lefthand panel
Select Mermaid. Paradime will automatically start a new mermaid project
In the terminal that appears, use the arrow keys to select "Architecture Diagrams"
A new
architecture.mmd
file will be created in your editor with this starter template:
Click the eye icon (👁️) in the top right corner of your Mermaid file to preview the diagram
[screenshot]
Edit and update your
.mmd
file as needed - the preview will update automatically
Diagram Syntax Guide
Basic Components
Groups: Container for related services
Services: Individual components
Edges: Connections between services
Building Blocks
Groups
Create a group with:
Add services to a group using in
:
Services
Define services with:
Available icons:
cloud
database
disk
internet
server
Connections
Connect services using edges:
Direction options: T(top), B(bottom), L(left), R(right)
Arrow types: -->, --, <--
Data Team Examples
Data Warehouse Architecture
ETL Pipeline
Best Practices
Group related services logically
Use clear, descriptive labels
Keep connections simple and readable
Use consistent naming conventions
Add appropriate icons for services
Additional Resources
For more syntax options and advanced features, visit the official Mermaid documentation
Last updated