aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/parallelai/spyglass/hbase/HBaseRecordReader.java
blob: 5d7dbdd88766b874ba32dd43bb8a8d55dd0cea03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
package parallelai.spyglass.hbase;

import static org.apache.hadoop.hbase.mapreduce.TableRecordReaderImpl.LOG_PER_ROW_COUNT;

import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.TreeSet;
import java.util.Vector;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.KeyValue;
import org.apache.hadoop.hbase.client.Get;
import org.apache.hadoop.hbase.client.HTable;
import org.apache.hadoop.hbase.client.Result;
import org.apache.hadoop.hbase.client.ResultScanner;
import org.apache.hadoop.hbase.client.Scan;
import org.apache.hadoop.hbase.client.ScannerCallable;
import org.apache.hadoop.hbase.filter.Filter;
import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
import org.apache.hadoop.hbase.mapreduce.TableInputFormat;
import org.apache.hadoop.hbase.util.Bytes;
import org.apache.hadoop.hbase.util.Writables;
import org.apache.hadoop.mapred.RecordReader;
import org.apache.hadoop.util.StringUtils;

import parallelai.spyglass.hbase.HBaseConstants.SourceMode;

public class HBaseRecordReader implements
		RecordReader<ImmutableBytesWritable, Result> {

	static final Log LOG = LogFactory.getLog(HBaseRecordReader.class);

	private byte[] startRow;
	private byte[] endRow;
	private byte[] lastSuccessfulRow;
	private TreeSet<String> keyList;
	private SourceMode sourceMode;
	private Filter trrRowFilter;
	private ResultScanner scanner;
	private HTable htable;
	private byte[][] trrInputColumns;
	private long timestamp;
	private int rowcount;
	private boolean logScannerActivity = false;
	private int logPerRowCount = 100;
	private boolean endRowInclusive = true;
	private int versions = 1;
	private boolean useSalt = false;

	private HBaseMultiInputSplit multiSplit = null;
	private List<HBaseTableSplit> allSplits = null;

	private HBaseRecordReader() {
	}

	public HBaseRecordReader(HBaseMultiInputSplit mSplit) throws IOException {
		multiSplit = mSplit;

		LOG.info("Creatin Multi Split for region location : "
				+ multiSplit.getRegionLocation());

		allSplits = multiSplit.getSplits();
	}

	public boolean setNextSplit() throws IOException {
		if (allSplits.size() > 0) {
			setSplitValue(allSplits.remove(0));
			return true;
		} else {
			return false;
		}
	}

	private void setSplitValue(HBaseTableSplit tSplit) throws IOException {
		switch (tSplit.getSourceMode()) {
			case SCAN_ALL:
			case SCAN_RANGE: {
				LOG.debug(String.format(
						"For split [%s] we have start key (%s) and stop key (%s)",
						tSplit, tSplit.getStartRow(), tSplit.getEndRow()));

				setStartRow(tSplit.getStartRow());
				setEndRow(tSplit.getEndRow());
				setEndRowInclusive(tSplit.getEndRowInclusive());
			}

			break;

			case GET_LIST: {
				LOG.debug(String.format("For split [%s] we have key list (%s)",
						tSplit, tSplit.getKeyList()));

				setKeyList(tSplit.getKeyList());
				setVersions(tSplit.getVersions());
			}

			break;

			case EMPTY:
				LOG.info("EMPTY split. Doing nothing.");
			break;

			default:
				throw new IOException("Unknown source mode : "
						+ tSplit.getSourceMode());
		}

		setSourceMode(tSplit.getSourceMode());

		init();
	}

	/**
	 * Restart from survivable exceptions by creating a new scanner.
	 * 
	 * @param firstRow
	 * @throws IOException
	 */
	private void restartRangeScan(byte[] firstRow) throws IOException {
		Scan currentScan;
		if ((endRow != null) && (endRow.length > 0)) {
			if (trrRowFilter != null) {
				Scan scan = new Scan(firstRow, (endRowInclusive ? Bytes.add(endRow,
						new byte[] { 0 }) : endRow));

				TableInputFormat.addColumns(scan, trrInputColumns);
				scan.setFilter(trrRowFilter);
				scan.setCacheBlocks(false);
				this.scanner = this.htable.getScanner(scan);
				currentScan = scan;
			} else {
				LOG.debug("TIFB.restart, firstRow: " + Bytes.toString(firstRow)
						+ ", endRow: " + Bytes.toString(endRow));
				Scan scan = new Scan(firstRow, (endRowInclusive ? Bytes.add(endRow,
						new byte[] { 0 }) : endRow));
				TableInputFormat.addColumns(scan, trrInputColumns);
				this.scanner = this.htable.getScanner(scan);
				currentScan = scan;
			}
		} else {
			LOG.debug("TIFB.restart, firstRow: " + Bytes.toStringBinary(firstRow)
					+ ", no endRow");

			Scan scan = new Scan(firstRow);
			TableInputFormat.addColumns(scan, trrInputColumns);
			scan.setFilter(trrRowFilter);
			this.scanner = this.htable.getScanner(scan);
			currentScan = scan;
		}
		if (logScannerActivity) {
			LOG.debug("Current scan=" + currentScan.toString());
			timestamp = System.currentTimeMillis();
			rowcount = 0;
		}
	}

	public TreeSet<String> getKeyList() {
		return keyList;
	}

	private void setKeyList(TreeSet<String> keyList) {
		this.keyList = keyList;
	}

	private void setVersions(int versions) {
		this.versions = versions;
	}

	public void setUseSalt(boolean useSalt) {
		this.useSalt = useSalt;
	}

	public SourceMode getSourceMode() {
		return sourceMode;
	}

	private void setSourceMode(SourceMode sourceMode) {
		this.sourceMode = sourceMode;
	}

	public byte[] getEndRow() {
		return endRow;
	}

	private void setEndRowInclusive(boolean isInclusive) {
		endRowInclusive = isInclusive;
	}

	public boolean getEndRowInclusive() {
		return endRowInclusive;
	}

	private byte[] nextKey = null;
	private Vector<List<KeyValue>> resultVector = null;
	Map<Long, List<KeyValue>> keyValueMap = null;

	/**
	 * Build the scanner. Not done in constructor to allow for extension.
	 * 
	 * @throws IOException
	 */
	private void init() throws IOException {
		switch (sourceMode) {
			case SCAN_ALL:
			case SCAN_RANGE:
				restartRangeScan(startRow);
			break;

			case GET_LIST:
				nextKey = Bytes.toBytes(keyList.pollFirst());
			break;

			case EMPTY:
				LOG.info("EMPTY mode. Do nothing");
			break;

			default:
				throw new IOException(" Unknown source mode : " + sourceMode);
		}
	}

	byte[] getStartRow() {
		return this.startRow;
	}

	/**
	 * @param htable
	 *           the {@link HTable} to scan.
	 */
	public void setHTable(HTable htable) {
		Configuration conf = htable.getConfiguration();
		logScannerActivity = conf.getBoolean(
				ScannerCallable.LOG_SCANNER_ACTIVITY, false);
		logPerRowCount = conf.getInt(LOG_PER_ROW_COUNT, 100);
		this.htable = htable;
	}

	/**
	 * @param inputColumns
	 *           the columns to be placed in {@link Result}.
	 */
	public void setInputColumns(final byte[][] inputColumns) {
		this.trrInputColumns = inputColumns;
	}

	/**
	 * @param startRow
	 *           the first row in the split
	 */
	private void setStartRow(final byte[] startRow) {
		this.startRow = startRow;
	}

	/**
	 * 
	 * @param endRow
	 *           the last row in the split
	 */
	private void setEndRow(final byte[] endRow) {
		this.endRow = endRow;
	}

	/**
	 * @param rowFilter
	 *           the {@link Filter} to be used.
	 */
	public void setRowFilter(Filter rowFilter) {
		this.trrRowFilter = rowFilter;
	}

	@Override
	public void close() {
		if (this.scanner != null)
			this.scanner.close();
	}

	/**
	 * @return ImmutableBytesWritable
	 * 
	 * @see org.apache.hadoop.mapred.RecordReader#createKey()
	 */
	@Override
	public ImmutableBytesWritable createKey() {
		return new ImmutableBytesWritable();
	}

	/**
	 * @return RowResult
	 * 
	 * @see org.apache.hadoop.mapred.RecordReader#createValue()
	 */
	@Override
	public Result createValue() {
		return new Result();
	}

	@Override
	public long getPos() {
		// This should be the ordinal tuple in the range;
		// not clear how to calculate...
		return 0;
	}

	@Override
	public float getProgress() {
		// Depends on the total number of tuples and getPos
		return 0;
	}

	/**
	 * @param key
	 *           HStoreKey as input key.
	 * @param value
	 *           MapWritable as input value
	 * @return true if there was more data
	 * @throws IOException
	 */
	@Override
	public boolean next(ImmutableBytesWritable key, Result value)
			throws IOException {

		switch (sourceMode) {
			case SCAN_ALL:
			case SCAN_RANGE: {

				Result result;
				try {
					try {
						result = this.scanner.next();
						if (logScannerActivity) {
							rowcount++;
							if (rowcount >= logPerRowCount) {
								long now = System.currentTimeMillis();
								LOG.debug("Mapper took " + (now - timestamp)
										+ "ms to process " + rowcount + " rows");
								timestamp = now;
								rowcount = 0;
							}
						}
					} catch (IOException e) {
						// try to handle all IOExceptions by restarting
						// the scanner, if the second call fails, it will be rethrown
						LOG.debug("recovered from "
								+ StringUtils.stringifyException(e));
						if (lastSuccessfulRow == null) {
							LOG.warn("We are restarting the first next() invocation,"
									+ " if your mapper has restarted a few other times like this"
									+ " then you should consider killing this job and investigate"
									+ " why it's taking so long.");
						}
						if (lastSuccessfulRow == null) {
							restartRangeScan(startRow);
						} else {
							restartRangeScan(lastSuccessfulRow);
							this.scanner.next(); // skip presumed already mapped row
						}
						result = this.scanner.next();
					}

					if (result != null && result.size() > 0) {
						if (useSalt) {
							key.set(HBaseSalter.delSaltPrefix(result.getRow()));
						} else {
							key.set(result.getRow());
						}

						lastSuccessfulRow = key.get();
						Writables.copyWritable(result, value);
						return true;
					}
					return setNextSplit();
				} catch (IOException ioe) {
					if (logScannerActivity) {
						long now = System.currentTimeMillis();
						LOG.debug("Mapper took " + (now - timestamp)
								+ "ms to process " + rowcount + " rows");
						LOG.debug(ioe);
						String lastRow = lastSuccessfulRow == null ? "null" : Bytes
								.toStringBinary(lastSuccessfulRow);
						LOG.debug("lastSuccessfulRow=" + lastRow);
					}
					throw ioe;
				}
			}

			case GET_LIST: {
				LOG.debug(String.format("INTO next with GET LIST and Key (%s)",
						Bytes.toString(nextKey)));

				if (versions == 1) {
					if (nextKey != null) {
						LOG.debug(String.format("Processing Key (%s)",
								Bytes.toString(nextKey)));

						Get theGet = new Get(nextKey);
						theGet.setMaxVersions(versions);

						Result result = this.htable.get(theGet);

						if (result != null && (!result.isEmpty())) {
							LOG.debug(String.format(
									"Key (%s), Version (%s), Got Result (%s)",
									Bytes.toString(nextKey), versions, result));

							if (keyList != null || !keyList.isEmpty()) {
								String newKey = keyList.pollFirst();
								LOG.debug("New Key => " + newKey);
								nextKey = (newKey == null || newKey.length() == 0) ? null
										: Bytes.toBytes(newKey);
							} else {
								nextKey = null;
							}

							LOG.debug(String.format("=> Picked a new Key (%s)",
									Bytes.toString(nextKey)));

							// Write the result
							if (useSalt) {
								key.set(HBaseSalter.delSaltPrefix(result.getRow()));
							} else {
								key.set(result.getRow());
							}
							lastSuccessfulRow = key.get();
							Writables.copyWritable(result, value);

							return true;
						} else {
							LOG.debug(" Key (" + Bytes.toString(nextKey)
									+ ") return an EMPTY result. Get (" + theGet.getId()
									+ ")"); // alg0

							String newKey;
							while ((newKey = keyList.pollFirst()) != null) {
								LOG.debug("WHILE NEXT Key => " + newKey);

								nextKey = (newKey == null || newKey.length() == 0) ? null
										: Bytes.toBytes(newKey);

								if (nextKey == null) {
									LOG.error("BOMB! BOMB! BOMB!");
									continue;
								}

								if (!this.htable.exists(new Get(nextKey))) {
									LOG.debug(String.format(
											"Key (%s) Does not exist in Table (%s)",
											Bytes.toString(nextKey),
											Bytes.toString(this.htable.getTableName())));
									continue;
								} else {
									break;
								}
							}

							nextKey = (newKey == null || newKey.length() == 0) ? null
									: Bytes.toBytes(newKey);

							LOG.debug("Final New Key => " + Bytes.toString(nextKey));

							return next(key, value);
						}
					} else {
						// Nothig left. return false
						return setNextSplit();
					}
				} else {
					if (resultVector != null && resultVector.size() != 0) {
						LOG.debug(String.format("+ Version (%s), Result VECTOR <%s>",
								versions, resultVector));

						List<KeyValue> resultKeyValue = resultVector
								.remove(resultVector.size() - 1);
						Result result = new Result(resultKeyValue);

						LOG.debug(String.format("+ Version (%s), Got Result <%s>",
								versions, result));

						if (useSalt) {
							key.set(HBaseSalter.delSaltPrefix(result.getRow()));
						} else {
							key.set(result.getRow());
						}
						lastSuccessfulRow = key.get();
						Writables.copyWritable(result, value);

						return true;
					} else {
						if (nextKey != null) {
							LOG.debug(String.format("+ Processing Key (%s)",
									Bytes.toString(nextKey)));

							Get theGet = new Get(nextKey);
							theGet.setMaxVersions(versions);

							Result resultAll = this.htable.get(theGet);

							if (resultAll != null && (!resultAll.isEmpty())) {
								List<KeyValue> keyValeList = resultAll.list();

								keyValueMap = new HashMap<Long, List<KeyValue>>();

								LOG.debug(String.format(
										"+ Key (%s) Versions (%s) Val;ute map <%s>",
										Bytes.toString(nextKey), versions, keyValueMap));

								for (KeyValue keyValue : keyValeList) {
									long version = keyValue.getTimestamp();

									if (keyValueMap.containsKey(new Long(version))) {
										List<KeyValue> keyValueTempList = keyValueMap
												.get(new Long(version));
										if (keyValueTempList == null) {
											keyValueTempList = new ArrayList<KeyValue>();
										}
										keyValueTempList.add(keyValue);
									} else {
										List<KeyValue> keyValueTempList = new ArrayList<KeyValue>();
										keyValueMap.put(new Long(version),
												keyValueTempList);
										keyValueTempList.add(keyValue);
									}
								}

								resultVector = new Vector<List<KeyValue>>();
								resultVector.addAll(keyValueMap.values());

								List<KeyValue> resultKeyValue = resultVector
										.remove(resultVector.size() - 1);

								Result result = new Result(resultKeyValue);

								LOG.debug(String.format(
										"+ Version (%s), Got Result (%s)", versions,
										result));

								String newKey = keyList.pollFirst(); // Bytes.toString(resultKeyValue.getKey());//

								System.out.println("+ New Key => " + newKey);
								nextKey = (newKey == null || newKey.length() == 0) ? null
										: Bytes.toBytes(newKey);

								if (useSalt) {
									key.set(HBaseSalter.delSaltPrefix(result.getRow()));
								} else {
									key.set(result.getRow());
								}
								lastSuccessfulRow = key.get();
								Writables.copyWritable(result, value);
								return true;
							} else {
								LOG.debug(String.format(
										"+ Key (%s) return an EMPTY result. Get (%s)",
										Bytes.toString(nextKey), theGet.getId())); // alg0

								String newKey;

								while ((newKey = keyList.pollFirst()) != null) {
									LOG.debug("+ WHILE NEXT Key => " + newKey);

									nextKey = (newKey == null || newKey.length() == 0) ? null
											: Bytes.toBytes(newKey);

									if (nextKey == null) {
										LOG.error("+ BOMB! BOMB! BOMB!");
										continue;
									}

									if (!this.htable.exists(new Get(nextKey))) {
										LOG.debug(String.format(
												"+ Key (%s) Does not exist in Table (%s)",
												Bytes.toString(nextKey),
												Bytes.toString(this.htable.getTableName())));
										continue;
									} else {
										break;
									}
								}

								nextKey = (newKey == null || newKey.length() == 0) ? null
										: Bytes.toBytes(newKey);

								LOG.debug("+ Final New Key => "
										+ Bytes.toString(nextKey));

								return next(key, value);
							}

						} else {
							return setNextSplit();
						}
					}
				}
			}

			case EMPTY: {
				LOG.info("GOT an empty Split");
				return setNextSplit();
			}

			default:
				throw new IOException("Unknown source mode : " + sourceMode);
		}
	}
}