Page MenuHomePhabricator

D17599.id.diff
No OneTemporary

D17599.id.diff

diff --git a/src/infrastructure/cluster/search/PhabricatorSearchService.php b/src/infrastructure/cluster/search/PhabricatorSearchService.php
--- a/src/infrastructure/cluster/search/PhabricatorSearchService.php
+++ b/src/infrastructure/cluster/search/PhabricatorSearchService.php
@@ -212,20 +212,30 @@
/**
* (re)index the document: attempt to pass the document to all writable
* fulltext search hosts
- * @throws PhabricatorClusterNoHostForRoleException
*/
public static function reindexAbstractDocument(
- PhabricatorSearchAbstractDocument $doc) {
- $indexed = 0;
+ PhabricatorSearchAbstractDocument $document) {
+
+ $exceptions = array();
foreach (self::getAllServices() as $service) {
- $hosts = $service->getAllHostsForRole('write');
- if (count($hosts)) {
- $service->getEngine()->reindexAbstractDocument($doc);
- $indexed++;
+ if (!$service->isWritable()) {
+ continue;
+ }
+
+ $engine = $service->getEngine();
+ try {
+ $engine->reindexAbstractDocument($document);
+ } catch (Exception $ex) {
+ $exceptions[] = $ex;
}
}
- if ($indexed == 0) {
- throw new PhabricatorClusterNoHostForRoleException('write');
+
+ if ($exceptions) {
+ throw new PhutilAggregateException(
+ pht(
+ 'Writes to search services failed while reindexing document "%s".',
+ $document->getPHID()),
+ $exceptions);
}
}

File Metadata

Mime Type
text/plain
Expires
Mon, Mar 31, 8:39 AM (5 d, 18 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7727611
Default Alt Text
D17599.id.diff (1 KB)

Event Timeline