Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOP-19932] Update docs #138

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ Non-goals
---------

* This is not a backup system
* This is not a CDC solution
* Only batch, no streaming

.. documentation
Expand Down
Binary file added docs/_static/architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 1 addition & 34 deletions docs/backend/architecture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,4 @@
Architecture
============

.. plantuml::

@startuml
title Backend artitecture
skinparam linetype polyline
left to right direction

actor "User"

frame "SyncMaster" {
rectangle "Backend" {
component "REST API"
database "Database"
queue "Task Queue"
}
rectangle "Workers" {
collections "Worker"
}
}

database "Data Source"
database "Data Target"

[User] --> [REST API]
[REST API] --> [Database]
[REST API] --> [Task Queue]

[Task Queue] --> [Worker]
[Worker] --> [Database]

[Worker] --> [Data Source]
[Worker] --> [Data Target]

@enduml
.. image:: ../_static/architecture.png
Loading