forked from laravel/horizon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSupervisor.php
492 lines (428 loc) · 11.5 KB
/
Supervisor.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
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
<?php
namespace Laravel\Horizon;
use Cake\Chronos\Chronos;
use Closure;
use Exception;
use Illuminate\Contracts\Cache\Factory as CacheFactory;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Laravel\Horizon\Contracts\HorizonCommandQueue;
use Laravel\Horizon\Contracts\Pausable;
use Laravel\Horizon\Contracts\Restartable;
use Laravel\Horizon\Contracts\SupervisorRepository;
use Laravel\Horizon\Contracts\Terminable;
use Laravel\Horizon\Events\SupervisorLooped;
use Throwable;
class Supervisor implements Pausable, Restartable, Terminable
{
use ListensForSignals;
/**
* The name of this supervisor instance.
*
* @return string
*/
public $name;
/**
* The SupervisorOptions that should be utilized.
*
* @var \Laravel\Horizon\SupervisorOptions
*/
public $options;
/**
* All of the process pools being managed.
*
* @var \Illuminate\Support\Collection
*/
public $processPools;
/**
* Indicates if the Supervisor processes are working.
*
* @var bool
*/
public $working = true;
/**
* The time at which auto-scaling last ran for this supervisor.
*
* @var \Cake\Chronos\Chronos
*/
public $lastAutoScaled;
/**
* The number of seconds to wait in between auto-scaling attempts.
*
* @var int
*/
public $autoScaleCooldown = 3;
/**
* The output handler.
*
* @var \Closure|null
*/
public $output;
/**
* Create a new supervisor instance.
*
* @param \Laravel\Horizon\SupervisorOptions $options
* @return void
*/
public function __construct(SupervisorOptions $options)
{
$this->options = $options;
$this->name = $options->name;
$this->processPools = $this->createProcessPools();
$this->output = function () {
//
};
app(HorizonCommandQueue::class)->flush($this->name);
}
/**
* Create the supervisor's process pools.
*
* @return \Illuminate\Support\Collection
*/
public function createProcessPools()
{
return $this->options->balancing()
? $this->createProcessPoolPerQueue()
: $this->createSingleProcessPool();
}
/**
* Create a process pool for each queue.
*
* @return \Illuminate\Support\Collection
*/
protected function createProcessPoolPerQueue()
{
return collect(explode(',', $this->options->queue))->map(function ($queue) {
return $this->createProcessPool($this->options->withQueue($queue));
});
}
/**
* Create a single process pool.
*
* @return \Illuminate\Support\Collection
*/
protected function createSingleProcessPool()
{
return collect([$this->createProcessPool($this->options)]);
}
/**
* Create a new process pool with the given options.
*
* @param \Laravel\Horizon\SupervisorOptions $options
* @return \Laravel\Horizon\ProcessPool
*/
protected function createProcessPool(SupervisorOptions $options)
{
return new ProcessPool($options, function ($type, $line) {
$this->output($type, $line);
});
}
/**
* Scale the process count.
*
* @param int $processes
* @return void
*/
public function scale($processes)
{
$this->options->maxProcesses = max($this->options->maxProcesses,
$processes, count($this->processPools)
);
$this->balance($this->processPools->mapWithKeys(function ($pool) use ($processes) {
return [$pool->queue() => floor($processes / count($this->processPools))];
})->all());
}
/**
* Balance the process pool at the given scales.
*
* @param array $balance
* @return void
*/
public function balance(array $balance)
{
foreach ($balance as $queue => $scale) {
$this->processPools->first(function ($pool) use ($queue) {
return $pool->queue() === $queue;
}, new class {
public function __call($method, $arguments)
{
}
})->scale($scale);
}
}
/**
* Terminate all current workers and start fresh ones.
*
* @return void
*/
public function restart()
{
$this->working = true;
$this->processPools->each->restart();
}
/**
* Pause all of the worker processes.
*
* @return void
*/
public function pause()
{
$this->working = false;
$this->processPools->each->pause();
}
/**
* Instruct all of the worker processes to continue working.
*
* @return void
*/
public function continue()
{
$this->working = true;
$this->processPools->each->continue();
}
/**
* Terminate this supervisor process and all of its workers.
*
* @param int $status
* @return void
*/
public function terminate($status = 0)
{
$this->working = false;
// We will mark this supervisor as terminating so that any user interface can
// correctly show the supervisor's status. Then, we will scale the process
// pools down to zero workers to gracefully terminate them all out here.
app(SupervisorRepository::class)->forget($this->name);
$this->processPools->each(function ($pool) {
$pool->processes()->each(function ($process) {
$process->terminate();
});
});
if ($this->shouldWait()) {
while ($this->processPools->map->runningProcesses()->collapse()->count()) {
sleep(1);
}
}
$this->exit($status);
}
/**
* Check if the supervisor should wait for all its workers to terminate.
*
* @return bool
*/
protected function shouldWait()
{
return ! config('horizon.fast_termination') ||
app(CacheFactory::class)->get('horizon:terminate:wait');
}
/**
* Monitor the worker processes.
*
* @return void
*/
public function monitor()
{
$this->ensureNoDuplicateSupervisors();
$this->listenForSignals();
$this->persist();
while (true) {
sleep(1);
$this->loop();
}
}
/**
* Ensure no other supervisors are running with the same name.
*
* @return void
* @throws \Exception
*/
public function ensureNoDuplicateSupervisors()
{
if (app(SupervisorRepository::class)->find($this->name) !== null) {
throw new Exception("A supervisor with the name [{$this->name}] is already running.");
}
}
/**
* Perform a monitor loop.
*
* @return void
*/
public function loop()
{
try {
$this->processPendingSignals();
$this->processPendingCommands();
// If the supervisor is working, we will perform any needed scaling operations and
// monitor all of these underlying worker processes to make sure they are still
// processing queued jobs. If they have died, we will restart them each here.
if ($this->working) {
$this->autoScale();
$this->processPools->each->monitor();
}
// Next, we'll persist the supervisor state to storage so that it can be read by a
// user interface. This contains information on the specific options for it and
// the current number of worker processes per queue for easy load monitoring.
$this->persist();
event(new SupervisorLooped($this));
} catch (Throwable $e) {
app(ExceptionHandler::class)->report($e);
}
}
/**
* Handle any pending commands for the supervisor.
*
* @return void
*/
protected function processPendingCommands()
{
foreach (app(HorizonCommandQueue::class)->pending($this->name) as $command) {
app($command->command)->process($this, $command->options);
}
}
/**
* Run the auto-scaling routine for the supervisor.
*
* @return void
*/
protected function autoScale()
{
$this->lastAutoScaled = $this->lastAutoScaled ?:
Chronos::now()->subSeconds($this->autoScaleCooldown + 1);
if (Chronos::now()->subSeconds($this->autoScaleCooldown)->gte($this->lastAutoScaled)) {
$this->lastAutoScaled = Chronos::now();
app(AutoScaler::class)->scale($this);
}
}
/**
* Persist information about this supervisor instance.
*
* @return void
*/
public function persist()
{
app(SupervisorRepository::class)->update($this);
}
/**
* Prune all terminating processes and return the total process count.
*
* @return int
*/
public function pruneAndGetTotalProcesses()
{
$this->pruneTerminatingProcesses();
return $this->totalProcessCount();
}
/**
* Prune any terminating processes that have finished terminating.
*
* @return void
*/
public function pruneTerminatingProcesses()
{
$this->processPools->each->pruneTerminatingProcesses();
}
/**
* Get all of the current processes as a collection.
*
* @return \Illuminate\Support\Collection
*/
public function processes()
{
return $this->processPools->map->processes()->collapse();
}
/**
* Get the processes that are still terminating.
*
* @return \Illuminate\Support\Collection
*/
public function terminatingProcesses()
{
return $this->processPools->map->terminatingProcesses()->collapse();
}
/**
* Get the total active process count, including processes pending termination.
*
* @return int
*/
public function totalProcessCount()
{
return $this->processPools->sum->totalProcessCount();
}
/**
* Get the total active process count by asking the OS.
*
* @return int
*/
public function totalSystemProcessCount()
{
return app(SystemProcessCounter::class)->get($this->name);
}
/**
* Get the process ID for this supervisor.
*
* @return int
*/
public function pid()
{
return getmypid();
}
/**
* Get the current memory usage (in megabytes).
*
* @return float
*/
public function memoryUsage()
{
return memory_get_usage() / 1024 / 1024;
}
/**
* Determine if the supervisor is paused.
*
* @return bool
*/
public function isPaused()
{
return ! $this->working;
}
/**
* Set the output handler.
*
* @param \Closure $callback
* @return $this
*/
public function handleOutputUsing(Closure $callback)
{
$this->output = $callback;
return $this;
}
/**
* Handle the given output.
*
* @param string $type
* @param string $line
* @return void
*/
public function output($type, $line)
{
call_user_func($this->output, $type, $line);
}
/**
* Shutdown the supervisor.
*
* @param int $status
* @return void
*/
protected function exit($status = 0)
{
$this->exitProcess($status);
}
/**
* Exit the PHP process.
*
* @param int $status
* @return void
*/
protected function exitProcess($status = 0)
{
exit((int) $status);
}
}