-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathUpdateAliasJob.php
More file actions
198 lines (176 loc) · 6.36 KB
/
UpdateAliasJob.php
File metadata and controls
198 lines (176 loc) · 6.36 KB
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?php
declare(strict_types=1);
namespace Flowpack\ElasticSearch\ContentRepositoryQueueIndexer;
/*
* This file is part of the Flowpack.ElasticSearch.ContentRepositoryQueueIndexer package.
*
* (c) Contributors of the Neos Project - www.neos.io
*
* This package is Open Source Software. For the full copyright and license
* information, please view the LICENSE file which was distributed with this
* source code.
*/
use Flowpack\ElasticSearch\ContentRepositoryAdaptor\Indexer\NodeIndexer;
use Flowpack\ElasticSearch\Transfer\Exception\ApiException;
use Flowpack\JobQueue\Common\Job\JobInterface;
use Flowpack\JobQueue\Common\Queue\Message;
use Flowpack\JobQueue\Common\Queue\QueueInterface;
use Neos\Flow\Annotations as Flow;
use Neos\Flow\Log\Utility\LogEnvironment;
use Neos\Flow\Utility\Algorithms;
use Psr\Log\LoggerInterface;
use Psr\Http\Message\ResponseInterface;
class UpdateAliasJob implements JobInterface
{
/**
* @Flow\Inject
* @var LoggerInterface
*/
protected $logger;
/**
* @var NodeIndexer
* @Flow\Inject
*/
protected $nodeIndexer;
/**
* @var string
*/
protected $identifier;
/**
* @var string
*/
protected $indexPostfix;
/**
* @Flow\InjectConfiguration(path="acceptedFailedJobs")
* @var int
*/
protected $acceptedFailedJobs = -1;
/**
* @Flow\InjectConfiguration(path="cleanupIndicesAfterSuccessfulSwitch")
* @var bool
*/
protected $cleanupIndicesAfterSuccessfulSwitch = true;
/**
* @var array|null
*/
protected $dimensionValues;
/**
* @param string $indexPostfix
* @param array $dimensionValues
* @throws \Exception
*/
public function __construct($indexPostfix, array $dimensionValues = [])
{
$this->identifier = Algorithms::generateRandomString(24);
$this->indexPostfix = $indexPostfix;
$this->dimensionValues = $dimensionValues;
}
/**
* @param QueueInterface $queue
* @param Message $message The original message
* @return boolean TRUE if the job was executed successfully and the message should be finished
* @throws \Exception
* @throws \Flowpack\ElasticSearch\ContentRepositoryAdaptor\Exception
* @throws \Flowpack\ElasticSearch\Transfer\Exception\ApiException
*/
public function execute(QueueInterface $queue, Message $message): bool
{
if ($this->shouldIndexBeSwitched($queue)) {
$this->nodeIndexer->setIndexNamePostfix($this->indexPostfix);
$this->nodeIndexer->setDimensions($this->dimensionValues);
$this->nodeIndexer->updateIndexAlias();
$this->nodeIndexer->updateMainAlias();
if ($this->cleanupIndicesAfterSuccessfulSwitch === true) {
$this->cleanupOldIndices();
}
$this->logger->info(sprintf('Index was switched successfully to %s', $this->indexPostfix), LogEnvironment::fromMethodName(__METHOD__));
} else {
$this->logger->error(sprintf('Index %s was not switched due to %s failed batches in the current queue"', $this->indexPostfix, $queue->countFailed()), LogEnvironment::fromMethodName(__METHOD__));
}
return true;
}
/**
* Get an optional identifier for the job
*
* @return string A job identifier
*/
public function getIdentifier(): string
{
return $this->identifier;
}
/**
* Get a readable label for the job
*
* @return string A label for the job
*/
public function getLabel(): string
{
return sprintf('ElasticSearch Indexing Job (%s)', $this->getIdentifier());
}
/**
* @throws \Flowpack\ElasticSearch\ContentRepositoryAdaptor\Exception
*/
protected function cleanupOldIndices(): void
{
try {
$indicesToBeRemoved = $this->nodeIndexer->removeOldIndices();
if (count($indicesToBeRemoved) > 0) {
foreach ($indicesToBeRemoved as $indexToBeRemoved) {
$this->logger->info(sprintf('Old index "%s" was successfully removed', $indexToBeRemoved), LogEnvironment::fromMethodName(__METHOD__));
}
}
} catch (ApiException $exception) {
$responseBody = $exception->getResponse() instanceof ResponseInterface
? $exception->getResponse()->getBody()->__toString()
: (string) $exception->getResponse();
$response = json_decode($responseBody, true, 512, JSON_THROW_ON_ERROR);
if (is_array($response)) {
$this->logger->error(
sprintf(
'Old indices for alias %s could not be removed. ElasticSearch responded with status %s, saying "%s: %s"',
$this->indexPostfix,
$response['status'],
$response['error']['type'],
$response['error']['reason']
),
LogEnvironment::fromMethodName(__METHOD__)
);
} elseif ($response->error instanceof \stdClass) {
$this->logger->error(
sprintf(
'Old indices for alias %s could not be removed. ElasticSearch responded with status %s, saying "%s: %s"',
$this->indexPostfix,
$response->status,
$response->error->type,
$response->error->reason
),
LogEnvironment::fromMethodName(__METHOD__)
);
} else {
$this->logger->error(
sprintf(
'Old indices for alias %s could not be removed. ElasticSearch responded with status %s, saying "%s"',
$this->indexPostfix,
$response->status,
$response->error
),
LogEnvironment::fromMethodName(__METHOD__)
);
}
}
}
/**
* @param QueueInterface $queue
* @return bool
*/
protected function shouldIndexBeSwitched(QueueInterface $queue): bool
{
if ($this->acceptedFailedJobs === -1) {
return true;
}
if ($queue->countFailed() <= $this->acceptedFailedJobs) {
return true;
}
return false;
}
}