CQ 5.56 How to identify Master or slave
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
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
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.