I am very new to AWS, and Postgresql.
- I have created a Postgresql db (using rds on aws)
- I have uploaded several documents to multiple s3 buckets
- I have a EC2 (Amazon Linux 64 bit) running
I tried to use a data pipeline, but nothing seems to be available (template) for Postgres. I can't figure out how to connect to my RDS instance and import/export data from postgres.
I assumed that I could use EC2 to grab from my S3 bucket and import into Postgres in lieu of no data pipeline template being available. If it is possible I have no idea how.. Please advise if possible..
COPY
command to support S3 URLs for file paths, but I won't be surprised if for now you have to fetch the data from S3 via a client that then feeds it to PostgreSQL viaCOPY
. – Craig Ringer