3. How It WorksΒΆ
Executor Context: The
Executorcontext manages all cluster configurations and task execution.Submit a Job: The method
submitconfigure a delayed job to theExecutor.Start the Job: You can either start the job manually with the
startmethod attached or call theExecutorinstance to run all jobs. With the last method, you can control concurrency by setting max_jobs to limit the number of tasks running simultaneously. Note that it is possible to only generate the batch file associated to a job using thegenerate_batchmethod.Execution Reporting: Once the job completes, the result is retrieved in the
Executorinstance report property.