[
https://issues.apache.org/jira/browse/CAMEL-5790?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jason Chaffee updated CAMEL-5790:
---------------------------------
Attachment: getS3ObjectByFileName.patch
I created a patch that takes a fileName parameter and doesn't check or try to
create the bucket, it just tries to get the S3Object. This is not a patch I
would expect to be applied as it is hacky and it has no tests. It is purely to
show what I am trying to that I can't currently do.
> aws-s3 should support retrieving a single object request
> --------------------------------------------------------
>
> Key: CAMEL-5790
> URL: https://issues.apache.org/jira/browse/CAMEL-5790
> Project: Camel
> Issue Type: Improvement
> Components: camel-aws
> Affects Versions: 2.10.2
> Reporter: Jason Chaffee
> Assignee: Willem Jiang
> Attachments: getS3ObjectByFileName.patch
>
>
> Currently, it aws-s3 tries to list objects and if that fails it attempts to
> create a new bucket. This logic shouldn't be done by default. Also, you may
> only want to download a single file and if the listing fails, you can't do so.
> For example, this code is currently causing a 404 in the aws-s3 endpoint.
> This keeps the component from ever downloading anything, even the bucket
> already exists. I am not sure why this fails.
> {code}
> getS3Client().listObjects(new ListObjectsRequest(bucketName, null, null,
> null, 0));
> {code}
> However, if I change the code to download a single file using the same bucket
> name, it works.
> {code}
> getS3Client().getObject(new GetObjectRequest(bucketName, filename));
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira