2015-07-16 08:18:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invokes an immediate reindex
|
|
|
|
*
|
|
|
|
* Internally batches of records will be invoked via shell tasks in the background
|
|
|
|
*/
|
2015-11-21 07:19:20 +01:00
|
|
|
class SolrReindexImmediateHandler extends SolrReindexBase
|
|
|
|
{
|
|
|
|
public function triggerReindex(LoggerInterface $logger, $batchSize, $taskName, $classes = null)
|
|
|
|
{
|
|
|
|
$this->runReindex($logger, $batchSize, $taskName, $classes);
|
|
|
|
}
|
2015-07-16 08:18:04 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
protected function processIndex(
|
|
|
|
LoggerInterface $logger, SolrIndex $indexInstance, $batchSize, $taskName, $classes = null
|
|
|
|
) {
|
|
|
|
parent::processIndex($logger, $indexInstance, $batchSize, $taskName, $classes);
|
2015-07-16 08:18:04 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
// Immediate processor needs to immediately commit after each index
|
|
|
|
$indexInstance->getService()->commit();
|
|
|
|
}
|
2015-07-16 08:18:04 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
/**
|
|
|
|
* Process a single group.
|
|
|
|
*
|
|
|
|
* Without queuedjobs, it's necessary to shell this out to a background task as this is
|
|
|
|
* very memory intensive.
|
|
|
|
*
|
|
|
|
* The sub-process will then invoke $processor->runGroup() in {@see Solr_Reindex::doReindex}
|
|
|
|
*
|
|
|
|
* @param LoggerInterface $logger
|
|
|
|
* @param SolrIndex $indexInstance Index instance
|
|
|
|
* @param array $state Variant state
|
|
|
|
* @param string $class Class to index
|
|
|
|
* @param int $groups Total groups
|
|
|
|
* @param int $group Index of group to process
|
|
|
|
* @param string $taskName Name of task script to run
|
|
|
|
*/
|
|
|
|
protected function processGroup(
|
|
|
|
LoggerInterface $logger, SolrIndex $indexInstance, $state, $class, $groups, $group, $taskName
|
|
|
|
) {
|
|
|
|
// Build state
|
|
|
|
$statevar = json_encode($state);
|
|
|
|
if (strpos(PHP_OS, "WIN") !== false) {
|
|
|
|
$statevar = '"'.str_replace('"', '\\"', $statevar).'"';
|
|
|
|
} else {
|
|
|
|
$statevar = "'".$statevar."'";
|
|
|
|
}
|
2015-07-16 08:18:04 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
// Build script
|
|
|
|
$indexName = $indexInstance->getIndexName();
|
2016-03-22 10:13:46 +01:00
|
|
|
$indexClass = get_class($indexInstance);
|
2015-11-21 07:19:20 +01:00
|
|
|
$scriptPath = sprintf("%s%sframework%scli-script.php", BASE_PATH, DIRECTORY_SEPARATOR, DIRECTORY_SEPARATOR);
|
|
|
|
$scriptTask = "php {$scriptPath} dev/tasks/{$taskName}";
|
2016-03-22 10:13:46 +01:00
|
|
|
$cmd = "{$scriptTask} index={$indexClass} class={$class} group={$group} groups={$groups} variantstate={$statevar}";
|
2015-11-21 07:19:20 +01:00
|
|
|
$cmd .= " verbose=1 2>&1";
|
|
|
|
$logger->info("Running '$cmd'");
|
2015-07-16 08:18:04 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
// Execute script via shell
|
|
|
|
$res = $logger ? passthru($cmd) : `$cmd`;
|
|
|
|
if ($logger) {
|
|
|
|
$logger->info(preg_replace('/\r\n|\n/', '$0 ', $res));
|
|
|
|
}
|
2015-07-16 08:18:04 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
// If we're in dev mode, commit more often for fun and profit
|
|
|
|
if (Director::isDev()) {
|
2016-03-22 10:13:46 +01:00
|
|
|
Solr::service($indexClass)->commit();
|
2015-11-21 07:19:20 +01:00
|
|
|
}
|
2015-07-16 08:18:04 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
// This will slow down things a tiny bit, but it is done so that we don't timeout to the database during a reindex
|
|
|
|
DB::query('SELECT 1');
|
|
|
|
}
|
2015-07-16 08:18:04 +02:00
|
|
|
}
|