Oct 06, 2022 10:47 AM
Hi everyone.
We are running into the size limitations of Airtable. We are at 19 GB and at 20k records and will add this much data each year. Therefore we will need to switch to a traditional SQL style relational database. Is there any way to export an airtable base out of airtable and into a “real” database infrastructure? Any help is appreciated.
Best,
PS: Yes, there is the custom plan but we are a small non-profit and can’t afford a solution that is significantly more expensive than a traditional database solution.
Oct 06, 2022 07:08 PM
My best guess is something like the following:
I’m assuming that most of your 19 GB is attachments. Storing binary “blobs” in your database is an entirely different topic and an art unto itself, and the best solution will depend on the database system you choose. One of the most popular strategies these days is to store those large files in something like AWS and just keep the URL to the file in your database. It all depends on what type of data you’re storing. The AWS approach integrates with various caching/CDN services too which is great if the people who need to access the information are widely distributed.
Good luck with your project.
Oct 07, 2022 01:28 PM
Thanks @Tim_Wilson
Moving the attachments to AWS seems like the way to go, we don’t even need them necessarily within airtable.
Thanks!