1. Which executor runs tasks on a single machine and can run multiple tasks in parallel using local subprocesses?
- A. LocalExecutor✓ Correct
- B. SequentialExecutor
- C. CeleryExecutor
- D. KubernetesExecutor
Explanation
The LocalExecutor runs tasks in parallel using subprocesses on a single machine. The SequentialExecutor (B) runs one task at a time (no parallelism), while Celery (C) and Kubernetes (D) executors distribute tasks across multiple workers/pods.