Replies: 1 comment
-
These are good ideas, I'll look into. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Different tasks have different concurrency characteristics.
Some are light weight that many tasks can be run at the same time,
while some are heavy and should be limited.
Currently, we can only turn on or off concurrency that the task level.
It would be great that if we can control the concurrency limit for each task.
For example, while setting the overall concurrency to
4
, limittest
to2
.This mean there can be 4 tasks running at the same time, only 2 of them can be the
test
task.Also, rather than setting the concurrency to a specific value, it would be great if it can support percentage such as
80%
or25%
, representing a percentage of the total core/thread available. This is the same support in turborepoBeta Was this translation helpful? Give feedback.
All reactions