how do we design mapper/reducer if I have to transform a text file line-by-line into another text file.
I wrote a simple map/reduce programs which did a small transformation but the requirement is a bit more elaborate below are the details:
- the file is usually structured like this - the first row contains a comma separated list of column names. Second and the rest of the rows specify values against the columns
- In some rows the trailing column values might be missing ex: if there are 15 columns then values might be specified only for the first 10 columns.
- I have about 5 input files which I need to transform and aggregate into one file. the transformations are specific to each of the 5 input files.
- How do I pass contextual information like file name to the mapper/reducer program?
- Transformations are specific to columns so how do I remember the columns mentioned in the first row and then correlate and transform values in rows?