You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2014/04/24 23:39:24 UTC

svn commit: r1589889 - /hbase/branches/0.96/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/WALPlayer.java

Author: apurtell
Date: Thu Apr 24 21:39:23 2014
New Revision: 1589889

URL: http://svn.apache.org/r1589889
Log:
HBASE-11049 HBase WALPlayer needs to add credentials to job to play to table (Jerry He)

Modified:
    hbase/branches/0.96/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/WALPlayer.java

Modified: hbase/branches/0.96/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/WALPlayer.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.96/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/WALPlayer.java?rev=1589889&r1=1589888&r2=1589889&view=diff
==============================================================================
--- hbase/branches/0.96/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/WALPlayer.java (original)
+++ hbase/branches/0.96/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/WALPlayer.java Thu Apr 24 21:39:23 2014
@@ -254,6 +254,7 @@ public class WALPlayer extends Configure
       job.setMapperClass(HLogMapper.class);
       job.setOutputFormatClass(MultiTableOutputFormat.class);
       TableMapReduceUtil.addDependencyJars(job);
+      TableMapReduceUtil.initCredentials(job);
       // No reducers.
       job.setNumReduceTasks(0);
     }