[ 
https://issues.apache.org/jira/browse/CAMEL-5790?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13497536#comment-13497536
 ] 

Jason Chaffee commented on CAMEL-5790:
--------------------------------------

Also, I should add that in my use case there might be several files of 10MB - 
50MB and I really only one download a single file by timestamp, which is built 
into the file name.  The current component has not support for just getting a 
single specified file.
                
> 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
>
> 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

Reply via email to