I’m trying to set a concurrency limit of 10 on a task queue that I have (SelfServiceReqManagement), and was a bit confused on the options available for spring boot. Here is a snippet of code I currently have:
@Bean
public WorkerFactory workerFactory(WorkflowClient workflowClient,
ServiceNowReqManagementImpl serviceNowReqManagement) {
WorkerFactory workerFactory = WorkerFactory.newInstance(workflowClient);
WorkerOptions workerOptions = WorkerOptions.newBuilder()
.setMaxConcurrentActivityExecutionSize(10)
.build();
Worker worker = workerFactory.newWorker("ServiceNowReqManagement", workerOptions);
worker.registerActivitiesImplementations(serviceNowReqManagement);
return workerFactory;
}
Is this code equivalent to setting these configurations in application.yml?
spring:
temporal:
workers:
- task-queue: ServiceNowReqManagement
capacity:
max-concurrent-activity-executors: 1
Do they serve the same purpose or does max-concurrent-activity-executors do something different (and if so, what)?