wuxmes
wuxmes
RRunPod
Created by Mert on 12/17/2024 in #⚡|serverless
Runpod serverless for Comfyui with custom nodes
a lot of custom nodes try to install opencv again and cause issues
5 replies
RRunPod
Created by Mert on 12/17/2024 in #⚡|serverless
Runpod serverless for Comfyui with custom nodes
after all requirements are installed
5 replies
RRunPod
Created by Mert on 12/17/2024 in #⚡|serverless
Runpod serverless for Comfyui with custom nodes
always uninstall both opencv and opencv-python and then install opencv-python-headless like so
pip uninstall -y opencv-python-headless opencv-python-contrib opencv-python && \
pip install opencv-python-headless==4.10.0.84
pip uninstall -y opencv-python-headless opencv-python-contrib opencv-python && \
pip install opencv-python-headless==4.10.0.84
5 replies
RRunPod
Created by wuxmes on 12/7/2024 in #⚡|serverless
Template id missing in serverless dashboard
yep, that'd be perfect
4 replies
RRunPod
Created by Ben on 12/7/2024 in #⚡|serverless
Serverless request returns None from python client but web status says completed successfully
wait are you running a bash script in docker command as startup?
19 replies
RRunPod
Created by Ben on 12/7/2024 in #⚡|serverless
Serverless request returns None from python client but web status says completed successfully
are you running this in subprocess or directly in python handler? hard to say why its ending early without looking at code
19 replies
RRunPod
Created by Ben on 12/7/2024 in #⚡|serverless
Serverless request returns None from python client but web status says completed successfully
set a higher execution timeout prolly, exactly 60 secs feels like that might be the reason
19 replies
RRunPod
Created by Brever on 12/7/2024 in #⚡|serverless
Serverless Workers redis client?
Same here, something recently seems to be broken
9 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
smth like this fixed it for me in python
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
for me I did a manual fix by adding a middleware by directly setting all webhook requests as contenttype of json
def __call__(self, request):
if request.method == "POST" and "webhook_runpod" in request.path:
request.META["CONTENT_TYPE"] = "application/json"
return self.get_response(request)
def __call__(self, request):
if request.method == "POST" and "webhook_runpod" in request.path:
request.META["CONTENT_TYPE"] = "application/json"
return self.get_response(request)
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
getting a barrage of 520 and 415 since 4 am
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
No description
88 replies
RRunPod
Created by 1AndOnlyPika on 10/6/2024 in #⚡|serverless
Reporting/blacklisting poorly performing workers
I have a retry mechanism when executionTimeout happens, but then most of the times the job goes back to the same worker id : |
24 replies
RRunPod
Created by 1AndOnlyPika on 10/6/2024 in #⚡|serverless
Reporting/blacklisting poorly performing workers
same, would love if you could specify in request if a request should not be directed to a worker id
24 replies
RRunPod
Created by Monster on 6/12/2024 in #⚡|serverless
can 3 different serverless workers running from same network volume?
this was such a pain that I ended up buying my own PC with 4070ti just so I could test stuff with cuda lol
64 replies
RRunPod
Created by Monster on 6/12/2024 in #⚡|serverless
can 3 different serverless workers running from same network volume?
oh lol I use a1111 , didn't know comfyui has such a strange system
64 replies
RRunPod
Created by Monster on 6/12/2024 in #⚡|serverless
can 3 different serverless workers running from same network volume?
network volume should be used for stuff like model weights
64 replies
RRunPod
Created by Monster on 6/12/2024 in #⚡|serverless
can 3 different serverless workers running from same network volume?
will just make it slower since network volume is slower than container's disk
64 replies
RRunPod
Created by Monster on 6/12/2024 in #⚡|serverless
can 3 different serverless workers running from same network volume?
any reason you're storing venv in workspace? just root install it in docker container
64 replies
RRunPod
Created by wuxmes on 2/28/2024 in #⚡|serverless
Getting docker error
well it completed 2 jobs afterwards, you can see it from the "start container" without the errro
8 replies