Is the RabbitMQ RPC a kind of "Work queue" with response? -
is rabbitmq rpc kind of work queue response? in rpc description can read:
if rpc server slow, can scale running one. try running second
rpc_server.pyin new console.
so in mind rpc worker queue , every worker responding if task done. or wrong?
worker queue: https://www.rabbitmq.com/tutorials/tutorial-two-spring-amqp.html
rpc: https://www.rabbitmq.com/tutorials/tutorial-six-spring-amqp.html
thanks in advance.
the 2 chapter different case teach different things.
worker queue teach concept of prefetch. can set basicqos.
rpc show basicproperties of message , exclusive of queue.
if want know more basicqos/basicproperties/etc, can check api or spec.
you can combine work queue , rpc together. can append 2 or more server consumer rpc_queue.


Comments
Post a Comment