How to read S3 file only once in Apache Camel

2.9k Views Asked by At

My DSL start is something like this:

from("aws-s3://" + s3_bucket_name + "?amazonS3Client=#amazonS3Client&deleteAfterRead=false&fileName=myfile.csv")

after this I covert each row into a JSON file and dump into a local directory.

The problem is it keeps on doing this like its stuck in an infinite loop.

Any idea how I process the file only once and then stop?

2

There are 2 best solutions below

1
On

You can read this FAQ about how to stop a route from a route: http://camel.apache.org/how-can-i-stop-a-route-from-a-route.html

Or instead of a route you use a ConsumerTemplate to poll the s3file only once.

0
On

You can use Idempotent Consumer

from("aws-s3://" + s3_bucket_name + "?amazonS3Client=#amazonS3Client&deleteAfterRead=false&fileName=myfile.csv")
.idempotentConsumer(header("CamelAwsS3Key"), idempotentRepository)

You can provide implementation of idempotentRepository based on your need as mentioned in above link.