Questions tagged [apache-camel-aws]

37 questions
0
votes
2 answers

How do i can read all the files from aws s3 directory in a single poll using apache-camel

Im trying to achieve : Read all the files from the s3 directory. copy all the files to backup directory on s3. aggregate all the file contents to a single file and copy it to the another directory on s3. But Im stuck on the first point to read…
0
votes
0 answers

Camel SNS - How to use async client without blocking?

In Camel when sending to an SNS endpoint using an AmazonSNSAsync client, the publishing behavior doesn't appear to change because the underlying SnsPublisher still invokes the blocking synchronous getSNSClient().publish(request) method. Is it…
geg
  • 4,399
  • 4
  • 34
  • 35
0
votes
1 answer

How to resolve the 400 The plain HTTP request was sent to HTTPS port issue in Apache Camel?

How to resolve the 400 The plain HTTP request was sent to HTTPS port issue? from: empValidation to: myhost:443/EmpValidation/EmpValidationAPIService rules.getRules().forEach(x->{ final LoadBalanceDefinition lb = …
0
votes
1 answer

Camel s3 component not deleting files from bucket with the use of processor

Trying a very simple camel route: from("aws-s3://javatutorial1232boomiau?amazonS3Client=#s3client&deleteAfterRead=true&fileName=My2.jsp").process(Empty2).log(LoggingLevel.INFO, "Replay Message Sent to file:s3out ${in.header.CamelAwsS3Key}") …
0
votes
1 answer

Logging filename during file transfer from aws s3 using apache camel

I am a beginner to Apache camel-aws. I am writing a program to transfer a file from one aws s3 bucket to another bucket using apache camel. I now want to log the file/object name that is being picked from s3. Could you please help me with the same?…
Kashif Hamad
  • 21
  • 10
0
votes
0 answers

Apache Camel SWF does not schedule second Activity in the workflow

I have created a sample apache camel swf application based on Spring Boot. It works as expected for the first activity but even though it seems to schedule the second activity, the activity does not get invoked. Reference to sample application -…
KP Kurian
  • 41
  • 1
  • 8
0
votes
1 answer

Upload fails with Status Code: 403 SignatureDoesNotMatch when multiPartUpload is true

I created a simple camel route to poll for files in a local directory and upload them to a Ceph (S3) server at my University. I am using apache camel 2.20.0 with the camel-aws S3 component, when I set multiPartUpload=false (the default) in the uri,…
kretin
  • 31
  • 7
1 2
3