Interface ElasticSearchIndexing

    • Method Detail

      • runIndexingWorker

        void runIndexingWorker​(List<IndexingCommand> cmds)
        Run a worker to process the IndexingCommand.

        Asynchronous command schedules an indexing job and return.

        Synchronous command execute an indexing job using a new Tx then refresh the index so the document is searchable immediately. if the command is also recursive the children are processed asynchronously.

        If there is more than one cmd the elasticsearch request is done in bulk mode.

        Since:
        7.1
      • runReindexingWorker

        default void runReindexingWorker​(String repositoryName,
                                         String nxql)
        Reindex documents matching the NXQL query, This is done in an asynchronous job.
        Since:
        7.1
      • runReindexingWorker

        void runReindexingWorker​(String repositoryName,
                                 String nxql,
                                 boolean syncAlias)
        Reindex documents matching the NXQL query, This is done in an asynchronous job. When syncAlias is true a call is made to sync the search alias with write alias once indexing is done.
        Since:
        9.3
      • reindexRepository

        void reindexRepository​(String repositoryName)
        Recreate an index and run an async reindexing worker.
        Since:
        9.3
      • indexNonRecursive

        void indexNonRecursive​(IndexingCommand cmd)
        Process the IndexingCommand.

        Send indexing command to Elasticsearch, if the command is synchronous the index is refreshed so the document is searchable immediately. Recursive indexing is not taken in account except for deletion. This is not a transactional operation, a rollback will not discard the executed commands.

        Since:
        7.1