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
Currently, scaling the executor is challenging because the activeRuntimes variable relies on a Swoole Table, rendering the executor container stateful.
The optimal solution would be to switch to a database, preferably Redis, to ensure the container is entirely stateless.
The text was updated successfully, but these errors were encountered:
This is actually designed this way because each executor is designed like an agent to orchestrate a single node. To scale it you would need to have a 2nd machine and load balance the two.
Currently, scaling the executor is challenging because the
activeRuntimes
variable relies on a Swoole Table, rendering the executor container stateful.The optimal solution would be to switch to a database, preferably Redis, to ensure the container is entirely stateless.
The text was updated successfully, but these errors were encountered: