Package org.hibernate.search.batchindexing.impl

Source Code of org.hibernate.search.batchindexing.impl.BatchCoordinator

/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2010, Red Hat, Inc. and/or its affiliates or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors.  All third-party contributions are
* distributed under license by Red Hat, Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA  02110-1301  USA
*/
package org.hibernate.search.batchindexing.impl;

import java.util.Set;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;

import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.search.engine.spi.SearchFactoryImplementor;
import org.hibernate.search.util.logging.impl.Log;
import org.hibernate.CacheMode;
import org.hibernate.search.backend.PurgeAllLuceneWork;
import org.hibernate.search.backend.impl.batch.BatchBackend;
import org.hibernate.search.batchindexing.MassIndexerProgressMonitor;
import org.hibernate.search.util.logging.impl.LoggerFactory;

/**
* Makes sure that several different BatchIndexingWorkspace(s)
* can be started concurrently, sharing the same batch-backend
* and IndexWriters.
*
* @author Sanne Grinovero
*/
public class BatchCoordinator extends ErrorHandledRunnable {

  private static final Log log = LoggerFactory.make();

  private final Class<?>[] rootEntities; //entity types to reindex excluding all subtypes of each-other
  private final SessionFactoryImplementor sessionFactory;
  private final int typesToIndexInParallel;
  private final int documentBuilderThreads;
  private final CacheMode cacheMode;
  private final int objectLoadingBatchSize;
  private final boolean optimizeAtEnd;
  private final boolean purgeAtStart;
  private final boolean optimizeAfterPurge;
  private final CountDownLatch endAllSignal;
  private final MassIndexerProgressMonitor monitor;
  private final long objectsLimit;
  private final int idFetchSize;

  public BatchCoordinator(Set<Class<?>> rootEntities,
              SearchFactoryImplementor searchFactoryImplementor,
              SessionFactoryImplementor sessionFactory,
              int typesToIndexInParallel,
              int documentBuilderThreads,
              CacheMode cacheMode,
              int objectLoadingBatchSize,
              long objectsLimit,
              boolean optimizeAtEnd,
              boolean purgeAtStart,
              boolean optimizeAfterPurge,
              MassIndexerProgressMonitor monitor,
              int idFetchSize) {
    super( searchFactoryImplementor );
    this.idFetchSize = idFetchSize;
    this.rootEntities = rootEntities.toArray( new Class<?>[rootEntities.size()] );
    this.sessionFactory = sessionFactory;
    this.typesToIndexInParallel = typesToIndexInParallel;
    this.documentBuilderThreads = documentBuilderThreads;
    this.cacheMode = cacheMode;
    this.objectLoadingBatchSize = objectLoadingBatchSize;
    this.optimizeAtEnd = optimizeAtEnd;
    this.purgeAtStart = purgeAtStart;
    this.optimizeAfterPurge = optimizeAfterPurge;
    this.monitor = monitor;
    this.objectsLimit = objectsLimit;
    this.endAllSignal = new CountDownLatch( rootEntities.size() );
  }

  @Override
  public void runWithErrorHandler() {
    final BatchBackend backend = searchFactoryImplementor.makeBatchBackend( monitor );
    try {
      beforeBatch( backend ); // purgeAll and pre-optimize activities
      doBatchWork( backend );
      afterBatch( backend );
    }
    catch (InterruptedException e) {
      log.interruptedBatchIndexing();
      Thread.currentThread().interrupt();
    }
    finally {
      monitor.indexingCompleted();
    }
  }

  /**
   * Will spawn a thread for each type in rootEntities, they will all re-join
   * on endAllSignal when finished.
   * @param backend
   *
   * @throws InterruptedException if interrupted while waiting for endAllSignal.
   */
  private void doBatchWork(BatchBackend backend) throws InterruptedException {
    ExecutorService executor = Executors.newFixedThreadPool( typesToIndexInParallel, "BatchIndexingWorkspace" );
    for ( Class<?> type : rootEntities ) {
      executor.execute(
          new BatchIndexingWorkspace(
              searchFactoryImplementor, sessionFactory, type,
              documentBuilderThreads,
              cacheMode, objectLoadingBatchSize, endAllSignal,
              monitor, backend, objectsLimit, idFetchSize
          )
      );
    }
    executor.shutdown();
    endAllSignal.await(); //waits for the executor to finish
  }

  /**
   * Operations to do after all subthreads finished their work on index
   * @param backend
   */
  private void afterBatch(BatchBackend backend) {
    Set<Class<?>> targetedClasses = searchFactoryImplementor.getIndexedTypesPolymorphic( rootEntities );
    if ( this.optimizeAtEnd ) {
      backend.optimize( targetedClasses );
    }
    backend.flush( targetedClasses );
  }

  /**
   * Optional operations to do before the multiple-threads start indexing
   * @param backend
   */
  private void beforeBatch(BatchBackend backend) {
    if ( this.purgeAtStart ) {
      //purgeAll for affected entities
      Set<Class<?>> targetedClasses = searchFactoryImplementor.getIndexedTypesPolymorphic( rootEntities );
      for ( Class<?> clazz : targetedClasses ) {
        //needs do be in-sync work to make sure we wait for the end of it.
        backend.doWorkInSync( new PurgeAllLuceneWork( clazz ) );
      }
      if ( this.optimizeAfterPurge ) {
        backend.optimize( targetedClasses );
      }
    }
  }

}
TOP

Related Classes of org.hibernate.search.batchindexing.impl.BatchCoordinator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.