mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 16:22:43 +01:00
Allow repository service lookups to return an ordered list of service refs
Summary: Ref T13286. To support request retries, allow the service lookup method to return an ordered list of structured service references. Existing callsites continue to immediately discard all but the first reference and pull a URI out of it. Test Plan: Ran `git pull` in a clustered repository with an "up" node and a "down" node, saw 50% serivce failures and 50% clean pulls. Maniphest Tasks: T13286 Differential Revision: https://secure.phabricator.com/D20775
This commit is contained in:
parent
9316cbf7fd
commit
b6420e0f0a
4 changed files with 112 additions and 22 deletions
|
@ -1021,6 +1021,7 @@ phutil_register_library_map(array(
|
||||||
'DiffusionSSHWorkflow' => 'applications/diffusion/ssh/DiffusionSSHWorkflow.php',
|
'DiffusionSSHWorkflow' => 'applications/diffusion/ssh/DiffusionSSHWorkflow.php',
|
||||||
'DiffusionSearchQueryConduitAPIMethod' => 'applications/diffusion/conduit/DiffusionSearchQueryConduitAPIMethod.php',
|
'DiffusionSearchQueryConduitAPIMethod' => 'applications/diffusion/conduit/DiffusionSearchQueryConduitAPIMethod.php',
|
||||||
'DiffusionServeController' => 'applications/diffusion/controller/DiffusionServeController.php',
|
'DiffusionServeController' => 'applications/diffusion/controller/DiffusionServeController.php',
|
||||||
|
'DiffusionServiceRef' => 'applications/diffusion/ref/DiffusionServiceRef.php',
|
||||||
'DiffusionSetPasswordSettingsPanel' => 'applications/diffusion/panel/DiffusionSetPasswordSettingsPanel.php',
|
'DiffusionSetPasswordSettingsPanel' => 'applications/diffusion/panel/DiffusionSetPasswordSettingsPanel.php',
|
||||||
'DiffusionSetupException' => 'applications/diffusion/exception/DiffusionSetupException.php',
|
'DiffusionSetupException' => 'applications/diffusion/exception/DiffusionSetupException.php',
|
||||||
'DiffusionSourceHyperlinkEngineExtension' => 'applications/diffusion/engineextension/DiffusionSourceHyperlinkEngineExtension.php',
|
'DiffusionSourceHyperlinkEngineExtension' => 'applications/diffusion/engineextension/DiffusionSourceHyperlinkEngineExtension.php',
|
||||||
|
@ -6967,6 +6968,7 @@ phutil_register_library_map(array(
|
||||||
'DiffusionSSHWorkflow' => 'PhabricatorSSHWorkflow',
|
'DiffusionSSHWorkflow' => 'PhabricatorSSHWorkflow',
|
||||||
'DiffusionSearchQueryConduitAPIMethod' => 'DiffusionQueryConduitAPIMethod',
|
'DiffusionSearchQueryConduitAPIMethod' => 'DiffusionQueryConduitAPIMethod',
|
||||||
'DiffusionServeController' => 'DiffusionController',
|
'DiffusionServeController' => 'DiffusionController',
|
||||||
|
'DiffusionServiceRef' => 'Phobject',
|
||||||
'DiffusionSetPasswordSettingsPanel' => 'PhabricatorSettingsPanel',
|
'DiffusionSetPasswordSettingsPanel' => 'PhabricatorSettingsPanel',
|
||||||
'DiffusionSetupException' => 'Exception',
|
'DiffusionSetupException' => 'Exception',
|
||||||
'DiffusionSourceHyperlinkEngineExtension' => 'PhabricatorRemarkupHyperlinkEngineExtension',
|
'DiffusionSourceHyperlinkEngineExtension' => 'PhabricatorRemarkupHyperlinkEngineExtension',
|
||||||
|
|
48
src/applications/diffusion/ref/DiffusionServiceRef.php
Normal file
48
src/applications/diffusion/ref/DiffusionServiceRef.php
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
final class DiffusionServiceRef
|
||||||
|
extends Phobject {
|
||||||
|
|
||||||
|
private $uri;
|
||||||
|
private $protocol;
|
||||||
|
private $isWritable;
|
||||||
|
private $devicePHID;
|
||||||
|
private $deviceName;
|
||||||
|
|
||||||
|
private function __construct() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function newFromDictionary(array $map) {
|
||||||
|
$ref = new self();
|
||||||
|
|
||||||
|
$ref->uri = $map['uri'];
|
||||||
|
$ref->isWritable = $map['writable'];
|
||||||
|
$ref->devicePHID = $map['devicePHID'];
|
||||||
|
$ref->protocol = $map['protocol'];
|
||||||
|
$ref->deviceName = $map['device'];
|
||||||
|
|
||||||
|
return $ref;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function isWritable() {
|
||||||
|
return $this->isWritable;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getDevicePHID() {
|
||||||
|
return $this->devicePHID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getURI() {
|
||||||
|
return $this->uri;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getProtocol() {
|
||||||
|
return $this->protocol;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getDeviceName() {
|
||||||
|
return $this->deviceName;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -73,13 +73,13 @@ abstract class DiffusionSSHWorkflow extends PhabricatorSSHWorkflow {
|
||||||
return $this->shouldProxy;
|
return $this->shouldProxy;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function getProxyCommand($for_write) {
|
final protected function getAlmanacServiceRefs($for_write) {
|
||||||
$viewer = $this->getSSHUser();
|
$viewer = $this->getSSHUser();
|
||||||
$repository = $this->getRepository();
|
$repository = $this->getRepository();
|
||||||
|
|
||||||
$is_cluster_request = $this->getIsClusterRequest();
|
$is_cluster_request = $this->getIsClusterRequest();
|
||||||
|
|
||||||
$uri = $repository->getAlmanacServiceURI(
|
$refs = $repository->getAlmanacServiceRefs(
|
||||||
$viewer,
|
$viewer,
|
||||||
array(
|
array(
|
||||||
'neverProxy' => $is_cluster_request,
|
'neverProxy' => $is_cluster_request,
|
||||||
|
@ -89,14 +89,28 @@ abstract class DiffusionSSHWorkflow extends PhabricatorSSHWorkflow {
|
||||||
'writable' => $for_write,
|
'writable' => $for_write,
|
||||||
));
|
));
|
||||||
|
|
||||||
if (!$uri) {
|
if (!$refs) {
|
||||||
throw new Exception(
|
throw new Exception(
|
||||||
pht(
|
pht(
|
||||||
'Failed to generate an intracluster proxy URI even though this '.
|
'Failed to generate an intracluster proxy URI even though this '.
|
||||||
'request was routed as a proxy request.'));
|
'request was routed as a proxy request.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$uri = new PhutilURI($uri);
|
return $refs;
|
||||||
|
}
|
||||||
|
|
||||||
|
final protected function getProxyCommand($for_write) {
|
||||||
|
$refs = $this->getAlmanacServiceRefs($for_write);
|
||||||
|
|
||||||
|
$ref = head($refs);
|
||||||
|
|
||||||
|
return $this->getProxyCommandForServiceRef($ref);
|
||||||
|
}
|
||||||
|
|
||||||
|
final protected function getProxyCommandForServiceRef(
|
||||||
|
DiffusionServiceRef $ref) {
|
||||||
|
|
||||||
|
$uri = new PhutilURI($ref->getURI());
|
||||||
|
|
||||||
$username = AlmanacKeys::getClusterSSHUser();
|
$username = AlmanacKeys::getClusterSSHUser();
|
||||||
if ($username === null) {
|
if ($username === null) {
|
||||||
|
|
|
@ -1842,6 +1842,20 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
|
||||||
PhabricatorUser $viewer,
|
PhabricatorUser $viewer,
|
||||||
array $options) {
|
array $options) {
|
||||||
|
|
||||||
|
$refs = $this->getAlmanacServiceRefs($viewer, $options);
|
||||||
|
|
||||||
|
if (!$refs) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
$ref = head($refs);
|
||||||
|
return $ref->getURI();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getAlmanacServiceRefs(
|
||||||
|
PhabricatorUser $viewer,
|
||||||
|
array $options) {
|
||||||
|
|
||||||
PhutilTypeSpec::checkMap(
|
PhutilTypeSpec::checkMap(
|
||||||
$options,
|
$options,
|
||||||
array(
|
array(
|
||||||
|
@ -1856,7 +1870,7 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
|
||||||
|
|
||||||
$cache_key = $this->getAlmanacServiceCacheKey();
|
$cache_key = $this->getAlmanacServiceCacheKey();
|
||||||
if (!$cache_key) {
|
if (!$cache_key) {
|
||||||
return null;
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
$cache = PhabricatorCaches::getMutableStructureCache();
|
$cache = PhabricatorCaches::getMutableStructureCache();
|
||||||
|
@ -1869,7 +1883,7 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($uris === null) {
|
if ($uris === null) {
|
||||||
return null;
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
$local_device = AlmanacKeys::getDeviceID();
|
$local_device = AlmanacKeys::getDeviceID();
|
||||||
|
@ -1893,7 +1907,7 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
|
||||||
|
|
||||||
if ($local_device && $never_proxy) {
|
if ($local_device && $never_proxy) {
|
||||||
if ($uri['device'] == $local_device) {
|
if ($uri['device'] == $local_device) {
|
||||||
return null;
|
return array();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1954,15 +1968,20 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$refs = array();
|
||||||
|
foreach ($results as $result) {
|
||||||
|
$refs[] = DiffusionServiceRef::newFromDictionary($result);
|
||||||
|
}
|
||||||
|
|
||||||
// If we require a writable device, remove URIs which aren't writable.
|
// If we require a writable device, remove URIs which aren't writable.
|
||||||
if ($writable) {
|
if ($writable) {
|
||||||
foreach ($results as $key => $uri) {
|
foreach ($refs as $key => $ref) {
|
||||||
if (!$uri['writable']) {
|
if (!$ref->isWritable()) {
|
||||||
unset($results[$key]);
|
unset($results[$key]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$results) {
|
if (!$refs) {
|
||||||
throw new Exception(
|
throw new Exception(
|
||||||
pht(
|
pht(
|
||||||
'This repository ("%s") is not writable with the given '.
|
'This repository ("%s") is not writable with the given '.
|
||||||
|
@ -1974,23 +1993,30 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($writable) {
|
if ($writable) {
|
||||||
$results = $this->sortWritableAlmanacServiceURIs($results);
|
$refs = $this->sortWritableAlmanacServiceRefs($refs);
|
||||||
} else {
|
} else {
|
||||||
shuffle($results);
|
$refs = $this->sortReadableAlmanacServiceRefs($refs);
|
||||||
}
|
}
|
||||||
|
|
||||||
$result = head($results);
|
return array_values($refs);
|
||||||
return $result['uri'];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private function sortWritableAlmanacServiceURIs(array $results) {
|
private function sortReadableAlmanacServiceRefs(array $refs) {
|
||||||
|
assert_instances_of($refs, 'DiffusionServiceRef');
|
||||||
|
shuffle($refs);
|
||||||
|
return $refs;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function sortWritableAlmanacServiceRefs(array $refs) {
|
||||||
|
assert_instances_of($refs, 'DiffusionServiceRef');
|
||||||
|
|
||||||
// See T13109 for discussion of how this method routes requests.
|
// See T13109 for discussion of how this method routes requests.
|
||||||
|
|
||||||
// In the absence of other rules, we'll send traffic to devices randomly.
|
// In the absence of other rules, we'll send traffic to devices randomly.
|
||||||
// We also want to select randomly among nodes which are equally good
|
// We also want to select randomly among nodes which are equally good
|
||||||
// candidates to receive the write, and accomplish that by shuffling the
|
// candidates to receive the write, and accomplish that by shuffling the
|
||||||
// list up front.
|
// list up front.
|
||||||
shuffle($results);
|
shuffle($refs);
|
||||||
|
|
||||||
$order = array();
|
$order = array();
|
||||||
|
|
||||||
|
@ -2002,8 +2028,8 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
|
||||||
$this->getPHID());
|
$this->getPHID());
|
||||||
if ($writer) {
|
if ($writer) {
|
||||||
$device_phid = $writer->getWriteProperty('devicePHID');
|
$device_phid = $writer->getWriteProperty('devicePHID');
|
||||||
foreach ($results as $key => $result) {
|
foreach ($refs as $key => $ref) {
|
||||||
if ($result['devicePHID'] === $device_phid) {
|
if ($ref->getDevicePHID() === $device_phid) {
|
||||||
$order[] = $key;
|
$order[] = $key;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2025,8 +2051,8 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
|
||||||
}
|
}
|
||||||
$max_devices = array_fuse($max_devices);
|
$max_devices = array_fuse($max_devices);
|
||||||
|
|
||||||
foreach ($results as $key => $result) {
|
foreach ($refs as $key => $ref) {
|
||||||
if (isset($max_devices[$result['devicePHID']])) {
|
if (isset($max_devices[$ref->getDevicePHID()])) {
|
||||||
$order[] = $key;
|
$order[] = $key;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2034,9 +2060,9 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
|
||||||
|
|
||||||
// Reorder the results, putting any we've selected as preferred targets for
|
// Reorder the results, putting any we've selected as preferred targets for
|
||||||
// the write at the head of the list.
|
// the write at the head of the list.
|
||||||
$results = array_select_keys($results, $order) + $results;
|
$refs = array_select_keys($refs, $order) + $refs;
|
||||||
|
|
||||||
return $results;
|
return $refs;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function supportsSynchronization() {
|
public function supportsSynchronization() {
|
||||||
|
|
Loading…
Reference in a new issue