Oak-run.jar Indexing Use Cases oak-run-jar-indexing-use-cases

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.

Oak-run supports indexing use cases on the command line without having to orchestrate the execution of these use cases via AEM’s JMX console.

The overarching benefits of using the oak-run.jar index command approach for managing Oak indexes are:

  1. Oak-run index command provideds a new indexing toolset for AEM 6.4.
  2. Oak-run decreases time-to-reindex which reduces re-index times on larger repositories.
  3. Oak-run reduces resource consumption during re-indexing in AEM, resulting in overall better system performance.
  4. Oak-run provides out-of-band re-indexing, supporting situations where production must be available, and cannot tolerate maintenance or downtime otherwise required to reindex.

Sections below would provide sample commands. oak-run index command supports all NodeStore and BlobStore setups. The examples provided below are around setups having FileDataStore and SegmentNodeStore.

Use Case 1 - Index Consistency Check usercase1indexconsistencycheck

This is a use case related to index corruption. In some cases it was not possible to determine which of the indexes are corrupt. Therefore, Adobe has provided tooling that:

  1. Performs index consistency checks on all indexes and provides a report on which indexes are valid and which are not valid;
  2. The tooling is usable even if AEM is not accessible;
  3. It is easy to use.

Checking for corrupt indexes can be performed via --index-consistency-check operation:

java -jar oak-run*.jar index --fds-path=/path/to/datastore  /path/to/segmentstore/ --index-consistency-check

This will generate a report in indexing-result/index-consistency-check-report.txt. See below for a sample report:

Valid indexes :
        - /content/oak:index/enablementResourceName
        - /oak:index/cqProjectLucene
        - /oak:index/cqTagLucene
        - /oak:index/lucene
        - /oak:index/ntBaseLucene
        - /oak:index/socialLucene
    Invalid indexes :
        - /oak:index/atDamIndex
        - /oak:index/atIndex
        - /oak:index/cqPageLucene
        - /oak:index/damAssetLucene
        - /oak:index/groups
        - /oak:index/slingeventJob
        - /oak:index/users
        - /oak:index/workflowDataLucene
    Ignored indexes as these are not of type lucene:
        - /oak:index/acPrincipalName
        - /oak:index/active

Benefits uc1benefits

This tooling can now be used by Support and the System Administrator to determine quickly which indexes are corrupt and then reindex them.

Use Case 2 - Index Statistics usecase2indexstatistics

For diagnosing some of the cases around query performance Adobe often required existing index definition, index related statistics from the customer setup. So far this information was scattered across multiple resources. To make troubleshooting easier, Adobe has created tooling that will:

  1. Dump all index definition present on the system in a signle JSON file;

  2. Dump important statistics from existing indexes;

  3. Dump index contents for offline analysis;

  4. Will be usable even if AEM is not accessible

The above operations can now be done via the following operation index commands:

  • --index-info - Collects and dumps various statistics related to the indexes

  • --index-definitions - Collects and dumps index definitions

  • --index-dump - Dumps index content

See below an example of how the commands work in practice:

java -jar oak-run*.jar index --fds-path=/path/to/datastore  /path/to/segmentstore/ --index-info --index-definitions --index-dump

The reports would be generated in indexing-result/index-info.txt and indexing-result/index-definitions.json

In addition same details are provided via the Web Console and would be part of the configuration dump zip. They can be accessed at the following location:

https://serverhost:serverport/system/console/status-oak-index-defn

Benefits uc2benefits

This tooling enables the gathering of all required details related to indexing or query issues quickly and reduce the time spent in extracting this information.

Use Case 3 - Reindexing usecase3reindexing

Depending on the scenarios, in some cases reindexing needs to be performed. Currently the reindexing is done by setting the reindex flag to true in the index definition node via CRXDE or via the Index Manager user interface. After the flag is set, reindexing is done asynchronously.

Some points to note around reindexing:

  • Reindexing is lot slower on DocumentNodeStore setups compared to SegmentNodeStore setups where all content is local;

  • With the current design, while reindexing happens the async indexer is blocked and all other async indexes become stale and do not get update for the duration of indexing. Because of this, if the system is in use, users may not see up to date results;

  • Reindexing involves traversal of the whole repository which can put a high load on the AEM setup and thus impact end user experience;

  • For a DocumentNodeStore installation where reindexing might take a considerable amount of time, if the connection to the Mongo database fails in the middle of the operation, indexing would have to be restarted from scratch;

  • In some cases reindexing can take long time because of text extraction. This is mainly specific for setups having lots of PDF files, where the time spent on text extraction can impact indexing time.

To meet these objectives the oak-run index tooling supports different modes for reindexing which can be used as required. The oak-run index command provides following benefits:

  • out-of-band reindexing - oak-run reindexing can be done separately from a running AEM setup and thus, it minimizes the impact on the AEM instance that is in use;

  • out-of-lane reindexing - The reindexing takes place without impacting indexing indexing operations. This means that the async indexer can continue to index other indexes;

  • Simplified reindex for DocumentNodeStore installations - For DocumentNodeStore installations, reindexing can be done with a single command which ensures that reindexing is done in the most optimal way;

  • Supports updating index definitions and introducing new index definitions

Reindex - DocumentNodeStore reindexdocumentnodestore

For DocumentNodeStore installations reindexing can be done via a single oak-run command:

java -jar oak-run*.jar index --reindex --index-paths=/oak:index/lucene --read-write --fds-path=/path/to/datastore mongodb://server:port/aem

This provides following benefits

  • Minimal impact on running AEM instances. Most of the reads can be done from secondary servers and running AEM caches are not adversaly impacted due to all the traversal required for reindexing;
  • Users can also provide a JSON of a new or updated index via the --index-definitions-file option.

Reindex - SegmentNodeStore reindexsegmentnodestore

For SegmentNodeStore installations reindexing can be done in one of the following ways:

Online Reindex - SegmentNodeStore onlinereindexsegmentnodestore

Follow the established way where reindexing is done via setting reindex flag.

Online Reindex - SegmentNodeStore - The AEM Instance is Running onlinereindexsegmentnodestoretheaeminstanceisrunning

For SegmentNodeStore installations only one process can access segment files in read-write mode. Due to this some operations in oak-run indexing require additional manual steps being taken.

This would involve the following:

  1. Step text

  2. Connect the oak-run to the same repository used by AEM in read only mode and perform indexing. An example on how to achieve this:

    code language-shell
    java -jar oak-run-1.7.6.jar index --fds-path=/Users/dhasler/dev/cq/quickstart/target/crx-quickstart/repository/datastore/ --checkpoint 26b7da38-a699-45b2-82fb-73aa2f9af0e2 --reindex --index-paths=/oak:index/lucene /Users/dhasler/dev/cq/quickstart/target/crx-quickstart/repository/segmentstore/
    
  3. Fnally, import the created index files via the IndexerMBean#importIndex operation from the path where oak-run saved the indexing files after running the above command.

In this scenario you do not have to stop the AEM server or provision any new instance. However, as indexing involves traversal of the whole repository it would increase the I/O load on the installation, negatively impacting runtime performance.

Online Reindex - SegmentNodeStore - The AEM Instance is Shut Down onlinereindexsegmentnodestoreaeminstanceisdown

For SegmentNodeStore installations reindexing can be done via a single oak-run command. However, the AEM instance needs to be shut down.

You can trigger reindexing with the following command:

java -jar oak-run*.jar index --reindex --index-paths=/oak:index/lucene --read-write --fds-path=/path/to/datastore  /path/to/segmentstore/

The difference between this approach and the one explained above is that checkpoint creation and index import are done automatically. The downside is that AEM needs to be down during the process.

Out of Band Reindex - SegmentNodeStore outofbandreindexsegmentnodestore

In this use case, you can perform reindexing on a cloned setup to minimize impact on the running AEM instance:

  1. Create checkpoint via a JMX operation. You can do this by going to the JMX Console and search for CheckpointManager. Then, click on the createCheckpoint(long p1) operation using a high value for expiration in seconds (for example, 2592000).

  2. Copy the crx-quickstart folder to a new machine

  3. Perform reindex via oak-run index command

  4. Copy the generated index files to AEM server

  5. Import the index files via JMX.

Under this use case, it is assumed that the Data Store is accessible on another instance which may not be possible if FileDataStore is placed on a cloud based storage solution like EBS. This excludes the scenario where FileDataStore is also cloned. If the index definition does not perform fulltext indexing, then access to DataStore is not required.

Use Case 4 - Updating Index Definitions usecase4updatingindexdefinitions

Currently, you can shipping index definition changes via ACS Ensure Index package. This allows shipping of the index definitions via content package which later requires reindexing to be performed via setting the reindex flag to true.

This works well for smaller installations where reindexing does not take a long time. However for very large repositories, reindexing will be done in a considerably larger amount of time. For such cases we can now use the oak-run index tooling.

Oak-run now supports providing index definitions in JSON format and creation of index in out-of-band mode where no changes are performed on a live instance.

The process you need to consider for this use case is:

  1. A developer would update the index definitions on a local instance and then generate an index definition JSON file via the --index-definitions option

  2. The updated JSON is then given to the System Administrator

  3. System Administrator follows the out-of-band approach and prepares the index on a different installation

  4. Once this is completed, the generated index files will be imported on a running AEM installation.

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