| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- namespace Elasticsearch\ConnectionPool;
- use Elasticsearch\Common\Exceptions\NoNodesAvailableException;
- use Elasticsearch\ConnectionPool\Selectors\SelectorInterface;
- use Elasticsearch\Connections\Connection;
- use Elasticsearch\Connections\ConnectionFactoryInterface;
- class StaticNoPingConnectionPool extends AbstractConnectionPool implements ConnectionPoolInterface
- {
- /**
- * @var int
- */
- private $pingTimeout = 60;
- /**
- * @var int
- */
- private $maxPingTimeout = 3600;
- /**
- * {@inheritdoc}
- */
- public function __construct($connections, SelectorInterface $selector, ConnectionFactoryInterface $factory, $connectionPoolParams)
- {
- parent::__construct($connections, $selector, $factory, $connectionPoolParams);
- }
- /**
- * @param bool $force
- *
- * @return Connection
- * @throws \Elasticsearch\Common\Exceptions\NoNodesAvailableException
- */
- public function nextConnection($force = false)
- {
- $total = count($this->connections);
- while ($total--) {
- /** @var Connection $connection */
- $connection = $this->selector->select($this->connections);
- if ($connection->isAlive() === true) {
- return $connection;
- }
- if ($this->readyToRevive($connection) === true) {
- return $connection;
- }
- }
- throw new NoNodesAvailableException("No alive nodes found in your cluster");
- }
- public function scheduleCheck()
- {
- }
- /**
- * @param \Elasticsearch\Connections\Connection $connection
- *
- * @return bool
- */
- private function readyToRevive(Connection $connection)
- {
- $timeout = min(
- $this->pingTimeout * pow(2, $connection->getPingFailures()),
- $this->maxPingTimeout
- );
- if ($connection->getLastPing() + $timeout < time()) {
- return true;
- } else {
- return false;
- }
- }
- }
|