Re: Filtering an rdd depending upon a list of values in Spark

2015-09-09 Thread Alexis Gillain
new Function() { >> @Override >> public Boolean call(String s) { >> return s.contains("Set"); >> } >> }; >> >> How do I go about it? >> >> >>

Re: Filtering an rdd depending upon a list of values in Spark

2015-09-09 Thread Ted Yu
;Set"); > } > }; > > How do I go about it? > > > > > -- > View this message in context: > http://apache-spark-user-list.1001560.n3.nabble.com/Filtering-an-rdd-depending-upon-a-list-of-values-in-Spark-tp24631.html > Sent from the

Filtering an rdd depending upon a list of values in Spark

2015-09-09 Thread prachicsa
Filter = new Function() { @Override public Boolean call(String s) { return s.contains("Set"); } }; How do I go about it? -- View this message in context: http://apache-spark-user-list.1001560.n3.nabble.co