
com.mongodb.hadoop.input.BSONFileRecordReader Maven / Gradle / Ivy
The newest version!
package com.mongodb.hadoop.input;
import com.mongodb.hadoop.io.BSONWritable;
import com.mongodb.hadoop.util.BSONLoader;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FSDataInputStream;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.NullWritable;
import org.apache.hadoop.mapreduce.InputSplit;
import org.apache.hadoop.mapreduce.RecordReader;
import org.apache.hadoop.mapreduce.TaskAttemptContext;
import org.apache.hadoop.mapreduce.lib.input.FileSplit;
import org.bson.*;
import java.io.DataInputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.io.InputStream;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.concurrent.atomic.AtomicBoolean;
/**
* Copyright (c) 2008 - 2012 10gen, Inc.
*
* 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.
*/
public class BSONFileRecordReader extends RecordReader {
private FileSplit fileSplit;
private Configuration conf;
private BSONLoader rdr;
private static final Log log = LogFactory.getLog(BSONFileRecordReader.class);
private Object key;
private BSONObject value;
byte[] headerBuf = new byte[4];
private FSDataInputStream in;
private int numDocsRead = 0;
private boolean finished = false;
BasicBSONCallback callback = new BasicBSONCallback();
BasicBSONDecoder decoder = new BasicBSONDecoder();
@Override
public void initialize(InputSplit inputSplit, TaskAttemptContext context) throws IOException, InterruptedException {
this.fileSplit = (FileSplit) inputSplit;
this.conf = context.getConfiguration();
log.info("reading split " + this.fileSplit.toString());
Path file = fileSplit.getPath();
FileSystem fs = file.getFileSystem(conf);
in = fs.open(file, 16*1024*1024);
in.seek(fileSplit.getStart());
}
@Override
public boolean nextKeyValue() throws IOException, InterruptedException {
try{
if(in.getPos() >= this.fileSplit.getStart() + this.fileSplit.getLength()){
try{
this.close();
}catch(Exception e){
}finally{
return false;
}
}
callback.reset();
int bytesRead = decoder.decode(in, callback);
BSONObject bo = (BSONObject)callback.get();
value = bo;
numDocsRead++;
if(numDocsRead % 10000 == 0){
log.debug("read " + numDocsRead + " docs from " + this.fileSplit.toString() + " at " + in.getPos());
}
return true;
}catch(Exception e){
e.printStackTrace();
log.warn("Error reading key/value from bson file: " + e.getMessage());
try{
this.close();
}catch(Exception e2){
}finally{
return false;
}
}
}
@Override
public NullWritable getCurrentKey() throws IOException, InterruptedException {
return NullWritable.get();
}
@Override
public BSONObject getCurrentValue() throws IOException, InterruptedException {
return value;
}
@Override
public float getProgress() throws IOException, InterruptedException {
if(this.finished)
return 1f;
if(in != null)
return new Float(in.getPos() - this.fileSplit.getStart()) / this.fileSplit.getLength();
return 0f;
}
@Override
public void close() throws IOException {
this.finished = true;
if(this.in != null){
in.close();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy