I want to know which loadbalancing algorithm(s) are used in AEM dispatcher ?
Solved! Go to Solution.
Views
Replies
Total Likes
The load balancing is not performed based on the number of requests attended by each server, but on the time it took to process them for the category they belong to.
Reference :
How is Load Balancing performed
Views
Replies
Total Likes
The load balancing is not performed based on the number of requests attended by each server, but on the time it took to process them for the category they belong to.
Reference :
How is Load Balancing performed
Views
Replies
Total Likes
Also, you can change the load balancing process by defining some statistics,unavailablePenalty and
stickyConnectionsFor
The /unavailablePenalty property sets the time (in tenths of a second) that is applied to the render statistics when a connection to the render fails. Dispatcher adds the time to the statistics category that matches the requested URI.
The /stickyConnectionsFor property defines one folder that contains sticky documents; this will be accessed using the URL. Dispatcher sends all requests, from a single user, that are in this folder to the same render instance. Sticky connections ensure that session data is present and consistent for all documents. This mechanism uses the
renderid
cookie.
More details at [1]
Views
Replies
Total Likes