Java tutorial
/* * Cloud9: A Hadoop toolkit for working with big data * * Licensed under the Apache License, Version 2.0 (the "License"); you * may not use this file except in compliance with the License. You may * obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. See the License for the specific language governing * permissions and limitations under the License. */ package edu.umd.honghongie; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.Set; import java.util.Stack; import java.util.TreeSet; import java.util.logging.Logger; import java.util.NavigableMap; import org.apache.hadoop.conf.Configuration; import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.CommandLineParser; import org.apache.commons.cli.GnuParser; import org.apache.commons.cli.HelpFormatter; import org.apache.commons.cli.OptionBuilder; import org.apache.commons.cli.Options; import org.apache.commons.cli.ParseException; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.conf.Configured; import org.apache.hadoop.fs.FSDataInputStream; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.hadoop.io.IntWritable; import org.apache.hadoop.io.MapFile; import org.apache.hadoop.io.Text; import org.apache.hadoop.io.Writable; import org.apache.hadoop.util.Tool; import org.apache.hadoop.util.ToolRunner; import org.apache.hadoop.hbase.HBaseConfiguration; import org.apache.hadoop.hbase.HColumnDescriptor; import org.apache.hadoop.hbase.HTableDescriptor; import org.apache.hadoop.hbase.TableName; import org.apache.hadoop.hbase.client.HBaseAdmin; import org.apache.hadoop.hbase.client.Put; import org.apache.hadoop.hbase.client.HTableInterface; import org.apache.hadoop.hbase.client.HConnection; import org.apache.hadoop.hbase.client.HConnectionManager; import org.apache.hadoop.hbase.client.Get; import org.apache.hadoop.hbase.client.Result; import org.apache.hadoop.hbase.io.ImmutableBytesWritable; import org.apache.hadoop.hbase.mapreduce.TableMapReduceUtil; import org.apache.hadoop.hbase.mapreduce.TableReducer; import org.apache.hadoop.hbase.util.Bytes; import tl.lin.data.array.ArrayListWritable; import tl.lin.data.pair.PairOfInts; import tl.lin.data.pair.PairOfWritables; public class BooleanRetrievalHBase extends Configured implements Tool { public static final String[] FAMILIES = { "p" }; public static final byte[] CF = FAMILIES[0].getBytes(); private HTableInterface index; private FSDataInputStream collection; private Stack<Set<Integer>> stack; private BooleanRetrievalHBase() { } private void initialize(String tableName, String collectionPath, FileSystem fs) throws IOException { //initialize index Configuration conf = getConf(); conf.addResource(new Path("/etc/hbase/conf/hbase-site.xml")); Configuration hbaseConfig = HBaseConfiguration.create(conf); HConnection hbaseConnection = HConnectionManager.createConnection(hbaseConfig); index = hbaseConnection.getTable(tableName); collection = fs.open(new Path(collectionPath)); stack = new Stack<Set<Integer>>(); } private void runQuery(String q) throws IOException { String[] terms = q.split("\\s+"); for (String t : terms) { if (t.equals("AND")) { performAND(); } else if (t.equals("OR")) { performOR(); } else { pushTerm(t); } } Set<Integer> set = stack.pop(); for (Integer i : set) { String line = fetchLine(i); System.out.println(i + "\t" + line); } } private void pushTerm(String term) throws IOException { stack.push(fetchDocumentSet(term)); } private void performAND() { Set<Integer> s1 = stack.pop(); Set<Integer> s2 = stack.pop(); Set<Integer> sn = new TreeSet<Integer>(); for (int n : s1) { if (s2.contains(n)) { sn.add(n); } } stack.push(sn); } private void performOR() { Set<Integer> s1 = stack.pop(); Set<Integer> s2 = stack.pop(); Set<Integer> sn = new TreeSet<Integer>(); for (int n : s1) { sn.add(n); } for (int n : s2) { sn.add(n); } stack.push(sn); } private Set<Integer> fetchDocumentSet(String term) throws IOException { Set<Integer> set = new TreeSet<Integer>(); Get get = new Get(Bytes.toBytes(term)); Result result = index.get(get); NavigableMap<byte[], byte[]> indexmap = result.getFamilyMap(BooleanRetrievalHBase.CF); // get out all column qualifier for a row for (byte[] key : indexmap.navigableKeySet()) { int docid = Bytes.toInt(key); set.add(docid); } return set; } private String fetchLine(long offset) throws IOException { collection.seek(offset); BufferedReader reader = new BufferedReader(new InputStreamReader(collection)); return reader.readLine(); } private static final String TABLE = "index"; private static final String COLLECTION = "collection"; /** * Runs this tool. */ @SuppressWarnings({ "static-access" }) public int run(String[] args) throws Exception { Options options = new Options(); options.addOption( OptionBuilder.withArgName("table").hasArg().withDescription("HBase table name").create(TABLE)); options.addOption( OptionBuilder.withArgName("path").hasArg().withDescription("output path").create(COLLECTION)); CommandLine cmdline = null; CommandLineParser parser = new GnuParser(); try { cmdline = parser.parse(options, args); } catch (ParseException exp) { System.err.println("Error parsing command line: " + exp.getMessage()); System.exit(-1); } if (!cmdline.hasOption(TABLE) || !cmdline.hasOption(COLLECTION)) { System.out.println("args: " + Arrays.toString(args)); HelpFormatter formatter = new HelpFormatter(); formatter.setWidth(120); formatter.printHelp(this.getClass().getName(), options); ToolRunner.printGenericCommandUsage(System.out); System.exit(-1); } String tableName = cmdline.getOptionValue(TABLE); String collectionPath = cmdline.getOptionValue(COLLECTION); if (collectionPath.endsWith(".gz")) { System.out.println("gzipped collection is not seekable: use compressed version!"); System.exit(-1); } FileSystem fs = FileSystem.get(new Configuration()); initialize(tableName, collectionPath, fs); String[] queries = { "outrageous fortune AND", "white rose AND", "means deceit AND", "white red OR rose AND pluck AND", "unhappy outrageous OR good your AND OR fortune AND" }; for (String q : queries) { System.out.println("Query: " + q); runQuery(q); System.out.println(""); } return 1; } /** * Dispatches command-line arguments to the tool via the {@code ToolRunner}. */ public static void main(String[] args) throws Exception { ToolRunner.run(new BooleanRetrievalHBase(), args); } }