Re: How to define a file filter for file name patterns in Apache Spark Streaming in Java?

2015-02-03 Thread Emre Sevinc
Hello Akhil, Thank you for taking your time for a detailed answer. I managed to solve it in a very similar manner. Kind regards, Emre Sevinç On Mon, Feb 2, 2015 at 8:22 PM, Akhil Das ak...@sigmoidanalytics.com wrote: Hi Emre, This is how you do that in scala: val lines =

How to define a file filter for file name patterns in Apache Spark Streaming in Java?

2015-02-02 Thread Emre Sevinc
Hello, I'm using Apache Spark Streaming 1.2.0 and trying to define a file filter for file names when creating an InputDStream https://spark.apache.org/docs/1.2.0/api/java/org/apache/spark/streaming/dstream/InputDStream.html by invoking the fileStream

Re: How to define a file filter for file name patterns in Apache Spark Streaming in Java?

2015-02-02 Thread Akhil Das
Hi Emre, This is how you do that in scala: val lines = ssc.fileStream[LongWritable, Text, TextInputFormat](/home/akhld/sigmoid, (t: Path) = true, true) ​In java you can do something like: jssc.ssc().LongWritable, Text, SequenceFileInputFormatfileStream(/home/akhld/sigmoid, new