Visualize how parallel task execution works with configurable workers and task counts.
cmd_execute, HTTP post_execute) run compiled plans sequentially via PlanExecutor. This demo illustrates the pattern's shape, not current production behavior.
Fan-out distributes independent tasks across multiple workers for parallel execution. Each worker processes one task at a time from the queue.
The max_workers parameter limits concurrency.
More workers = faster completion (up to the task count), but higher resource usage.