blob: ed9cafbc8c658f63eafc0f8c0064b61438046c1a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.accumulo.test.mapred;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import java.io.File;
import java.util.HashMap;
import java.util.Map;
import org.apache.accumulo.core.client.Accumulo;
import org.apache.accumulo.core.client.AccumuloClient;
import org.apache.accumulo.core.client.BatchWriter;
import org.apache.accumulo.core.clientImpl.ClientInfo;
import org.apache.accumulo.core.data.Key;
import org.apache.accumulo.core.data.Mutation;
import org.apache.accumulo.core.data.Value;
import org.apache.accumulo.harness.AccumuloClusterHarness;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapred.JobClient;
import org.apache.hadoop.mapred.JobConf;
import org.apache.hadoop.mapred.Mapper;
import org.apache.hadoop.mapred.OutputCollector;
import org.apache.hadoop.mapred.Reporter;
import org.apache.hadoop.mapred.lib.NullOutputFormat;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner;
import org.junit.Test;
/**
* This tests deprecated mapreduce code in core jar
*/
@Deprecated(since = "2.0.0")
public class AccumuloMultiTableInputFormatIT extends AccumuloClusterHarness {
private static AssertionError e1 = null;
private static AssertionError e2 = null;
private static class MRTester extends Configured implements Tool {
private static class TestMapper implements Mapper<Key,Value,Key,Value> {
Key key = null;
int count = 0;
@Override
public void map(Key k, Value v, OutputCollector<Key,Value> output, Reporter reporter) {
try {
String tableName =
((org.apache.accumulo.core.client.mapred.RangeInputSplit) reporter.getInputSplit())
.getTableName();
if (key != null)
assertEquals(key.getRow().toString(), new String(v.get()));
assertEquals(new Text(String.format("%s_%09x", tableName, count + 1)), k.getRow());
assertEquals(String.format("%s_%09x", tableName, count), new String(v.get()));
} catch (AssertionError e) {
e1 = e;
}
key = new Key(k);
count++;
}
@Override
public void configure(JobConf job) {}
@Override
public void close() {
try {
assertEquals(100, count);
} catch (AssertionError e) {
e2 = e;
}
}
}
@Override
public int run(String[] args) throws Exception {
if (args.length != 2) {
throw new IllegalArgumentException(
"Usage : " + MRTester.class.getName() + " <table1> <table2>");
}
String table1 = args[0];
String table2 = args[1];
JobConf job = new JobConf(getConf());
job.setJarByClass(this.getClass());
job.setInputFormat(
org.apache.accumulo.core.client.mapred.AccumuloMultiTableInputFormat.class);
ClientInfo ci = getClientInfo();
org.apache.accumulo.core.client.mapred.AccumuloMultiTableInputFormat.setZooKeeperInstance(job,
ci.getInstanceName(), ci.getZooKeepers());
org.apache.accumulo.core.client.mapred.AccumuloMultiTableInputFormat.setConnectorInfo(job,
ci.getPrincipal(), ci.getAuthenticationToken());
org.apache.accumulo.core.client.mapreduce.InputTableConfig tableConfig1 =
new org.apache.accumulo.core.client.mapreduce.InputTableConfig();
org.apache.accumulo.core.client.mapreduce.InputTableConfig tableConfig2 =
new org.apache.accumulo.core.client.mapreduce.InputTableConfig();
Map<String,org.apache.accumulo.core.client.mapreduce.InputTableConfig> configMap =
new HashMap<>();
configMap.put(table1, tableConfig1);
configMap.put(table2, tableConfig2);
org.apache.accumulo.core.client.mapred.AccumuloMultiTableInputFormat.setInputTableConfigs(job,
configMap);
job.setMapperClass(TestMapper.class);
job.setMapOutputKeyClass(Key.class);
job.setMapOutputValueClass(Value.class);
job.setOutputFormat(NullOutputFormat.class);
job.setNumReduceTasks(0);
return JobClient.runJob(job).isSuccessful() ? 0 : 1;
}
public static void main(String[] args) throws Exception {
Configuration conf = new Configuration();
conf.set("mapreduce.framework.name", "local");
conf.set("mapreduce.cluster.local.dir",
new File(System.getProperty("user.dir"), "target/mapreduce-tmp").getAbsolutePath());
assertEquals(0, ToolRunner.run(conf, new MRTester(), args));
}
}
@Test
public void testMap() throws Exception {
String[] tableNames = getUniqueNames(2);
String table1 = tableNames[0];
String table2 = tableNames[1];
try (AccumuloClient c = Accumulo.newClient().from(getClientProps()).build()) {
c.tableOperations().create(table1);
c.tableOperations().create(table2);
try (BatchWriter bw = c.createBatchWriter(table1);
BatchWriter bw2 = c.createBatchWriter(table2)) {
for (int i = 0; i < 100; i++) {
Mutation t1m = new Mutation(new Text(String.format("%s_%09x", table1, i + 1)));
t1m.put("", "", String.format("%s_%09x", table1, i));
bw.addMutation(t1m);
Mutation t2m = new Mutation(new Text(String.format("%s_%09x", table2, i + 1)));
t2m.put("", "", String.format("%s_%09x", table2, i));
bw2.addMutation(t2m);
}
}
MRTester.main(new String[] {table1, table2});
assertNull(e1);
assertNull(e2);
}
}
}