I'm considering using managed Vercel Storage using the Pro plan. I have data in AWS Delta Lake on S3, of which a subset of the data needs to be exported into Vercel Postgres on a daily basis. The data may need to be massaged into a form appropriate for Postgres - e.g. from a single Delta Lake table to multiple Postgres tables. Moreover, the data will likely work best with upserts - as there will be some data that will either need to be updated or inserted. My estimate is approximately 100,000 records from my Delta Lake table will be exported to Vercel Postgres on a daily basis. The data in the Postgres db will be read-only once loaded.
What is the most cost efficient approach for doing this on a daily basis? I'm not too concerned about the performance as long as the data are imported into Vercel Postgres in a few minutes. I'm having trouble finding any documentation or information that gives advice for a situation similar to this.
Should I be considering Vercel Neon instead? If so, what options are available for importing data. Is it listed here and what would you suggest?