Hey! Don't suppose anyones got an example of concurrency limits working on self hosted V2? We dispatch about 20 of these jobs at the same time, but they need to run 1 at a time. Currently they're going 10 a time (which is weirder 😅).
We can't go to V3 yet because of the beta label (client decision).
We fetch data with tasks like this:
const data = await io.runTask(
"fetch-page",
async () => await fetchPage(payload.pageId),
);