Hi I am trying to run the transformers in kubernetes pod on my instance and its using up all the CPU cores available and throttling other pods in the cluster eventually crashing the sytem.
I tried to create a sed patch in in the dokcer-entrypoint file for the transformers to override ThreadPoolExecutor max workers which is set to. None (by default) to a value that user defines (with an ENV variable)
This doesnt seem to work as well, When I /bin/bash into the container the fix seems to work as below, but its not perofrming as expected and still using all the cores on the instance it was deployed.
Hi I am trying to run the transformers in kubernetes pod on my instance and its using up all the CPU cores available and throttling other pods in the cluster eventually crashing the sytem.
I tried to create a sed patch in in the dokcer-entrypoint file for the transformers to override ThreadPoolExecutor max workers which is set to. None (by default) to a value that user defines (with an ENV variable)
This doesnt seem to work as well, When I /bin/bash into the container the fix seems to work as below, but its not perofrming as expected and still using all the cores on the instance it was deployed.
Appreciate any help regarding this issue.