What is the limit of running concurrent worker?

I read that it is 500, but it is also written as “App Workers do not count towards this limit.”

Can you expand? Where did you get the 500 number from?

There’s no limit on the amount of Workers running concurrently at one time across our network.

There is a limit of concurrent outgoing requests within a Worker which is 6 (Limits · Cloudflare Workers docs)

Apps is a different thing and not relevant to concurrency.

Here is the link : https://developers.cloudflare.com/workers/platform/limits/

So that’s the number of Worker scripts (A Worker that you make in the dash/wrangler) but a single script/Worker could be serving 1000 concurrent requests.