it uses that
> and you can keep using a static to
> http://camel.apache.org/hdfs
>
>
>
> On Thu, Oct 8, 2015 at 1:46 PM, Joakim Bjørnstad
> wrote:
> > Hello,
> >
> > Recipient list allows dynamic endpoints:
> >
> > http://camel.apache.org/recipien
Hi,
i would like to set the hdfs path to the current time (in millisecond),
but CamelContext takes from conf once, is it possible to change it
.to("hdfs://"+ System.currentTimeMillis() + "/")
Thanks
Hi,
Added below in pom.xml
org.apache.camel
camel-core
2.14.1
org.apache.camel
camel-servlet
2.14.1
org.apache.camel
camel-hdfs
2.14.1
hi,
i am new to camel.
can anyone suggest how recipient list works on aws-s3 consumer
Hi,
my use case is a dynamic consumer where ,
.setHeader(S3Constants.KEY, simple("query" + System.nanoTime())) -> this
should change according to time
.to("aws-s3://camel-qq?accessKey=&secretKey=");
can anyone help me
Thanks
Hi,
This will write the file present in directory sample to checkoutputdir1
from("file:///home/ram/sample/")
.to("file:///home/ram/checkoutputdir1/");
My use case is to push to s3
from("file:///home/ram/sample/")
.setHeader(S3Constants.KEY, simple("check5"))
.to("aws-s3://camel-qq?accessKey=&secr
Hi,
I have a producer which points to a directory
I want to consume to s3, inside a particular directory
Can anyone help me with that
.from(file:directoryName)
.setHeader(S3Constants.KEY, simple("check1"))
.to("aws-s3://camel?accessKey=&secretKey=®ion=&");
Thanks