Local Publishing in Cluster Environment

Hi,

If I have to build a solution where

  1. A document needs to be processed in a multi threaded fashion
  2. Both the Publisher and subscriber services lies on the same IS

Which approach would be better Local publishing or Broker?

While development Local publishing suffice my need of processing the document concurrently by configuring the trigger’s Processing mode as “Concurrent”.

But the question still arises that how would this solution perform in a clustered environment?
For ex: In a clustered environment of 2 servers: if doc A is published locally on node 1, would it be picked by the trigger of node 1 or can it be picked by the trigger of node 2 as well?

If you do a local publish and document is published in node 1, it will be subscribed by node 1 only. Node 2 will not get the document.

-Jay