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
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?
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?
RunPod supports the use of asynchronous handlers, enabling efficient handling of tasks that benefit from non-blocking operations. This feature is particularly useful for tasks like processing large datasets, interacting with APIs, or handling I/O-bound operations.

