I have a data pipeline where I pull data from Trello's API every day. I keep getting an internal server error 500 when pulling cards from certain boards. This points towards it being an issue with Trello's API itself. Anyone else experiencing this or know how I can mitigate the risk of it?
I have been experiencing this for a couple of weeks now, before the larger error that happened last week.
Thanks
Hello and welcome to the Community @Jacob Barr
A 500 error usually means Trello is breaking on the backend, but since this is only happening on specific boards, it’s highly likely those boards are just too heavy for your current API call. Trello's database can easily time out if you're trying to pull a massive payload like cards packed with actions, attachments, and custom fields all in one go.
Try stripping your query down to the absolute bare minimum, just pulling basic card IDs and names. If that actually goes through, you'll know the board is just too large for a single massive dump. You'll want to adjust your pipeline to fetch heavy extras like comments or actions in separate, smaller batches.
Test that and we can go from there.
Best
Arkadiusz☀️
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.