Skip to content
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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
02bb21a66db61c0ea72aae788d1cd7da
77f976811a58e56d80a27df345b0d94c
Binary file modified airflow-core/docs/img/diagram_basic_airflow_architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def generate_basic_airflow_diagram():
user >> Edge(color="blue", style="solid", reverse=False, label="install\n\n") >> plugins_and_packages

with Cluster("UI"):
webserver = Python("Webserver")
webserver = Python("API Server")

webserver >> Edge(color="black", style="solid", reverse=True, label="operate\n\n") >> user

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c5e05dafe7b9a39325835fd3a2b47d4d
45f71f4dbb89f345bc5fe1fd8cf5c152
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def generate_dag_processor_airflow_diagram():
schedulers = Custom("Scheduler(s)", PYTHON_MULTIPROCESS_LOGO.as_posix())

with Cluster("UI"):
webservers = Custom("Webserver(s)", PYTHON_MULTIPROCESS_LOGO.as_posix())
webservers = Custom("API Server(s)", PYTHON_MULTIPROCESS_LOGO.as_posix())

webservers >> Edge(color="black", style="solid", reverse=True, label="operate\n\n") >> operations_user

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c9291864de06bc4b09f3a0ed89609572
e702f41492ce4856db9a092f4a01c89b
Binary file modified airflow-core/docs/img/diagram_distributed_airflow_architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def generate_distributed_airflow_diagram():

operations_user = User("Operations User")
with Cluster("UI"):
webservers = Custom("Webserver(s)", PYTHON_MULTIPROCESS_LOGO.as_posix())
webservers = Custom("API Server(s)", PYTHON_MULTIPROCESS_LOGO.as_posix())

webservers >> Edge(color="black", style="solid", reverse=True, label="operate\n\n") >> operations_user

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22f0feed88ad6a955d5bebba08469bf9
5d7f15fe6684789fde4c8b4ee5ae058d
Binary file modified airflow-core/docs/img/diagram_multi_team_airflow_architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def generate_dag_processor_airflow_diagram():
metadata_db = Custom("Metadata DB", DATABASE_IMAGE.as_posix())

with Cluster("UI"):
webservers = Custom("Webserver(s)", PYTHON_MULTIPROCESS_LOGO.as_posix())
webservers = Custom("API Server(s)", PYTHON_MULTIPROCESS_LOGO.as_posix())
auth_manager = Custom("Auth\nManager", PYTHON_MULTIPROCESS_LOGO.as_posix())

organization_plugins_and_packages = Custom(
Expand Down