I have a large ADT thread that is currently sending to about 10 destinations. I am contemplating breaking this thread into 3 pass-through threads that would then forward to the end-points.
I have a couple of questions for those who may have undertaken a similar kind of transformation:
1. Since the middle threads will be in the same site and same process as the original sending thread, is there any performance gain to be expected from the new configuration?
2. If so, what is the most efficient way to implement the middle (pass-through) threads (protocol, configuration)?
Inbound —-> middle1 —> dest1, dest2, dest3
Inbound
Thanks.