Hi,
I am using CQ 5.56 as clustering running as master and slave.
Is there any api to identity which is master or salve?
Thanks
Solved! Go to Solution.
Views
Replies
Total Likes
Hi
Please have a look at this article:-
Link:-http://therealcq.blogspot.in/2014/05/cq5aem-how-do-i-detect-from.html
// How do I detect from a SlingServlet whether it is running on the Master or Slave instance
Basically you can add a message in a log like this:
final String isMaster = repository.getDescriptor("crx.cluster.master");
return StringUtils.isNotBlank(isMaster) && Boolean.parseBoolean(isMaster);
I hope this would help you.
~kautuk
Views
Replies
Total Likes
Hi
Please have a look at this article:-
Link:-http://therealcq.blogspot.in/2014/05/cq5aem-how-do-i-detect-from.html
// How do I detect from a SlingServlet whether it is running on the Master or Slave instance
Basically you can add a message in a log like this:
final String isMaster = repository.getDescriptor("crx.cluster.master");
return StringUtils.isNotBlank(isMaster) && Boolean.parseBoolean(isMaster);
I hope this would help you.
~kautuk
Views
Replies
Total Likes
Please check [1] for some hints how to do that (including sample code).
Jörg
[1] https://helpx.adobe.com/experience-manager/kb/create-cluster-aware-osgi-service.html
Views
Replies
Total Likes
Views
Likes
Replies