You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/offloading-large-workflows.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
Argo stores workflows as Kubernetes resources (i.e. within EtcD). This creates a limit to their size as resources must be under 1MB. Each resource includes the status of each node, which is stored in the `/status/nodes` field for the resource. This can be over 1MB. If this happens, we try and compress the node status and store it in `/status/compressedNodes`. If the status is still too large, we then try and store it in an SQL database.
6
6
7
-
To enable this feature, configure a Postgresor MySQL database under `persistence` in [your configuration](workflow-controller-configmap.yaml) and set `nodeStatusOffLoad: true`.
7
+
To enable this feature, configure a Postgres, MySQL, or MariaDB database under `persistence` in [your configuration](workflow-controller-configmap.yaml) and set `nodeStatusOffLoad: true`.
Copy file name to clipboardExpand all lines: docs/synchronization.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ spec:
68
68
Multiple controllers can share locks using a database as an intermediary.
69
69
This would normally be used to share locks across multiple clusters, but can also be used to share locks across multiple controllers in the same cluster.
70
70
71
-
To configure multiple controller locks, you need to set up a database (either PostgreSQLor MySQL) and [configure it](#database-configuration) in the workflow-controller-configmap ConfigMap.
71
+
To configure multiple controller locks, you need to set up a database (either PostgreSQL, MySQL, or MariaDB) and [configure it](#database-configuration) in the workflow-controller-configmap ConfigMap.
72
72
All controllers which want to share locks must share all of these tables.
73
73
If you do not configure the database you will get an error if you try to use database locks.
0 commit comments