I want to filter records from given file based on some criteria,i want my criteria to be if value of third field is equal to some value then retrive that record and save it in output file .i am taking CSV file as input.Can anyone suggest something ?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

If you need scalability you can use hadoop in the following way:
Install Hadoop, install hive, put your csv files into HDFS.

define the CSV file as external table (http://hive.apache.org/docs/r0.8.1/language_manual/data-manipulation-statements.html) and then you can write SQLs against the CSV file. Results of SQL can be then exported back to CSV.

link|improve this answer
if i want to do it using mapredcue only is there any way? i dont want to use hive – chhaya vishwakarma Feb 15 at 7:18
You can use hadoop streaming in this case. In a natshell - hadoop will feed your script with input data, and collect outputs. – David Gruzman Feb 15 at 8:12
thanks for your suggestion i have never used hadoop streaming but i will try – chhaya vishwakarma Feb 15 at 8:46
it has inferior performance then regular MR, but it is simplest to develop. – David Gruzman Feb 15 at 9:39
feedback

Simplest way would probably be to use pig something like

orig = load 'filename.csv' using PigStorage(',') as (first,second,third:chararray,...);

filtered_orig= FILTER orig by third=="somevalue"; 

store filtered_orig into 'newfilename' using PigStorage(',');
link|improve this answer
hmmm i would like to do it using mapreduce onlt is there any way? – chhaya vishwakarma Feb 15 at 5:08
pig generates map-reduce - you can write the same logic yourself in Java – Arnon Rotem-Gal-Oz Feb 15 at 7:48
thanks......... – chhaya vishwakarma Feb 15 at 8:44
I did filtering using MR..thanks for your answer :) – chhaya vishwakarma Feb 27 at 13:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.