Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
119 views

What happens to the model's eager-loaded relationship when the model is passed to another Job's dispatch method? Context: There is a job that retrieves all ongoing games and this job should create an ...
ssrsvn's user avatar
  • 33
0 votes
0 answers
40 views

I have setup two queues (calculator-webhook-queue & offers-queue) on Amazon SQS with the following code:- In .env file QUEUE_CONNECTION=sqs AWS_DEFAULT_REGION=us-east-1 AWS_ACCESS_KEY_ID=******* ...
Dawood Faiz's user avatar
0 votes
3 answers
139 views

I'am using Laravel 11.x as Framework and currently trying to figure out "the best" way to handle a big process from the amazon sp-api. I want to handle the API Requests within Jobs and want ...
MaxWeb's user avatar
  • 169
0 votes
0 answers
107 views

I'm using Laravel 5.5 with the database queue driver to manage jobs, and I have 5 workers running. However, I've noticed that the rate at which jobs are processed remains constant at 100 jobs per ...
Yeo Bryan's user avatar
  • 439
1 vote
1 answer
863 views

I am unable to add jobs to Bus Batch in Laravel in a foreach loop, and get the error Call to undefined method App\Jobs\ProcessSitemapChunk::withBatchId(). $sitemapUrl = 'someurl'; $...
Hitesh Chauhan's user avatar
0 votes
1 answer
2k views

To anyone using Laravel Jobs and Horizon. Sometimes, after the job succeed, the queue tries it again with no reason: App\Jobs\Job has been attempted too many times. {"exception":"[...
Marc Garcia's user avatar
  • 1,456
0 votes
1 answer
281 views

I have Laravel 10 as my API backend with Fortify. When resetting the password, I want to send HTML content (retrieved from the database) to an email. The email should be queued, possibly via the jobs ...
Symfony TestMail's user avatar
1 vote
1 answer
1k views

I have dispatched a job and the the job is added to the database on the specified table, e.g. "Jobs. The jobs are not being processed, even though the jobs are added to the database. No log ...
Fhuu's user avatar
  • 21
0 votes
1 answer
163 views

We are using Laravel Jobs + Horizon, and have built a framework to retry jobs with exponential backoff using the hook for failed() as well as Job middleware to deal with log consolidation, but we've ...
kevinc's user avatar
  • 645
0 votes
1 answer
676 views

In my laravel application i do a form submit to execute a time consuming task by calling shell_exec(my_time_conusming_Script.sh) . The process executes successfully on the background. But the ...
Tanzeem's user avatar
  • 119
0 votes
1 answer
501 views

I have a job that has public $tries = 2; but when it fails, it does not retry. In Horizon, I have to retry the job manually. Here is the job: class SendEmailMessage implements ShouldQueue { use ...
Martin Drapeau's user avatar
1 vote
1 answer
1k views

There's a lot of questions like this, feel like I've read them all and I'm no wiser. Like everyone else I'm trying to have supervisor manage my Laravel queue for queued notifications. If I'm outside ...
polycode's user avatar
  • 265
1 vote
1 answer
1k views

I am using laravel 8 for my application and every is working fine except sometimes my queue jobs are running twice which is causing database ledger balance to update twice . I found out this issue ...
Ashu's user avatar
  • 11
0 votes
1 answer
857 views

It's a very simple question, I had this test: public function test_expired_cases_empty_dont_dispatch_update_expired_class() { $this->expired1->created_at = Carbon::now(); $this->...
Daniel Ballesteros's user avatar
1 vote
1 answer
276 views

I have a large number of users hence I have to do that particular user has their queue not just one queue for all users. php artisan queue:work this command runs only default named queue. but in my ...
Prakash thirstydevs's user avatar
0 votes
0 answers
52 views

Thank you all in advance , i have peoject for ecommerce app please check simplified DB schema for better unsrstand products - id - name - some other columns ... product_items - id - product_id - some ...
Amr mahmod's user avatar
0 votes
2 answers
950 views

horizon is setup in local is working properly, local horizon dashboard show me the supervisor info and current workload But in production horizon dashboard the status is active and not show supervisor ...
Parth's user avatar
  • 5
-1 votes
1 answer
158 views

I am currently running my Laravel application on AWS Beanstalk with a load balancer configured. The setup allows for a minimum of 1 and a maximum of 2 instances to be running. So far, everything ...
oralunal's user avatar
  • 416
2 votes
2 answers
1k views

I have application created using Laravel 9. i have installed 'maatwebsite/excel' library to export and import excel file. it is working good on local and server. but now i have implemented laravel ...
Kirti Umrigar's user avatar
0 votes
0 answers
130 views

I have implemented Queues in a Laravel project. Since I can't install Supervisor on my server, I launch the queue:work command for each queue in Plesk panel. It works fine until I exceed 5 queues. The ...
tsil's user avatar
  • 2,069
1 vote
1 answer
1k views

I have a laravel queue job that process around 10 to 12 seconds before succeeding. It does not fail though and not throw any error logs. Only problem is, it just stops processing the next jobs. I have ...
tempra's user avatar
  • 2,391
1 vote
1 answer
1k views

I have a background job that updates data via models. The issue is that when one of the job fails due to errors/exceptions (even when try/catch is used as long as an exception occurred), the rest of ...
Rick's user avatar
  • 2,321
2 votes
0 answers
204 views

I am using a custom rate limiter as per https://laravel.com/docs/10.x/queues#rate-limiting. // App Service Provider RateLimiter::for('google-sheets', function (object $job) { return Limit::...
Adam Lambert's user avatar
  • 1,431
1 vote
1 answer
1k views

My laravel notification has to send messages to 2 channels. But when one channel failed, both channel was been resending message by queue. Is there anyway to solve this without creating a deferent ...
David Ko's user avatar
  • 177
1 vote
1 answer
732 views

I'm running the following script inside a Laravel job (OperatorSubmissionJob) to upload multiple files to the SFTP server. Everything working well. But I have to disconnect the SFTP connection to end ...
Tarikul Islam's user avatar

1
2 3 4 5
10