0

I have a requirement for a resilient MSMQ setup on VMWare ESX5. I am aware that we cannot allow the queue storage to be shared as it must be installed on physical disk mount, e.g. it cant be an CIFS or DFS Share. The following constraints apply: We don't use windows clustering We dont't rely on hot standbys

Is there a way I can replicate the queue storage to another platform so that it can assume MSMQ duties on failure of the primary platforms using any method including queue forwarding?

Paddy Carroll
  • 237
  • 1
  • 2
  • 11

1 Answers1

1

I've heard of people using block level copying of the disk hosting the MSMQ storage folder to another location.
If you do replicate storage to another location then the destination machine has to have the same computer name to be able to load the messages.
Note that MSMQ can need to update several files for message processing so there is always the scenario where the copy is not completely in synch with the original when failure occurs.
If you don't want to invest in hardware solutions then you could design the application to be resiliant. For example, by sending messages to multiple destinations but processing only one message or intercepting processing of the duplicates.

John Breakwell
  • 757
  • 5
  • 11