Actualice a Oak 1.4.16 o una versión posterior de Oak como se indica aquí.
Última actualización el
3 may 2021
Problema
Cuando se tiene un cluster AEM + MongoDB multinodo y se cierra el nodo primario de MongoDB y se permite la conmutación, entonces AEM arroja errores en todos los nodos del cluster.
Entorno
AEM 6.2 + Oak 1.4.15 o anterior
Causa
Este es un problema conocido con AEM + Oak 1.4.15 (y versiones anteriores de Oak).
Resolución
-
-
Configure el socketTimeoutMS=60000 en el mongouri, por ejemplo:
#mongodb connection options CQ_JVM_OPTS="${CQ_JVM_OPTS} -Doak.documentMK.maxServerTimeDiffMillis=31000 -Doak.mongo.uri=mongodb://aemuser:redacted@mongo1host:27017,mongo2host:27017,mongo3host:27017/aem-author?authsource=aem-author&authMechanism=MONGODB-CR&replicaSet=aem&readPreference=nearest&w=2&socketTimeoutMS=60000 -Doak.mongo.db=aem-author"
-
Añadir socketKeepAlive=true en la configuración de DocumentNodeStoreService. Por ejemplo:
# This file contains DocumentNodeStoreService configurations and information relating to the apps connection to the Mongo DB customBlobStore=B"true" maxReplicationLagInSecs=L"21600" blobCacheSize=I"16" cache=I"16384" cacheSegmentCount=I"16" cacheStackMoveDistance=I"16" nodeCachePercentage="50" prevDocCachePercentage="10" childrenCachePercentage="20" diffCachePercentage="15" docChildrenCachePercentage="2" persistentCache="./crx-quickstart/repository/cache,size\=2048,binary\=0" journalGCInterval=L"300000" journalGCMaxAge=L"21600000" journalGcBatchSize=I"100" blobGcMaxAgeInSecs=L"86400" socketKeepAlive=B"true"