I also have another process that is receiving order messages from McKesson, lets call it orm_in
I have a vendor that want’s both messages in one thread, what is the preferred way of handling this? The engine I have inherited seems to handle this scenario two different ways. The first way is that they have this vendor thread with routes from both processes. I seem to recall reading that there is a significant performance hit with a thread receiving messages from a process outside of it’s “primary cluster”.
The other way that it seems to be handled is that the vendor thread is routed to one process and the other process connects to the vendor thread via an interface jump or hop.
Is this second way preferred, is there a similar performance hit?
I’ve yet to take the advanced class as I wanted to get my hands dirty for about a year before I took that class. I hope the above information makes sense.
Thanks for any help you can provide.