Replies: 1 comment
-
No, there is no concept of node affinity in River. The intention is for worker fleets to be horizontally scalable and capable of working any job on the queues they’re processing. You could achieve this by making a queue that only runs on one node but that would eliminate scalability. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have job type A and B where B depends on the result of job A by result I mean it needs access to local file which A produces.On one node this works fine but for multiples nodes when I queue B from A , I want it run on same node so that B can access this file without needing to upload to some remote like s3 .I can't combine these two jobs into one as job B does some heavy post processing (video encoding) so queue concurreny of B is very low compared to A. Is there a way to achieve this in current implementation of river
Beta Was this translation helpful? Give feedback.
All reactions