{
JobConf job = HadoopPlugin.getJobFactory(BitPostingIndexInputFormat.class.getSimpleName()).newJob();
setStructures(job, "linksin", "linksin-lookup");
HadoopUtility.toHConfiguration(index, job);
index.close();
InputSplit s = new BitPostingIndexInputSplit(
new Path(args[3]), Long.parseLong(args[4]), Long.parseLong(args[5]),
new String[0], Integer.parseInt(args[6]), Integer.parseInt(args[7]));
RecordReader<IntWritable, IntObjectWrapper<IterablePosting>> rr = new BitPostingIndexInputFormat().getRecordReader(s, job, new Reporter(){
public InputSplit getInputSplit() throws UnsupportedOperationException {return null;}
@SuppressWarnings("unchecked")