Replication from Author to publish on /home/groups
Current situation
I am using CQ5.6.1 . We have one author and 2 publish instance.
I made the below setting mentioned below in the repository.xml for all the above instances
<param name="groupMembershipSplitSize" value="5"/>
<param name="autoExpandTree" value="true"/>
<param name="autoExpandSize" value="6"/>
Now I submit an form in publish the Data gets stored under /content/usergenerated in publish and it is reverse replicated from the publish instance to Author .Now we have an even listener in Author that creates the nodes /home/groups/xxx in author ,it adds the email ids based on above configuration to /home/groups/xxx/dsm-forms-subscribers/rep:members/xxxxx
The actual node structure is:-
/home/groups/xxx/xxx-forms-subscribers
/home/groups/xxx/xxx-forms-subscribers/profile
/home/groups/xxx/xxx-forms-subscribers/rep:members
/home/groups/xxx/dsm-forms-subscribers/rep:members/aa.bbbb@xxx.com
/home/groups/xxx/dsm-forms-subscribers/rep:members/aa.bbbb20@xxx.com
/home/groups/xxx/dsm-forms-subscribers/rep:members/aas.bbbb30@xxx.com
Question:-
I need to replicate the partiuclar node which has got updated with the latest email IDS from author to both publish instances
So i meant if the email ID got added to node /home/groups/xxx/dsm-forms-subscribers/rep:members/aa.bbbb@xxx.com then I would want to replicate
only this node. The problem i see is that the email IDS are getting added randomly sometimes in aa.bbbb@xxx.com and sometimes in aa.bbbb20 to rep:members nodes .So can someone suggest as what is way i could find the exact node where it got added??