Is there any way to validate concurrency is working in Trident?
Applies to
- Trident 26.02 and later
Answer
- Check the tridentOrchestrator to see if enableConcurrency is set
$ kubectl get torc trident -o jsonpath='{.status.currentInstallationParams.enableConcurrency}{"\n"}'
- Look at the
Trident Deployment yamland see theenable-concurrencyvariable is set for thetrident-maincontainer$ kubectl get deploy trident-controller -n trident -o jsonpath='{.spec.template.spec.containers[0].args[*]}{"\n"}' | awk '{for (i=1; i<=NF; i++) if ($i ~ /^--enable_concurrency=/) { print $i; exit }}'
If concurrency is set these should both show true
