Coder
Coder

Reputation: 75

How to create a cluster for TIBCO EMS?

I've created an administration domain on a Windows node, now I need to create a cluster and add that node into that cluster.How do I go about it?

Upvotes: 2

Views: 1279

Answers (1)

GhislainCote
GhislainCote

Reputation: 1512

There is no concept of "Cluster" (in a WMQ sense) with EMS, but there are notions of "connected EMS servers" (routes), and bridging of queues (bridges, not unlike WMQ remote queues). There is also the notion of "Multi-instance local HA".

You may want to :

  1. Plan your EMS deployment strategy, to proper balance latency, availability, license cost and performance
  2. Execute the plan by:
    • Seting up the local HA, with a shared FS if shared state is needed (here is my article on that)
    • Make use of the "Routes" feature of EMS to link your multiple EMS HA instances together (see page 569 of the user guide)

Note : If you have a limited number of instances but MASSIVE amount of clients, consider multicast OR another product (like FTL or RabbitMQ).

Upvotes: 0

Related Questions