All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.marklogic.mapreduce.KeyValueReader Maven / Gradle / Ivy

There is a newer version: 11.3.1
Show newest version
/*
 * Copyright (c) 2020 MarkLogic Corporation
 *
 * 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.marklogic.mapreduce;

import java.io.IOException;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.io.Writable;
import org.apache.hadoop.io.WritableComparable;
import org.apache.hadoop.util.ReflectionUtils;

import com.marklogic.mapreduce.utilities.InternalUtilities;
import com.marklogic.xcc.ResultItem;

/**
 * 

MarkLogicRecordReader that fetches data from MarkLogic server and generates * key value pairs in user specified types.

* * @author jchen * * @param * @param */ public class KeyValueReader extends MarkLogicRecordReader { public static final Log LOG = LogFactory.getLog(KeyValueReader.class); static final float VALUE_TO_FRAGMENT_RATIO = 100; /** * Current key. */ private KEYIN key; /** * Current value. */ private VALUEIN value; @SuppressWarnings("unchecked") private Class keyClass; private Class valueClass; public KeyValueReader(Configuration conf) { super(conf); keyClass = conf.getClass(INPUT_KEY_CLASS, Text.class, WritableComparable.class); valueClass = conf.getClass(INPUT_VALUE_CLASS, Text.class, Writable.class); } @Override public VALUEIN getCurrentValue() throws IOException, InterruptedException { return value; } @Override public KEYIN getCurrentKey() throws IOException, InterruptedException { return key; } @Override protected void endOfResult() { key = null; value = null; } @SuppressWarnings("unchecked") @Override public boolean nextKeyValue() throws IOException, InterruptedException { if (result != null && result.hasNext()) { if (key == null) { key = (KEYIN)ReflectionUtils.newInstance(keyClass, getConf()); } ResultItem item = result.next(); InternalUtilities.assignResultValue(keyClass, item, key); if (result.hasNext()) { if (value == null) { value = (VALUEIN)ReflectionUtils.newInstance(valueClass, getConf()); } item = result.next(); InternalUtilities.assignResultValue(valueClass, item, value); count++; return true; } } endOfResult(); return false; } @Override protected boolean nextResult(ResultItem result) { return false; } @Override protected float getDefaultRatio() { return VALUE_TO_FRAGMENT_RATIO; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy