I am trying to copy data from AWS S3 to Aurora Postgres. Currently my process is as follows:
- Download files from S3 locally (to EC2 instance)
- Run the command "
COPY FROM STDIN ... " to load the data from the input stream into Aurora postrres.
I am wondering if there is a command to copy directly from S3 to Aurora postrres.
source share