View Javadoc

1   /**
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *     http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing, software
13   * distributed under the License is distributed on an "AS IS" BASIS,
14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   * See the License for the specific language governing permissions and
16   * limitations under the License.
17   */
18  package org.apache.hadoop.hbase.mapreduce;
19  
20  import java.io.IOException;
21  import java.lang.reflect.Method;
22  import java.util.Map;
23  
24  import org.apache.commons.logging.Log;
25  import org.apache.commons.logging.LogFactory;
26  import org.apache.hadoop.hbase.classification.InterfaceAudience;
27  import org.apache.hadoop.hbase.classification.InterfaceStability;
28  import org.apache.hadoop.conf.Configuration;
29  import org.apache.hadoop.hbase.client.Result;
30  import org.apache.hadoop.hbase.client.ResultScanner;
31  import org.apache.hadoop.hbase.client.Scan;
32  import org.apache.hadoop.hbase.client.ScannerCallable;
33  import org.apache.hadoop.hbase.client.Table;
34  import org.apache.hadoop.hbase.client.metrics.ScanMetrics;
35  import org.apache.hadoop.hbase.DoNotRetryIOException;
36  import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
37  import org.apache.hadoop.hbase.util.Bytes;
38  import org.apache.hadoop.mapreduce.Counter;
39  import org.apache.hadoop.mapreduce.InputSplit;
40  import org.apache.hadoop.mapreduce.TaskAttemptContext;
41  import org.apache.hadoop.util.StringUtils;
42  
43  import com.google.common.annotations.VisibleForTesting;
44  
45  /**
46   * Iterate over an HBase table data, return (ImmutableBytesWritable, Result)
47   * pairs.
48   */
49  @InterfaceAudience.Public
50  @InterfaceStability.Stable
51  public class TableRecordReaderImpl {
52    public static final String LOG_PER_ROW_COUNT
53      = "hbase.mapreduce.log.scanner.rowcount";
54  
55    static final Log LOG = LogFactory.getLog(TableRecordReaderImpl.class);
56  
57    // HBASE_COUNTER_GROUP_NAME is the name of mapreduce counter group for HBase
58    @VisibleForTesting
59    static final String HBASE_COUNTER_GROUP_NAME = "HBase Counters";
60    private ResultScanner scanner = null;
61    private Scan scan = null;
62    private Scan currentScan = null;
63    private Table htable = null;
64    private byte[] lastSuccessfulRow = null;
65    private ImmutableBytesWritable key = null;
66    private Result value = null;
67    private TaskAttemptContext context = null;
68    private Method getCounter = null;
69    private long numRestarts = 0;
70    private long numStale = 0;
71    private long timestamp;
72    private int rowcount;
73    private boolean logScannerActivity = false;
74    private int logPerRowCount = 100;
75  
76    /**
77     * Restart from survivable exceptions by creating a new scanner.
78     *
79     * @param firstRow  The first row to start at.
80     * @throws IOException When restarting fails.
81     */
82    public void restart(byte[] firstRow) throws IOException {
83      currentScan = new Scan(scan);
84      currentScan.setStartRow(firstRow);
85      currentScan.setScanMetricsEnabled(true);
86      if (this.scanner != null) {
87        if (logScannerActivity) {
88          LOG.info("Closing the previously opened scanner object.");
89        }
90        this.scanner.close();
91      }
92      this.scanner = this.htable.getScanner(currentScan);
93      if (logScannerActivity) {
94        LOG.info("Current scan=" + currentScan.toString());
95        timestamp = System.currentTimeMillis();
96        rowcount = 0;
97      }
98    }
99  
100   /**
101    * In new mapreduce APIs, TaskAttemptContext has two getCounter methods
102    * Check if getCounter(String, String) method is available.
103    * @return The getCounter method or null if not available.
104    * @throws IOException
105    */
106   protected static Method retrieveGetCounterWithStringsParams(TaskAttemptContext context)
107   throws IOException {
108     Method m = null;
109     try {
110       m = context.getClass().getMethod("getCounter",
111         new Class [] {String.class, String.class});
112     } catch (SecurityException e) {
113       throw new IOException("Failed test for getCounter", e);
114     } catch (NoSuchMethodException e) {
115       // Ignore
116     }
117     return m;
118   }
119 
120   /**
121    * Sets the HBase table.
122    *
123    * @param htable  The {@link org.apache.hadoop.hbase.HTableDescriptor} to scan.
124    */
125   public void setHTable(Table htable) {
126     Configuration conf = htable.getConfiguration();
127     logScannerActivity = conf.getBoolean(
128       ScannerCallable.LOG_SCANNER_ACTIVITY, false);
129     logPerRowCount = conf.getInt(LOG_PER_ROW_COUNT, 100);
130     this.htable = htable;
131   }
132 
133   /**
134    * Sets the scan defining the actual details like columns etc.
135    *
136    * @param scan  The scan to set.
137    */
138   public void setScan(Scan scan) {
139     this.scan = scan;
140   }
141 
142   /**
143    * Build the scanner. Not done in constructor to allow for extension.
144    *
145    * @throws IOException, InterruptedException
146    */
147   public void initialize(InputSplit inputsplit,
148       TaskAttemptContext context) throws IOException,
149       InterruptedException {
150     if (context != null) {
151       this.context = context;
152       getCounter = retrieveGetCounterWithStringsParams(context);
153     }
154     restart(scan.getStartRow());
155   }
156 
157   /**
158    * Closes the split.
159    *
160    *
161    */
162   public void close() {
163     this.scanner.close();
164     try {
165       this.htable.close();
166     } catch (IOException ioe) {
167       LOG.warn("Error closing table", ioe);
168     }
169   }
170 
171   /**
172    * Returns the current key.
173    *
174    * @return The current key.
175    * @throws IOException
176    * @throws InterruptedException When the job is aborted.
177    */
178   public ImmutableBytesWritable getCurrentKey() throws IOException,
179       InterruptedException {
180     return key;
181   }
182 
183   /**
184    * Returns the current value.
185    *
186    * @return The current value.
187    * @throws IOException When the value is faulty.
188    * @throws InterruptedException When the job is aborted.
189    */
190   public Result getCurrentValue() throws IOException, InterruptedException {
191     return value;
192   }
193 
194 
195   /**
196    * Positions the record reader to the next record.
197    *
198    * @return <code>true</code> if there was another record.
199    * @throws IOException When reading the record failed.
200    * @throws InterruptedException When the job was aborted.
201    */
202   public boolean nextKeyValue() throws IOException, InterruptedException {
203     if (key == null) key = new ImmutableBytesWritable();
204     if (value == null) value = new Result();
205     try {
206       try {
207         value = this.scanner.next();
208         if (value != null && value.isStale()) numStale++;
209         if (logScannerActivity) {
210           rowcount ++;
211           if (rowcount >= logPerRowCount) {
212             long now = System.currentTimeMillis();
213             LOG.info("Mapper took " + (now-timestamp)
214               + "ms to process " + rowcount + " rows");
215             timestamp = now;
216             rowcount = 0;
217           }
218         }
219       } catch (IOException e) {
220         // do not retry if the exception tells us not to do so
221         if (e instanceof DoNotRetryIOException) {
222           throw e;
223         }
224         // try to handle all other IOExceptions by restarting
225         // the scanner, if the second call fails, it will be rethrown
226         LOG.info("recovered from " + StringUtils.stringifyException(e));
227         if (lastSuccessfulRow == null) {
228           LOG.warn("We are restarting the first next() invocation," +
229               " if your mapper has restarted a few other times like this" +
230               " then you should consider killing this job and investigate" +
231               " why it's taking so long.");
232         }
233         if (lastSuccessfulRow == null) {
234           restart(scan.getStartRow());
235         } else {
236           restart(lastSuccessfulRow);
237           scanner.next();    // skip presumed already mapped row
238         }
239         value = scanner.next();
240         if (value != null && value.isStale()) numStale++;
241         numRestarts++;
242       }
243       if (value != null && value.size() > 0) {
244         key.set(value.getRow());
245         lastSuccessfulRow = key.get();
246         return true;
247       }
248 
249       updateCounters();
250       return false;
251     } catch (IOException ioe) {
252       if (logScannerActivity) {
253         long now = System.currentTimeMillis();
254         LOG.info("Mapper took " + (now-timestamp)
255           + "ms to process " + rowcount + " rows");
256         LOG.info(ioe);
257         String lastRow = lastSuccessfulRow == null ?
258           "null" : Bytes.toStringBinary(lastSuccessfulRow);
259         LOG.info("lastSuccessfulRow=" + lastRow);
260       }
261       throw ioe;
262     }
263   }
264 
265   /**
266    * If hbase runs on new version of mapreduce, RecordReader has access to
267    * counters thus can update counters based on scanMetrics.
268    * If hbase runs on old version of mapreduce, it won't be able to get
269    * access to counters and TableRecorderReader can't update counter values.
270    * @throws IOException
271    */
272   private void updateCounters() throws IOException {
273     ScanMetrics scanMetrics = currentScan.getScanMetrics();
274     if (scanMetrics == null) {
275       return;
276     }
277 
278     updateCounters(scanMetrics, numRestarts, getCounter, context, numStale);
279   }
280 
281   protected static void updateCounters(ScanMetrics scanMetrics, long numScannerRestarts,
282       Method getCounter, TaskAttemptContext context, long numStale) {
283     // we can get access to counters only if hbase uses new mapreduce APIs
284     if (getCounter == null) {
285       return;
286     }
287 
288     try {
289       for (Map.Entry<String, Long> entry:scanMetrics.getMetricsMap().entrySet()) {
290         Counter ct = (Counter)getCounter.invoke(context,
291             HBASE_COUNTER_GROUP_NAME, entry.getKey());
292 
293         ct.increment(entry.getValue());
294       }
295       ((Counter) getCounter.invoke(context, HBASE_COUNTER_GROUP_NAME,
296           "NUM_SCANNER_RESTARTS")).increment(numScannerRestarts);
297       ((Counter) getCounter.invoke(context, HBASE_COUNTER_GROUP_NAME,
298           "NUM_SCAN_RESULTS_STALE")).increment(numStale);
299     } catch (Exception e) {
300       LOG.debug("can't update counter." + StringUtils.stringifyException(e));
301     }
302   }
303 
304   /**
305    * The current progress of the record reader through its data.
306    *
307    * @return A number between 0.0 and 1.0, the fraction of the data read.
308    */
309   public float getProgress() {
310     // Depends on the total number of tuples
311     return 0;
312   }
313 
314 }