# Need Some more information about Temporal workers

**URL:** https://community.temporal.io/t/need-some-more-information-about-temporal-workers/4854
**Category:** Community Support
**Tags:** go-sdk
**Created:** [June 2, 2022, 12:58am UTC](https://community.temporal.io/t/need-some-more-information-about-temporal-workers/4854 "2022-06-02T00:58:38Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![swapnilk26](https://avatars.discourse-cdn.com/v4/letter/s/ce7236/32.png) [@swapnilk26](https://community.temporal.io/u/swapnilk26)
#### Post date: [June 2, 2022, 12:58am UTC](https://community.temporal.io/t/need-some-more-information-about-temporal-workers/4854/1 "2022-06-02T00:58:38Z")

</div>

Hi , From the documentation I get that worker continuously polls for tasks in the taskque . So is there a one to one mapping betwee worker and a taskque ? or multiple workers can poll for same taskque ? if that is possible how to create such workers using golang SDK?

---

<div class="post-metadata">

### Author: ![tihomir](https://sea2.discourse-cdn.com/flex016/user_avatar/community.temporal.io/tihomir/32/6580_2.png) [@tihomir](https://community.temporal.io/u/tihomir)
#### Post date: [June 2, 2022, 5:48pm UTC](https://community.temporal.io/t/need-some-more-information-about-temporal-workers/4854/3 "2022-06-02T17:48:02Z")

</div>

> is there a one to one mapping betwee worker and a taskque

Multiple workers can poll same task queue, you should have these workers in different processes for availability and scalability.

> how to create such workers using golang SDK

You would use the go sdk api, see example [here](https://github.com/temporalio/samples-go/blob/main/helloworld/worker/main.go#L20). For multiple workers you can use same api in each of your processes.
