1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
package org.apache.giraph.bsp; |
20 | |
|
21 | |
import java.io.IOException; |
22 | |
|
23 | |
import org.apache.hadoop.mapreduce.InputSplit; |
24 | |
import org.apache.hadoop.mapreduce.RecordReader; |
25 | |
import org.apache.hadoop.mapreduce.TaskAttemptContext; |
26 | |
import org.apache.hadoop.io.Text; |
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | 72 | class BspRecordReader extends RecordReader<Text, Text> { |
32 | |
|
33 | 1 | private static final Text ONLY_KEY = new Text("only key"); |
34 | |
|
35 | 1 | private static final Text ONLY_VALUE = new Text("only value"); |
36 | |
|
37 | |
|
38 | 24 | private boolean seenRecord = false; |
39 | |
|
40 | |
@Override |
41 | |
public void close() throws IOException { |
42 | 24 | return; |
43 | |
} |
44 | |
|
45 | |
@Override |
46 | |
public float getProgress() throws IOException { |
47 | 48 | return seenRecord ? 1f : 0f; |
48 | |
} |
49 | |
|
50 | |
@Override |
51 | |
public Text getCurrentKey() throws IOException, InterruptedException { |
52 | 24 | return ONLY_KEY; |
53 | |
} |
54 | |
|
55 | |
@Override |
56 | |
public Text getCurrentValue() throws IOException, InterruptedException { |
57 | 24 | return ONLY_VALUE; |
58 | |
} |
59 | |
|
60 | |
@Override |
61 | |
public void initialize(InputSplit inputSplit, TaskAttemptContext context) |
62 | |
throws IOException, InterruptedException { |
63 | 24 | } |
64 | |
|
65 | |
@Override |
66 | |
public boolean nextKeyValue() throws IOException, InterruptedException { |
67 | 48 | if (!seenRecord) { |
68 | 24 | seenRecord = true; |
69 | 24 | return true; |
70 | |
} |
71 | 24 | return false; |
72 | |
} |
73 | |
} |