laravel-aws-worker icon indicating copy to clipboard operation
laravel-aws-worker copied to clipboard

Run Laravel (or Lumen) tasks and queue listeners inside of AWS Elastic Beanstalk workers

Results 35 laravel-aws-worker issues
Sort by recently updated
recently updated
newest added

On a project, we have a parent abstract class: ``` abstract class TransactionJob implements ShouldQueue { use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; public $jobId; public function __construct($jobPrefix = 'job') { $this->jobId...

Hello, first of all thanks for this package. I'm not sure this issue is related to the package or to an error in EB configuration, but it seems that the...

Hi I am using this package for running my crons. But I am facing an issue that it is not reading the environment variables which are set in the elastic...

I am trying to write a test for the scheduling of task via /worker/schedule. ``` $schedule = new Schedule; $schedule->call(function() { \DB::table('test')->insert(['name' => 'test']); })->everyMinute(); // $events = $schedule->dueEvents($this->app); $headers...

Hi there, do you plan on building in support for FIFO queues?

This Pull Request removes the use of the env() function to obtain the value of the "REGISTER_WORKER_ROUTES" environment variable. Is related to the [this issue](https://github.com/dusterio/laravel-aws-worker/issues/33). This pull request breaks compatibility...

Hi, Thanks for this awesome package. Can you tell me how this handle scheduler command when there are multiple web server are running. Is it only run on one worker...

I have two issues with my worker. How can I solve these two issues? **1. WithoutOverLapping:** Ex: I have One job which runs every 5 mins. But sometimes the job...

I've installed the package in my project, but it looks like all the requests of '/worker/schedule' returns 302 status code on EB servers. The package works perfectly on my local...

Due to how the serviceprovide has a preg match it is not passing in the correct parameter to add routes. It should be more flexible to cater for future versions...