You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line is replacing all + with (whitespace) which is problematic for filenames with +, e.g.:
Original filename in S3: hello+world.csv
Generated manifest: hello world.csv
Then Redshift will complain the key does not exist when trying to load the manifest.
I manually changed it to:
url: 's3://' + batchEntries[i],
and it worked fine for me.
The text was updated successfully, but these errors were encountered:
https://github.com/awslabs/aws-lambda-redshift-loader/blob/master/index.js#L785-L790
This line is replacing all
(whitespace) which is problematic for filenames with
+
with+
, e.g.:Original filename in S3:
hello+world.csv
Generated manifest:
hello world.csv
Then Redshift will complain the key does not exist when trying to load the manifest.
I manually changed it to:
and it worked fine for me.
The text was updated successfully, but these errors were encountered: