Issue with Request Count Scale Type
Request Count is set to 15 and there are more than 15 requests but an additional worker is not being added. It's an A1111 worker (https://github.com/ashleykleynhans/runpod-worker-a1111) with
runpod>=0.10.0
. See screenshots attached.6 Replies
Your max workers
check it, if the running workers is already 3 then it wont be added anymore
max workers limits the current running workers
you set request count to 15, in order for it to spawn 4th worker, you would need > 45 requests in queue & in progress
math is (19+3)/15, that logic only needs 2 workers, you already have 3 running
i would set request count to 5, 4th worker will spawn when > 15
Thanks, this isn't very obvious, would be good to add it to the docs.
its shared there in description
Oh my bad, missed that, sorry
got it, thanks