Troubleshooting Oak Indexes troubleshooting-oak-indexes

CAUTION
AEM 6.4 has reached the end of extended support and this documentation is no longer updated. For further details, see our technical support periods. Find the supported versions here.

Slow Re-indexing slow-re-indexing

AEM’s internal re-indexing process collects repository data and stores it in Oak indexes to support performant querying of content. In exceptional circumstances, the process can become slow or even stuck. This page acts as a troubleshooting guide to help identify if the indexing is slow, find the cause, and resolve the issue.

It is important to distinguish between re-indexing that takes an inappropriately long amount of time, and re-indexing that takes a long amount of time because it’s indexing vast quantities of content. For example, the time it takes to index content scales with the amount of content, so large production repositories will take longer to re-index than small development repositories.

See the Best Practices on Queries and Indexing for additional information on when and how to re-index content.

Initial Detection initial-detection

Initial detection slow indexing requires reviewing the IndexStats JMX MBeans. On the affected AEM instance, do the following:

  1. Open the Web Console and click the JMX tab or go to https://<host>:<port>/system/console/jmx (for example, http://localhost:4502/system/console/jmx).

  2. Navigate to the IndexStats Mbeans.

  3. Open the IndexStats MBeans for " async" and " fulltext-async".

  4. For both MBeans, check if the Done timestamp and LastIndexTime timestamp are less than 45 mins from the current time.

  5. For either MBean, if the time value (Done or LastIndexedTime) is greater than 45 mins from the current time, then the index job is either failing or taking too long. This causes the asynchronous indexes to be stale.

Indexing is paused after a forced shutdown indexing-is-paused-after-a-forced-shutdown

A forced shutdown results in AEM suspending asynchronous indexing for up to 30 minutes after the restart, and typically requires another 15 minutes to complete the first re-indexing pass, for a total of approximately 45 minutes (tying back to the Initial Detection timeframe of 45 minutes). In the event you suspect indexing is paused after a forced shutdown:

  1. Firstly, determine if the AEM instance was shut down in a forced manner (the AEM process was forcefully killed, or a power failure occured) and subsequently restarted.

  2. If the forced shutdown occurred, upon restart, AEM automatically suspends re-indexing for up to 30 minutes.

  3. Wait approximately 45 minutes for AEM to resume normal asynchronous indexing operations.

Thread pool overloaded thread-pool-overloaded

NOTE
For AEM 6.1, ensure that AEM 6.1 CFP 11 is installed.

In exceptional circumstances, the thread pool used to manage asychronous indexing may become overloaded. In order to isolate the indexing process, a thread pool can be configured to prevent other AEM work from interfering with Oak’s ability to index content in a timely manner. To do this, you should:

  1. Define a new, isolated thread pool for the Apache Sling Scheduler to use for asynchronous indexing:

    • On the affected AEM instance, navigate to AEM OSGi Web Console>OSGi>Configuration>Apache Sling Scheduler or go to https://<host>:<port>/system/console/configMgr (for example, http://localhost:4502/system/console/configMgr)
    • Add an entry to the “Allowed Thread Pools” field with the value of “oak”.
    • Click Save in the bottom-right to save the changes.

    chlimage_1-119

  2. Verify that the new Apache Sling Scheduler thread pool is registered and displays in the Apache Sling Scheduler Satus web console.

    chlimage_1-120

Observation queue is full observation-queue-is-full

If too many changes and commits are made to the repository in a short amount of time, indexing can be delayed due to a full observation queue. Firstly, determine if the observation queue is full:

  1. Go to the Web Console and click the JMX tab or go to https://<host>:<port>/system/console/jmx (for example, http://localhost:4502/system/console/jmx)

  2. Open the Oak Repository Statistics MBean and determine if any ObservationQueueMaxLength value is greater than 10,000.

    • In normal operations, this maximum value must always eventually reduce to zero (especially in the per second section) so verify that the ObservationQueueMaxLength’s seconds metrics are 0.
    • If the values are 10,000 or more, and increase steadily, this indicates at least one (possibly more) queues cannot be processed as fast as new changes (commits) occur.
    • Each observation queue has a limit (10,000 by default) and if the queue hits that limit, its processing degrades.
    • When using MongoMK, as queue lengths grow large, internal Oak cache performance degrades. This correlation can be seen in an increased missRate for the DocChildren cache in the Consolidated Cache statistics MBean.
  3. To avoid exceeding acceptable observation queue limits, it is recommended to:

Identifying and remediating a stuck re-indexing process identifying-and-remediating-a-stuck-re-indexing-process

Re-indexing can be considered “completely stuck” under two conditions:

  • Re-indexing is very slow, to the point where no significant progress is reported in log files regarding the number of nodes traversed.

    • For example, if there are no messages over the course of an hour, or if progress is so slow that it will take a week or more to finish.
  • Re-indexing is stuck in an endless loop if repeated exceptions appear in the log files (for example, OutOfMemoryException) in the indexing thread. The repetition of the same exception(s) in the log, indicates Oak attempts to index the same thing repeatedly, but fails on the same issue.

To identify and fix a stuck re-indexing process, do the following:

  1. In order to identify the cause of stuck indexing the following information must be collected:

  2. After collecting all the information outlined in Step 1, restart AEM.

    • Restarting AEM may solve the problem in the case of a high concurrent load (observation queue overflow or something similar).
    • If a restart does not solve the problem, open an issue with Adobe Customer Care and provide all the information collected in Step 1.

Safely aborting asynchronous re-indexing safely-aborting-asynchronous-re-indexing

Re-indexing can be safely aborted (stopped before it is completed) via the async, async-reindexand f ulltext-async indexing lanes ( IndexStats Mbean). For more information, also see the Apache Oak documentation on How to Abort Reindexing. Aditionally, take into consideration that:

  • The re-indexing of Lucene and Lucene Property Indexes can be aborted as they are naturally asychronous.
  • The re-indexing of Oak Property Indexes can only be aborted if re-indexing was intiated via the PropertyIndexAsyncReindexMBean.

To safely abort re-indexing, follow these steps:

  1. Identify the IndexStats MBean that controls the re-indexing lane that needs to be stopped.

    • Navigate to the appropriate IndexStats MBean via the JMX console by going to either AEM OSGi Web Console>Main>JMX or https://<host>:<port>/system/console/jmx (for example, http://localhost:4502/system/console/jmx)

    • Open the IndexStats MBean based on the re-indexing lane that you wish to stop ( async, async-reindex, or fulltext-async)

      • To identify the appropriate lane and thus the IndexStats MBean instance, look at the Oak Indexes “async” property. The “async” property will contain the lane name: async, async-reindex, or fulltext-async.
      • The lane is also available by accessing AEM’s Index Manager in the “Async” column. To access the Index manager navigate to Operations>Diagnosis>Index Manager.

    chlimage_1-121

  2. Invoke the abortAndPause() command on the appropriate IndexStats MBean.

  3. Mark the Oak index definition appropriately to prevent resuming re-indexing when the indexing lane resumes.

    • When re-indexing an existing index, set the reindex property to false

      • /oak:index/someExistingIndex@reindex=false
    • Or else, for a new index, either:

      • Set the type property to disabled

        • /oak:index/someNewIndex@type=disabled
      • or remove the index definition entirely

    Commit the changes to the repository when complete.

  4. Finally, resume asychronous indexing on the aborted indexing lane.

    • In the IndexStats MBean that issued the abortAndPause() command in Step 2, invoke the resume()command.

Preventing slow re-indexing preventing-slow-re-indexing

It is best to re-index during quiet periods (for example, not during a large content ingest), and ideally during maintenance windows when AEM’s load is known and controlled. Also, ensure that the re-indexing does not take place during other maintenance activities.

recommendation-more-help
6a71a83d-c2e0-4ce7-a6aa-899aa3885b56