Any reason to split one Artifact Generator containing 600+ artifacts definition across several Artifact generators? #5786
-
|
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
You have a number of goroutines in source-watcher. If you put all your artifacts in a single ArtifactGenerator you will be using only a single goroutine. You can use the goroutines (and therefore CPUs) more efficiently if you split. |
Beta Was this translation helpful? Give feedback.
You have a number of goroutines in source-watcher. If you put all your artifacts in a single ArtifactGenerator you will be using only a single goroutine. You can use the goroutines (and therefore CPUs) more efficiently if you split.