I have created one program which is processing two data files, one contain customer data and other contain transaction data and I applied the reduce join on this data file and processed the file and output like Customer name number of transaction total amount Amit Kumar 4 120000000 Kawaldeep Sing 5 20000000 Sanosh singh 6 10000000
And now I want that when the program run output of each name goes in seprate file like if one row contain data about Amit Kumar then this data goes into the file named Amit similarly for other record.
And if above scenario is possible then if the job runs in every 5 minute then how we can append the output to same file.
Please help me on this.
Thanks & Regard Amit