Activities are executed in different worker nodes than the namespace specified workers

Hi Team,

we have different worker nodes which are connected to single temporal with different namespaces
but using single TASK_QUEUE

some times, activity was executed in different worker node ( worker node is created with different namespace)

We don’t want to use the different TASK_QUEUE name as of now
do you see any issue with single TASK_QUEUE name across worker nodes with different namespace values

@rajashekhar

Temporal Workers register to the temporal server with namespace and taskqueue, you can use the same taskqueue name both namespaces,

You will have to create two workers:

  • namespaceA + TASK_QUEUE
  • namespaceB + TASK_QUEUE

Antonio