-
Notifications
You must be signed in to change notification settings - Fork 973
/
SniffingConnectionPool.php
155 lines (126 loc) · 4.22 KB
/
SniffingConnectionPool.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
namespace Elasticsearch\ConnectionPool;
use Elasticsearch\Common\Exceptions\Curl\OperationTimeoutException;
use Elasticsearch\Common\Exceptions\NoNodesAvailableException;
use Elasticsearch\ConnectionPool\Selectors\SelectorInterface;
use Elasticsearch\Connections\Connection;
use Elasticsearch\Connections\ConnectionFactoryInterface;
class SniffingConnectionPool extends AbstractConnectionPool implements ConnectionPoolInterface
{
/** @var int */
private $sniffingInterval = 300;
/** @var int */
private $nextSniff = -1;
/**
* {@inheritdoc}
*/
public function __construct($connections, SelectorInterface $selector, ConnectionFactoryInterface $factory, $connectionPoolParams)
{
parent::__construct($connections, $selector, $factory, $connectionPoolParams);
$this->setConnectionPoolParams($connectionPoolParams);
$this->nextSniff = time() + $this->sniffingInterval;
}
/**
* @param bool $force
*
* @return Connection
* @throws \Elasticsearch\Common\Exceptions\NoNodesAvailableException
*/
public function nextConnection($force = false)
{
$this->sniff($force);
$size = count($this->connections);
while ($size--) {
/** @var Connection $connection */
$connection = $this->selector->select($this->connections);
if ($connection->isAlive() === true || $connection->ping() === true) {
return $connection;
}
}
if ($force === true) {
throw new NoNodesAvailableException("No alive nodes found in your cluster");
}
return $this->nextConnection(true);
}
public function scheduleCheck()
{
$this->nextSniff = -1;
}
/**
* @param bool $force
*/
private function sniff($force = false)
{
if ($force === false && $this->nextSniff >= time()) {
return;
}
$total = count($this->connections);
while ($total--) {
/** @var Connection $connection */
$connection = $this->selector->select($this->connections);
if ($connection->isAlive() xor $force) {
continue;
}
if ($this->sniffConnection($connection) === true) {
return;
}
}
if ($force === true) {
return;
}
foreach ($this->seedConnections as $connection) {
if ($this->sniffConnection($connection) === true) {
return;
}
}
}
/**
* @param Connection $connection
* @return bool
*/
private function sniffConnection(Connection $connection)
{
try {
$response = $connection->sniff();
} catch (OperationTimeoutException $exception) {
return false;
}
$nodes = $this->parseClusterState($connection->getTransportSchema(), $response);
if (count($nodes) === 0) {
return false;
}
$this->connections = array();
foreach ($nodes as $node) {
$nodeDetails = array(
'host' => $node['host'],
'port' => $node['port']
);
$this->connections[] = $this->connectionFactory->create($nodeDetails);
}
$this->nextSniff = time() + $this->sniffingInterval;
return true;
}
private function parseClusterState($transportSchema, $nodeInfo)
{
$pattern = '/\/([^:]*):([0-9]+)\]/';
$schemaAddress = $transportSchema . '_address';
$hosts = array();
foreach ($nodeInfo['nodes'] as $node) {
if (isset($node[$schemaAddress]) === true) {
if (preg_match($pattern, $node[$schemaAddress], $match) === 1) {
$hosts[] = array(
'host' => $match[1],
'port' => (int) $match[2],
);
}
}
}
return $hosts;
}
private function setConnectionPoolParams($connectionPoolParams)
{
if (isset($connectionPoolParams['sniffingInterval']) === true) {
$this->sniffingInterval = $connectionPoolParams['sniffingInterval'];
}
}
}