• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Need Help

 
Ranch Hand
Posts: 160
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,


I need help as we are processing files which is having a size less than 1MB and we are getting an output in one file but
we need an output in a tabular form like this .
Here Field1 and Field2 are headers and then their respective values should come in another line by reading each respective file, example given below.

Input file1

field1 : data
field2 : data
field3 : data

Input file 2

field1 : data
field2 : data
field3 : data

final Output

Field1 Field2 Field3
Data Data Data ( File 1 Data)
Data Data Data (File 2 Data)
Data Data Data (File 3 Data)


 
Ranch Hand
Posts: 544
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,
how is this related to Hadoop and/or map-reduce ?

Regards,
Amit
 
Jasmine kaur
Ranch Hand
Posts: 160
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Team,

Thanks for responding ,yes it is related to Hadoop as we have used Hadoop framework to achieve this by making class Map and reducer
but I need help as I mentioned in a table format.Please help on this how to his achieve this using Hadoop framework.


Thanks once again for he help
 
Jasmine kaur
Ranch Hand
Posts: 160
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I need help to get the output in a tabular format using hadoop framework as we have used that only .

Thanks

 
reply
    Bookmark Topic Watch Topic
  • New Topic