Serverless problems since 10.12
I am using serverless since few months quit stable, but since 10.12 all my requests execute after 25 seconds i already tried all different settings but at the end the process stops after 25 seconds and i get a error. I changed nothing on Docker ore on my files same settings since weeks.
{
"delayTime": 4967,
"error": "Error queuing workflow: <urlopen error [Errno 111] Connection refused>",
"executionTime": 25555,
"id": "819bd414-8034-4299-85e5-37e6d21554f8-e1",
"status": "FAILED",
"workerId": "hi1kfe0khfgay7"
}
9 Replies
It is a connection refused inside your worker, what applicationare you running there?
I'm guessing it it's still loading, and your runpod handler tries to hit it multiple times but still failed
I am running comfyUI
Which part of code in your handler is throwing that? Try to check it
If you got a time out setting in your runpod handler try to add more time
I already test all different setting less exexution time, no execution time, very much execution time everything
Same problem
No.. In your handler code there should be some timeout configuration that sets a max timeout for sending requests to your comfyui
Not in Runpod's website
ok i see i will ask my developer
But what confuse me just my developer do this work and he did not touch it for weeks.
Don´t understand why it stop working
Did you do any change or anyone did any change to the files
Any updates?
Can you still send requests for other workflow?
From what I can see in logs is that your container install dependency on start with should not happen as you want them stored in venv or baked into docker image. Another issue I see is about libGL.so.1 it's mostly caus emissing packages for cv2 you should be able to fix it by adding this to dockerfile:
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
Got this msg from runpod support, so looks that there was a overall change with docker and we need to adjust the docker image.
My developer still work on it
Looks like your dev needs an overall change on how your container image works yes