Is it possible to create a 3 node Windows Server 2008 R2 failover cluster without a SAN?
Our goal is to create a clustered MSMQ without any single points of failure. Ideally, the stored messages would be persisted on all nodes of the cluster so that if any single node was taken offline the cluster could continue operation and maintain quorum.
Alternatively, is there another, better way of creating a highly available MSMQ?
(additional most likely irrelevant information) This cluster is going to act as a NServiceBus "distributor" and hold all "pending" messages in our system. It will be the hub that all message traffic goes through.
Edit: to clarify, I'm specifically interested in storing the MSMQ queues replicated on the nodes themselves. I would use either FileShare or a Node Majority quorum to handle cluster quorum.