Replies: 5 comments 4 replies
-
@ahinkle Hey, just came across this, I am curious, what was the bug that made the import job retry indefinitely? I also am using the importer and I got the same problem |
Beta Was this translation helpful? Give feedback.
-
How did you apply $tries? I did not find a method for this |
Beta Was this translation helpful? Give feedback.
-
Any update on this? |
Beta Was this translation helpful? Give feedback.
-
We had a similar issue with exports whereby a failed one that was perpetually retrying flooded our logs with errors. We were also using a load balancer and multiple hosts which unfortunately compounded the issue. We had set retries=3 but this was ignored. It appears that Export Job doesn't appear to use atomic locks or error throttling, hence the multi host problem. What's the recommended Filament approach to better control this? |
Beta Was this translation helpful? Give feedback.
-
Hi all, opened a PR to fix this here: #14856 Open to feedback 👍 |
Beta Was this translation helpful? Give feedback.
-
We encountered an issue where a bad import continuously retried for approximately a day. This led to significantly increased costs due to services like AWS SQS and exception logging. Why is this the default behavior? In Laravel, the default retry count is 3, which would limit retries to 3 per record. Why isn't this the standard setting instead?
via the documentation:
https://filamentphp.com/docs/3.x/actions/prebuilt-actions/import#customizing-the-import-job-retries
I understand this but I find this to be an unlikely scenario vs. a bug in the code such as incorrect invalidation.
Otherwise love this importer! Thanks!
Beta Was this translation helpful? Give feedback.
All reactions