You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dedicated Workers are workers that are dedicated for a particular script. They are able to execute any job that target this script much faster than normal workers at the expense of being capable to only execute that one script.
6
+
They are as fast as running the same logic in a forloop, but keep the benefit of showing separate jobs per execution.
7
+
8
+
For now it only work with bun scripts that have been pre-deployed.
9
+
10
+
The scripts can be used within flows.
11
+
12
+
To setup, pass:
13
+
14
+
```
15
+
DEDICATED_WORKER=<workspace>:<path>
16
+
```
17
+
18
+
or use the dedicatedWorkers section in the values.yaml of the helm chart.
0 commit comments