Hi,
Let say I’m creating to workers, the first one is configure to run activities of types Activity-A and activity-B and the queue assign for this worker called que-A-B.
The second worker configure to run only activity of type activity-A and the queue name is que-A.
Now I have a workflow which run only activity of type activity-A, to which queue the request to run the activity will be added?
Thanks
It is the workflow’s choice which task queue to use to schedule an activity. In the case of activity-A, any of the task queues can be used.
In all practical situations, I remember the same activity being implemented by multiple task queues when it needs to be executed at a specific location (region, AZ, host, process). In this case, workflow decides where to run it by picking a correspondent task queue.
Thanks Maxim for your help.