Hello,
Airtable recently introduced expiring image URLs. This means that the image URL integromat gets from airtable is not working as the image link has expired by the time my scenario runs.
Is there a way to keep the images from airtble being processed with this new airtable update?
Depending on plan size you may exceed limits of the datastore pretty fast, as well as saving Binary in Databases is generally not recommended. (We are not talking blob here)
Other dimensions; The biggest dissadvantage if you are storing BLOBS is memory consumption. Can you imagine what select * from x would do for thousands of records with a 45k image in each?
But this is temporary file storage. I think you could well estimate the size of the data store you’d need based on usage of the temporary files. I find data stores are perfect for temporary storage because they operate much faster than external calls.
Also sending large out to api calls sometimes fails due to timing issues depending on size of the payload or limits in the api.