Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15456319
D17599.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D17599.id.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D17599: After a fulltext write to a particular service fails, keep trying writes to other services
Attached
Detach File
Event Timeline
Log In to Comment