Foros de discusión

Message Bus usage in clustered environment

Charanjeet singh Hora, modificado hace 15 años.

Message Bus usage in clustered environment

New Member Mensajes: 24 Fecha de incorporación: 20/01/09 Mensajes recientes
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 hace 11 años.

RE: Message Bus usage in clustered environment

New Member Mensajes: 4 Fecha de incorporación: 2/10/12 Mensajes recientes
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 hace 11 años.

RE: Message Bus usage in clustered environment

Liferay Legend Mensajes: 14919 Fecha de incorporación: 2/09/06 Mensajes recientes
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 hace 11 años.

RE: Message Bus usage in clustered environment

Liferay Legend Mensajes: 2047 Fecha de incorporación: 7/10/08 Mensajes recientes
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.