Is there a way to load balance workflow execution ...
# prefect-server
v
Is there a way to load balance workflow execution between agents? Assume I have multiple agents ( one per server) and I wish to direct execution based on server load )
a
You would need to use an agent that has load balancing built in e.g. a Kubernetes agent or ECS agent. Load balancing over e.g. local agents is not supported. This page explains it in more detail.
👍 1
v
Thanks