sql >> Database >  >> RDS >> Mysql

Apache Hadoop-gegevensuitvoer opslaan in Mysql-database

Het geweldige voorbeeld wordt getoond op deze blog , Ik heb het geprobeerd en het gaat echt goed. Ik citeer de belangrijkste delen van de code.

Eerst moet u een klasse maken die gegevens vertegenwoordigt die u wilt opslaan. De klasse moet een DBWritable-interface implementeren:

public class DBOutputWritable implements Writable, DBWritable
{
   private String name;
   private int count;

   public DBOutputWritable(String name, int count) {
     this.name = name;
     this.count = count;
   }

   public void readFields(DataInput in) throws IOException {   }

   public void readFields(ResultSet rs) throws SQLException {
     name = rs.getString(1);
     count = rs.getInt(2);
   }

   public void write(DataOutput out) throws IOException {    }

   public void write(PreparedStatement ps) throws SQLException {
     ps.setString(1, name);
     ps.setInt(2, count);
   }
}

Maak objecten van eerder gedefinieerde klasse in uw Reducer:

public class Reduce extends Reducer<Text, IntWritable, DBOutputWritable, NullWritable> {

   protected void reduce(Text key, Iterable<IntWritable> values, Context ctx) {
     int sum = 0;

     for(IntWritable value : values) {
       sum += value.get();
     }

     try {
       ctx.write(new DBOutputWritable(key.toString(), sum), NullWritable.get());
     } catch(IOException e) {
       e.printStackTrace();
     } catch(InterruptedException e) {
       e.printStackTrace();
     }
   }
}

Ten slotte moet u een verbinding met uw DB configureren (vergeet niet uw db-connector toe te voegen aan het klassenpad) en de invoer-/uitvoergegevenstypen van uw mapper en reducer te registreren.

public class Main
{
   public static void main(String[] args) throws Exception
   {
     Configuration conf = new Configuration();
     DBConfiguration.configureDB(conf,
     "com.mysql.jdbc.Driver",   // driver class
     "jdbc:mysql://localhost:3306/testDb", // db url
     "user",    // username
     "password"); //password

     Job job = new Job(conf);
     job.setJarByClass(Main.class);
     job.setMapperClass(Map.class); // your mapper - not shown in this example
     job.setReducerClass(Reduce.class);
     job.setMapOutputKeyClass(Text.class); // your mapper - not shown in this example
     job.setMapOutputValueClass(IntWritable.class); // your mapper - not shown in this example
     job.setOutputKeyClass(DBOutputWritable.class); // reducer's KEYOUT
     job.setOutputValueClass(NullWritable.class);   // reducer's VALUEOUT
     job.setInputFormatClass(...);
     job.setOutputFormatClass(DBOutputFormat.class);

     DBInputFormat.setInput(...);

     DBOutputFormat.setOutput(
     job,
     "output",    // output table name
     new String[] { "name", "count" }   //table columns
     );

     System.exit(job.waitForCompletion(true) ? 0 : 1);
   }
}



  1. Hoe zoekresultaten per categorie scheiden? MySQL + PHP

  2. Installeer Web Server in Windows XP met Apache2, PHP5 en MySQL4 – Deel 1

  3. Migreert iedereen naar de cloud?

  4. Zoek een string door alle tabellen in SQL Server te doorzoeken