Worker other than Python
As I understand only python library is implemented for serverless workers?
If I don't use python in my docker image (C# console app which is using cuda library) am I able just run http server in my worker application, listen to port set in "RUNPOD_REALTIME_PORT" (as far as I understand from runpod github) environment variable, and register some http routes for receiving job inputs, cancelling, etc.? If yes, where I can find list of routes that I need to implement on my http server to be able to act as worker?
1 Reply
https://github.com/runpod/runpod-python/blob/main/runpod/serverless/modules/rp_job.py
basically when you worker start, you need to tell where to get the job, and when job finished, send result back to our system.
GitHub
runpod-python/runpod/serverless/modules/rp_job.py at main · runpod/...
🐍 | Python library for RunPod API and serverless worker SDK. - runpod/runpod-python