Reputation: 200
I am trying to perform a COPY query in Redshift in order to load different .csv files stored in a AWS S3 path (let's say s3://bucket/path/csv/
). The .csv files in that path contain a date in their filenames (i.e.: s3://bucket/path/csv/file_20200605.csv
, s3://bucket/path/csv/file_20200604.csv
,...) since they the data inside them corresponds to the data for a specific day. My question here is (since the order of loading the files matter), will Redshift load these files in alphabetical order?
Upvotes: 0
Views: 253
Reputation: 204
The COPY command leverages the Amazon Redshift massively parallel processing (MPP) architecture to read and load data in parallel from files in an Amazon S3 bucket.
so regards to your question, the files will load in parallel.
Upvotes: 4