Replies: 1 comment 3 replies
-
The worker listing was a plan before, I haven't had a chance to work on that yet. If you wish to contribute, it would be great!! I think theoretically, there is an option to have a dedicated API client that would be just monitoring jobs on the server. As soon as he sees a fail, he can immediately post a new one with the same parameters. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Question about Nexrender Server:
I'm not sure If I'm doing it right but:
I've created and run these Nexrender "services":
node cli/server.js
node cli/worker.js
node cli/api.js
api.js sends a job to the server.
a worker picks it up.
I've copied @nexrender/worker to another folder so I can make changes and add my own functionality to it.
For now, I only updated src/index.js "the do function"
api.js
I would want the job to fail if for instance the AE project can't be found and I would like to automatically requeue the job and for the current worker I would like to ignore the current job that was created with the API...
Any thoughts on how I could get started?
Basic question:
Should I requeue the job with the worker or should I requeue it with a new API request with api.js?
Can I get a list of workers from the server?
Any other documentation besides the gitrepo?
Any idea or help is much appreciated!
Cheers
Beta Was this translation helpful? Give feedback.
All reactions