InterviewSolution
| 1. |
In CQ5, what is clustering? |
|
Answer» Clustering is a feature that allows two or more AEM instances to share the same repository view, whether they are running on the same machine or on different machines. All cluster instances should, in theory, have the same content, and requests to any node in the cluster should yield the same result. EVEN when operating a single instance, CQ5 CRX is pre-loaded to run in a cluster. As a result, CQ5 facilitates the deployment of multi-node clusters with minimal effort. Clustering in CQ has the following advantages:
Every repository (or instance) in CQ is REFERRED to as a node. In a Cluster, there is always one master, and the other nodes are referred to as slaves. TCP/IP is used to communicate between the SLAVE and the master. If one of the instances fails, another node takes over as master and the cluster continues to FUNCTION. |
|