Hi @arindam6600
As far as I understand you are talking about the below setup. Please confirm
A multi-legged topology would have one Dispatcher per Publish server. A dedicated (hardware) load balancer sits in front of the AEM infrastructure dispatching the requests to these two (or more) legs:
For each Dispatcher, configure the dispatcher.any file with the appropriate settings. This file is typically located in the Apache HTTP Server's conf directory. Below is an example snippet of a Dispatcher configuration:
/clientheaders {
...
}
/renders {
/rend01 {
...
/farm {
/publish {
/localhost {
"hostname" "publish-instance1"
"port" "4503"
...
}
/localhost {
"hostname" "publish-instance2"
"port" "4503"
...
}
...
}
}
}
}