Home > OS >  Pull data from Athena and Redshift view to a s3 bucket in csv format daily automation
Pull data from Athena and Redshift view to a s3 bucket in csv format daily automation

Time:08-26

What is the best option to pull redshift and athena view to s3 bucket automatically every day?

This bucket is to be used by a third party company who would push this data from s3 to their system.

CodePudding user response:

You will need to run some code somewhere that connects to the database and runs an UNLOAD command.

For example, if you are already running an Amazon EC2 instance, then use a Linux cron command or Windows Scheduled Task. Alternatively, create an AWS Lambda function that runs on a schedule.

See also:

  • Related