Giving Error "No such file or directory" while reading from S3 bucket.
sagar122333 opened this issue · 1 comments
sagar122333 commented
While using:
val reader = CSVReader.open("s3://bucketName/fileName")
tototoshi commented
s3://bucketName/fileName is not a file path and will not be accepted. You can either download the file to your local PC and then read it, or use AWS SDK to convert the file data into a stream and read it as a java.io.Reader.