Skip to content

Commit 51be058

Browse files
committed
add horizon controls
1 parent 098e8a0 commit 51be058

File tree

3 files changed

+113
-0
lines changed

3 files changed

+113
-0
lines changed

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,32 @@ Outputs,
3939
```
4040
Clearing Redis queues:emails
4141
```
42+
43+
## Horizon Basic Clear
44+
45+
The horizon feature here is not fool proof so you will want to check on the results after the fact.
46+
47+
To clear all failed jobs from redis in horizon.
48+
49+
```shell
50+
php artisan horizon:data failed_jobs -C
51+
```
52+
53+
To clear all jobs from redis in horizon.
54+
55+
```shell
56+
php artisan horizon:data jobs -C
57+
```
58+
59+
To clear all jobs from redis in horizon.
60+
61+
```shell
62+
php artisan horizon:data recent_jobs -C
63+
```
64+
65+
To clear an tag or something else from redis in horizon.
66+
67+
```shell
68+
php artisan horizon:data App\\Import:66 -C
69+
php artisan horizon:data failed:App\Import:65 -C
70+
```

src/HorizonDataCommand.php

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
<?php
2+
/**
3+
* Created by PhpStorm.
4+
* User: kevindees
5+
* Date: 2018-12-19
6+
* Time: 15:43
7+
*/
8+
9+
namespace QueueRedis;
10+
11+
use Illuminate\Console\Command;
12+
use Illuminate\Support\Facades\Redis;
13+
14+
15+
class HorizonDataCommand extends Command
16+
{
17+
/**
18+
* The name and signature of the console command.
19+
*
20+
* @var string
21+
*/
22+
protected $signature = 'horizon:data
23+
{type : The data you wish to target: failed_jobs, recent_jobs, tag }
24+
{--C|clear : Clear the data}';
25+
26+
/**
27+
* The console command description.
28+
*
29+
* @var string
30+
*/
31+
protected $description = 'Flush horizon data';
32+
33+
protected $type;
34+
protected $clear;
35+
36+
/**
37+
* Create a new command instance.
38+
*
39+
* @return void
40+
*/
41+
public function __construct()
42+
{
43+
parent::__construct();
44+
}
45+
46+
/**
47+
* Execute the console command.
48+
*
49+
* @return mixed
50+
*/
51+
public function handle()
52+
{
53+
$this->type = $this->argument('type');
54+
$this->clear = $this->option('clear');
55+
56+
if($this->clear) {
57+
$this->clear();
58+
}
59+
}
60+
61+
protected function clear() {
62+
63+
switch ($this->type) {
64+
case 'failed_jobs' :
65+
$this->info('Clearing all horizon recent failed and failed jobs');
66+
Redis::connection()->del('horizon:failed:*');
67+
Redis::connection()->del('horizon:recent_failed_jobs');
68+
Redis::connection()->del('horizon:failed_jobs');
69+
break;
70+
case 'recent_jobs' :
71+
$this->info('Clearing all horizon recent jobs');
72+
Redis::connection()->del('horizon:recent_jobs');
73+
break;
74+
default :
75+
if(!empty($this->type)) {
76+
$tag = $this->type;
77+
$this->info('Clearing: horizon:' . $tag);
78+
Redis::connection()->del('horizon:' . escapeshellarg($tag));
79+
}
80+
break;
81+
}
82+
}
83+
}

src/QueueRedisServiceProvider.php

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public function boot()
2525
if ($this->app->runningInConsole()) {
2626
$this->commands([
2727
QueueRedisCommand::class,
28+
HorizonDataCommand::class,
2829
]);
2930
}
3031
}

0 commit comments

Comments
 (0)