abtx
RRunPod
•Created by abtx on 11/19/2024 in #⚡|serverless
Why when I try to post it already tags it Solved?
Why when I try to post it already tags it Solved?
3 replies
RRunPod
•Created by abtx on 11/19/2024 in #⚡|serverless
HF Cache
Hey I got this email from you guys
Can you explain what exactly what you man by
Hugging Face models
cache? Docker Image Templates? Or do you mean when people fetch models from HF via internet you have them cached?4 replies
RRunPod
•Created by abtx on 8/23/2024 in #⚡|serverless
How to force /runsync over 60 secs
Need to keep /runsync alive for over 60 seconds. No webhooks, async. Just want the /runsync to work as is just for longer exection times.
8 replies
RRunPod
•Created by abtx on 8/23/2024 in #⚡|serverless
Sync endpoint returns prematurely
Sync endpoint sometimes randomly (about half of the time) responds prematurely with in progress json. The job finished however, I need the sync not to respond until the job is done.
15 replies
RRunPod
•Created by abtx on 3/31/2024 in #⚡|serverless
Do endpoints support custom images?
I am able fetch custom images from my GCP artifact registry for normal Pods. However, when I create endpoint, it forever gets stuck in "initializing" without any logs. However pre-made runpod endpoints like RunDiffusion work fine.
4 replies
RRunPod
•Created by abtx on 3/29/2024 in #⚡|serverless
Endpoint Deployment Stuck on Initializing
4 replies
RRunPod
•Created by abtx on 3/18/2024 in #⚡|serverless
How do I write handler for /run
When I create a handler
runpod.serverless.start({"handler": async_generator_handler})
Only http://localhost:8000/runsync triggers async_generator_handler
However when posting against http://localhost:8000/run
async_generator_handler
is not triggered. Just returns
But nothing happens in the backend12 replies
RRunPod
•Created by abtx on 3/18/2024 in #⚡|serverless
How do indicated job status in a handler?
For example in https://docs.runpod.io/serverless/workers/handlers/handler-async
Dopes the job status automatically becomes "COMPLETED" after
async_generator_handler
returns? In general how do you update the status of the job in runpod python sdk?
What I am trying to achieve is to use a single machine at a time for training purposes. I am not sure 1 hour long POST request is a good idea. How should this be done?5 replies