You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can I use gRPC not for communication between different applications, but between two instances of the same application residing in different computers, for splitting a job achieving parallelization?
example:
App1: {job1, job2, job,...jobn} // run in serial the processing of job1 to jobn, for example using threads in batches
Can I use gRPC not for communication between different applications, but between two instances of the same application residing in different computers, for splitting a job achieving parallelization?
example:
run_to_remote_1({job1, job_n1})
run_to_remote_2({job_n2, ... jobm1})
...
run_to_remote_k({ job_j, ... jobn})
and then gather the results from each machine? Will this timeout?
The text was updated successfully, but these errors were encountered: