SimpleNodePool.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. /**
  3. * Elastic Transport
  4. *
  5. * @link https://github.com/elastic/elastic-transport-php
  6. * @copyright Copyright (c) Elasticsearch B.V (https://www.elastic.co)
  7. * @license https://opensource.org/licenses/MIT MIT License
  8. *
  9. * Licensed to Elasticsearch B.V under one or more agreements.
  10. * Elasticsearch B.V licenses this file to you under the MIT License.
  11. * See the LICENSE file in the project root for more information.
  12. */
  13. declare(strict_types=1);
  14. namespace Elastic\Transport\NodePool;
  15. use Elastic\Transport\NodePool\Resurrect\ResurrectInterface;
  16. use Elastic\Transport\NodePool\Selector\SelectorInterface;
  17. use Elastic\Transport\Exception\NoNodeAvailableException;
  18. use function count;
  19. use function shuffle;
  20. use function sprintf;
  21. class SimpleNodePool implements NodePoolInterface
  22. {
  23. /**
  24. * @var array
  25. */
  26. protected $nodes = [];
  27. /**
  28. * @var SelectorInterface
  29. */
  30. protected $selector;
  31. /**
  32. * @var ResurrectInterface
  33. */
  34. protected $resurrect;
  35. public function __construct(SelectorInterface $selector, ResurrectInterface $resurrect)
  36. {
  37. $this->selector = $selector;
  38. $this->resurrect = $resurrect;
  39. }
  40. public function setHosts(array $hosts): self
  41. {
  42. $this->nodes = [];
  43. foreach ($hosts as $host) {
  44. $this->nodes[] = new Node($host);
  45. }
  46. shuffle($this->nodes); // randomize for use different hosts on each execution
  47. $this->selector->setNodes($this->nodes);
  48. return $this;
  49. }
  50. public function nextNode(): Node
  51. {
  52. $totNodes = count($this->nodes);
  53. $dead = 0;
  54. while ($dead < $totNodes) {
  55. $next = $this->selector->nextNode();
  56. if ($next->isAlive()) {
  57. return $next;
  58. }
  59. if ($this->resurrect->ping($next)) {
  60. $next->markAlive(true);
  61. return $next;
  62. }
  63. $dead++;
  64. }
  65. throw new NoNodeAvailableException(sprintf(
  66. 'No alive nodes. All the %d nodes seem to be down.',
  67. $totNodes
  68. ));
  69. }
  70. }