Storing Apache Hadoop Data Output to Mysql Database
I need to store output of map-reduce program into database, so is there any way? If so, is it possible to store output into multiple columns & tables based on requirement?? please suggest me some solutions. Thank you.. Michal The great example is shown on this blog , I tried it and it goes really well. I quote the most important parts of the code. At first, you must create a class representing data you would like to store. The class must implement DBWritable interface: public class DBOutputWritable implements Writable, DBWritable { private String name; private int count; public