Giter Site home page Giter Site logo

Comments (4)

t-geindre avatar t-geindre commented on July 17, 2024 2

I made a simple POC to validate my idea.

Here a simple PHP script which handle signals and runs forever:

<?php
declare(ticks = 1);

class SigtermException extends \Exception {}

pcntl_signal(SIGTERM, function () {
	throw new SigtermException('SIGTERM received');
});


set_exception_handler(function ($exception) {
	// Log exception as usual
	echo "Exception thrown: " , $exception->getMessage(), "\n";
	// If it's a Sigterm one, stop execution
	if ($exception instanceof SigtermException) {
		exit(1);
	}
});


for(;;){
	echo "Running\n";
	usleep(100000);
}

And here is the javascript handler which runs the PHP script:

const spawn = require('child_process').spawn;

var script = spawn('php', ['test.php']);
var timeoutHandler = setTimeout(() => script.kill('SIGTERM'), 2000);

script.on('close', (code) => {
	console.log('Process closed with code: ' + code);
	clearTimeout(timeoutHandler);
});

script.stdout.on('data', function(data) {
    console.log(data.toString());
});

script.stderr.on('data', function(data) {
    console.log('[STDERR] ' + data.toString());
});

And finally the execution output:

$ nodejs handler.js
Running

Running

[...]

Running

Exception thrown: SIGTERM received

Process closed with code: 1

So it seems to be working as expected and would allows us to to gracefully shut down the PHP process before the lambda shuts down.

from bref.

t-geindre avatar t-geindre commented on July 17, 2024 1

A simple solution is the following:

pcntl_async_signals(true);
pcntl_signal(SIGALRM, function () {
     throw new \RuntimeException('Maximum execution time reached');
});
pcntl_alarm(2); // a SIGALRM will be triggered after 2 seconds

This could work and wouldn't require any modification in Bref.

from bref.

mnapoli avatar mnapoli commented on July 17, 2024

Yes that is really interesting!

Just to be the devil's advocate: when not using AWS lambda (i.e. Apache/Nginx setup) there is a time limit too and there is the same problem right? So in a way my opinion is that since it's not a new constraint specific to lambdas, it's not critical to offer a solution for this.

However if it's easy and doesn't impact a lot the architecture of Bref then why not! And since we control the PHP binary we can make sure pcntl is available.

from bref.

t-geindre avatar t-geindre commented on July 17, 2024

Just to be the devil's advocate: when not using AWS lambda (i.e. Apache/Nginx setup) there is a time limit too and there is the same problem right? So in a way my opinion is that since it's not a new constraint specific to lambdas, it's not critical to offer a solution for this.

We shouldn't think as if we were working on a classic setup. On natively supported languages, AWS provides a context object which provides a method to get the remaining execution time. That's exactly why I had this idea, in other languages we can check the time left and that's not possible at the moment with PHP/Bref.

Another solution could be to give access to that context object, this could be done through socket for example.

from bref.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.