Skip to content

Commit f65a931

Browse files
committed
Merged changed from main repository
Signed-off-by: Dmitry Mazurov <[email protected]>
1 parent 8fb5643 commit f65a931

File tree

8 files changed

+56
-12
lines changed

8 files changed

+56
-12
lines changed

.github/workflows/php-cs-fixer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Fix style
1414
uses: docker://oskarstark/php-cs-fixer-ga
1515
with:
16-
args: --config=.php_cs --allow-risky=yes
16+
args: --config=.php_cs.php --allow-risky=yes
1717

1818
- name: Extract branch name
1919
shell: bash

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [7.4]
12+
php: [7.4, 8.0]
1313
laravel: [8.*, 7.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
include:

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All notable changes to `laravel-short-schedule` will be documented in this file
44

5+
## 1.4.2 - 2021-06-11
6+
7+
- allow spatie/temporary-directory 2.* (#35)
8+
9+
10+
## 1.4.1 - 2021-06-04
11+
12+
- do not set a default lifetime for production
13+
14+
15+
## 1.4.0 - 2021-05-31
16+
17+
- add lifetime option
18+
19+
## 1.3.0 - 2020-12-24
20+
21+
- add PHP8 support (#25)
22+
523
## 1.2.2 - 2020-09-08
624

725
- add support for Laravel 8

README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/spatie/laravel-short-schedule.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-short-schedule)
44
![Tests](https://github.com/spatie/laravel-short-schedule/workflows/Tests/badge.svg)
5-
![Psalm](https://github.com/spatie/laravel-short-schedule/workflows/Psalm/badge.svg)
65
[![Total Downloads](https://img.shields.io/packagist/dt/spatie/laravel-short-schedule.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-short-schedule)
76

87
[Laravel's native scheduler](https://laravel.com/docs/master/scheduling) allows you to schedule Artisan commands to run every minute.
@@ -59,6 +58,15 @@ php artisan short-schedule:run
5958

6059
You should use a process monitor like [Supervisor](http://supervisord.org/index.html) to keep this task going at all times, and to automatically start it when your server boots. Whenever you change the schedule, you should restart this command.
6160

61+
## Handle memory leaks
62+
63+
To deal with commands that leak memory, you can set the lifetime in seconds of the short schedule worker:
64+
65+
```bash
66+
php artisan short-schedule:run --lifetime=60 // after 1 minute the worker will be terminated
67+
```
68+
After the given amount of seconds, the worker and all it's child processes will be terminated, freeing all memory. Then supervisor (or similar watcher) will bring it back.
69+
6270
### Lumen
6371

6472
Before you can run the `php artisan short-schedule:run` command in your Lumen project, you should make a copy of the `ShortScheduleRunCommand` into your `app/Commands` folder:
@@ -108,7 +116,7 @@ $shortSchedule->command('artisan-command')->everySeconds(0.5);
108116
Use `exec` to schedule a bash command.
109117

110118
```php
111-
$shortSchedule->bash('bash-command')->everySecond();
119+
$shortSchedule->exec('bash-command')->everySecond();
112120
```
113121

114122
### Preventing overlaps

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.4",
19+
"php": "^7.4|^8.0",
2020
"illuminate/cache": "^7.0|^8.0",
2121
"react/event-loop": "^1.1",
22-
"spatie/temporary-directory": "^1.2"
22+
"spatie/temporary-directory": "^1.2|^2.0"
2323
},
2424
"require-dev": {
2525
"friendsofphp/php-cs-fixer": "^2.16",
2626
"orchestra/testbench": "^5.0",
2727
"phpunit/phpunit": "^9.0",
2828
"spatie/test-time": "^1.2",
29-
"vimeo/psalm": "^3.11"
29+
"vimeo/psalm": "^4.3"
3030
},
3131
"autoload": {
3232
"psr-4": {

src/Commands/ShortScheduleRunCommand.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@
88

99
class ShortScheduleRunCommand extends Command
1010
{
11-
protected $signature = 'short-schedule:run';
11+
protected $signature = 'short-schedule:run {--lifetime=}';
1212

13-
protected $description = 'Run the short scheduled commands';
13+
protected $description = 'Run the short scheduled commands
14+
{--lifetime= : The lifetime in seconds of worker}';
1415

1516
public function handle()
1617
{
1718
$loop = Factory::create();
1819

19-
(new ShortSchedule($loop))->registerCommands()->run();
20+
(new ShortSchedule($loop))->registerCommands()->run($this->option('lifetime'));
2021
}
2122
}

src/ShortSchedule.php

+18-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ class ShortSchedule
1515

1616
protected array $pendingCommands = [];
1717

18+
protected ?int $lifetime = null;
19+
1820
public function __construct(LoopInterface $loop)
1921
{
2022
$this->loop = $loop;
@@ -61,12 +63,20 @@ public function pendingCommands()
6163
});
6264
}
6365

64-
public function run(): void
66+
public function run(int $lifetime = null): void
6567
{
68+
if (! is_null($lifetime)) {
69+
$this->lifetime = $lifetime;
70+
}
71+
6672
$this->pendingCommands()->each(function (ShortScheduleCommand $command) {
6773
$this->addCommandToLoop($command, $this->loop);
6874
});
6975

76+
if (! is_null($this->lifetime)) {
77+
$this->addLoopTerminationTimer($this->loop);
78+
}
79+
7080
$this->loop->run();
7181
}
7282

@@ -80,4 +90,11 @@ protected function addCommandToLoop(ShortScheduleCommand $command, LoopInterface
8090
$command->run();
8191
});
8292
}
93+
94+
protected function addLoopTerminationTimer(LoopInterface $loop): void
95+
{
96+
$loop->addPeriodicTimer($this->lifetime, function () use ($loop) {
97+
$loop->stop();
98+
});
99+
}
83100
}

tests/Unit/RunConstraints/WhenConstraintTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace Spatie\ShortSchedule\Tests\Unit\RunConstraints;
44

5-
use PhpCsFixer\Tests\TestCase;
65
use Spatie\ShortSchedule\RunConstraints\WhenConstraint;
6+
use Spatie\ShortSchedule\Tests\TestCase;
77

88
class WhenConstraintTest extends TestCase
99
{

0 commit comments

Comments
 (0)