Re: Query

2015-10-08 Thread ram kumar
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

Query

2015-10-08 Thread ram kumar
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

Weird exceptions with tomcat camel

2015-10-01 Thread ram kumar
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

Recipient List

2015-06-24 Thread ram kumar
hi, i am new to camel. can anyone suggest how recipient list works on aws-s3 consumer

s3 query

2015-06-15 Thread ram kumar
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

query file to s3

2015-06-08 Thread ram kumar
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

Query on camel s3

2015-06-08 Thread ram kumar
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