Fórum

Message Bus usage in clustered environment

Charanjeet singh Hora, modificado 15 Anos atrás.

Message Bus usage in clustered environment

New Member Postagens: 24 Data de Entrada: 20/01/09 Postagens Recentes
Hi All,

I read about Message Bus capabilities of liferay on Wiki http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Message+Bus.

It says that
The current implementation doesn't allow to send remote messages.


My question is can we use message bus in clustered environment and if yes then how we can use it?

Please reply me asap.

Thanks
Sneha Shah, modificado 11 Anos atrás.

RE: Message Bus usage in clustered environment

New Member Postagens: 4 Data de Entrada: 02/10/12 Postagens Recentes
Please let me know if there is update on this. Can we use message bus in a clustered environment in liferay 6.0?
thumbnail
David H Nebinger, modificado 11 Anos atrás.

RE: Message Bus usage in clustered environment

Liferay Legend Postagens: 14917 Data de Entrada: 02/09/06 Postagens Recentes
Not that I know of.

However it would be an easy matter of using JMS to join your clustered environments:

  • Set up ActiveMQ on all instances.
  • Add a message bus listener to get messages from the LMB and publish via JMS.
  • Create a JMS listener to receive these messages and publish back to the LMB.
thumbnail
Amos Fong, modificado 11 Anos atrás.

RE: Message Bus usage in clustered environment

Liferay Legend Postagens: 2047 Data de Entrada: 07/10/08 Postagens Recentes
It should be possible. LiveUsers uses the message bus to send message to all the nodes. See messaging-misc-spring.xml to see how it's wired up.

I think what you do is register a ClusterBridgeMessageListener along with your own MessageListener to a destination and the ClusterBridge will broadcast the message to all the other nodes.