You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to know if anyone has experienced missing invocations of some of their console commands? I have an EventBridge setup to run each minute, invoking my artisan Lambda, running schedule:run... this is working for the vast majority of jobs.
There are some commands that seem to never get run (even though they work fine using the sls invoke -f artisan --stage prod --data "artisan:command").
Here is an example of a job that should be called hourly - you can see some random gaps.
I have checked other jobs that are more frequent, and they seem to be running on schedule (every 2 minutes) without gaps... and I have another job that is scheduled daily() that never gets invoked.
I have changed the EventBridge to use the cron(* * * * ? *) rule instead of the rate(1 minute).
Any help would be appreciated - thanks!
The text was updated successfully, but these errors were encountered:
Oh wow that is weird! It might be worth asking the AWS support about this?
And on my side I've never seen this but I don't use events like this too much, only on smaller projects and I don't check their logs enough I'm afraid.
Hello,
I wanted to know if anyone has experienced missing invocations of some of their console commands? I have an EventBridge setup to run each minute, invoking my
artisan
Lambda, runningschedule:run
... this is working for the vast majority of jobs.There are some commands that seem to never get run (even though they work fine using the
sls invoke -f artisan --stage prod --data "artisan:command"
).Here is an example of a job that should be called hourly - you can see some random gaps.
I have checked other jobs that are more frequent, and they seem to be running on schedule (every 2 minutes) without gaps... and I have another job that is scheduled
daily()
that never gets invoked.I have changed the EventBridge to use the
cron(* * * * ? *)
rule instead of therate(1 minute)
.Any help would be appreciated - thanks!
The text was updated successfully, but these errors were encountered: