com.mongodb.hadoop.hive.output.HiveMongoOutputFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-hadoop-hive Show documentation
Show all versions of mongo-hadoop-hive Show documentation
The MongoDB Connector for Hadoop is a plugin for Hadoop that provides the ability to use MongoDB as an input source and/or an output destination.
/*
* Copyright 2010-2013 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.
*/
package com.mongodb.hadoop.hive.output;
import com.mongodb.hadoop.io.BSONWritable;
import com.mongodb.hadoop.output.MongoOutputCommitter;
import com.mongodb.hadoop.output.MongoRecordWriter;
import com.mongodb.hadoop.util.CompatUtils;
import com.mongodb.hadoop.util.MongoConfigUtil;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.hive.ql.exec.FileSinkOperator.RecordWriter;
import org.apache.hadoop.hive.ql.io.HiveOutputFormat;
import org.apache.hadoop.io.Writable;
import org.apache.hadoop.mapred.JobConf;
import org.apache.hadoop.mapred.TaskAttemptContext;
import org.apache.hadoop.util.Progressable;
import java.io.IOException;
import java.util.Properties;
/*
* Define a HiveMongoOutputFormat that specifies how Hive should write data in
* Hive tables into MongoDB
*/
public class HiveMongoOutputFormat implements HiveOutputFormat {
@Override
public RecordWriter getHiveRecordWriter(final JobConf conf,
final Path finalOutPath,
final Class extends Writable> valueClass,
final boolean isCompressed,
final Properties tableProperties,
final Progressable progress) throws IOException {
return new HiveMongoRecordWriter(conf);
}
@Override
public void checkOutputSpecs(final FileSystem arg0, final JobConf arg1) throws IOException {
}
@Override
public org.apache.hadoop.mapred.RecordWriter
getRecordWriter(final FileSystem arg0, final JobConf arg1, final String arg2, final Progressable arg3) throws IOException {
throw new IOException("Hive should call 'getHiveRecordWriter' instead of 'getRecordWriter'");
}
/*
* HiveMongoRecordWriter ->
* MongoRecordWriter used to write from Hive into BSON Objects
*/
private class HiveMongoRecordWriter
extends MongoRecordWriter