blob: 3a13d70790fa884a52e0a23a22be5d905a538ad5 [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.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import java.io.File;
import java.io.IOException;
import java.io.PrintStream;
import java.util.Arrays;
import java.util.Iterator;
import java.util.Map.Entry;
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.client.Scanner;
import org.apache.accumulo.core.clientImpl.ClientInfo;
import org.apache.accumulo.core.clientImpl.Credentials;
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.core.security.Authorizations;
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.RunningJob;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
/**
* This tests deprecated mapreduce code in core jar
*/
@Deprecated(since = "2.0.0")
public class TokenFileIT extends AccumuloClusterHarness {
private static AssertionError e1 = null;
public static class MRTokenFileTester extends Configured implements Tool {
private static class TestMapper implements Mapper<Key,Value,Text,Mutation> {
Key key = null;
int count = 0;
OutputCollector<Text,Mutation> finalOutput;
@Override
public void map(Key k, Value v, OutputCollector<Text,Mutation> output, Reporter reporter) {
// verify cached token file is available locally
for (Class<?> formatClass : Arrays.asList(
org.apache.accumulo.core.client.mapred.AccumuloInputFormat.class,
org.apache.accumulo.core.client.mapred.AccumuloOutputFormat.class)) {
String formatName = formatClass.getSimpleName();
File file = new File(formatName + ".tokenfile");
assertTrue(file.exists());
assertTrue(file.canRead());
}
finalOutput = output;
try {
if (key != null)
assertEquals(key.getRow().toString(), new String(v.get()));
assertEquals(k.getRow(), new Text(String.format("%09x", count + 1)));
assertEquals(new String(v.get()), String.format("%09x", count));
} catch (AssertionError e) {
e1 = e;
}
key = new Key(k);
count++;
}
@Override
public void configure(JobConf job) {}
@Override
public void close() throws IOException {
Mutation m = new Mutation("total");
m.put("", "", Integer.toString(count));
finalOutput.collect(new Text(), m);
}
}
@Override
public int run(String[] args) throws Exception {
if (args.length != 3) {
throw new IllegalArgumentException("Usage : " + MRTokenFileTester.class.getName()
+ " <token file> <inputtable> <outputtable>");
}
String user = getAdminPrincipal();
String tokenFile = args[0];
String table1 = args[1];
String table2 = args[2];
JobConf job = new JobConf(getConf());
job.setJarByClass(this.getClass());
job.setInputFormat(org.apache.accumulo.core.client.mapred.AccumuloInputFormat.class);
ClientInfo info = getClientInfo();
org.apache.accumulo.core.client.mapred.AccumuloInputFormat.setZooKeeperInstance(job,
info.getInstanceName(), info.getZooKeepers());
org.apache.accumulo.core.client.mapred.AccumuloInputFormat.setConnectorInfo(job, user,
tokenFile);
org.apache.accumulo.core.client.mapred.AccumuloInputFormat.setInputTableName(job, table1);
job.setMapperClass(TestMapper.class);
job.setMapOutputKeyClass(Key.class);
job.setMapOutputValueClass(Value.class);
job.setOutputFormat(org.apache.accumulo.core.client.mapred.AccumuloOutputFormat.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(Mutation.class);
org.apache.accumulo.core.client.mapred.AccumuloOutputFormat.setZooKeeperInstance(job,
info.getInstanceName(), info.getZooKeepers());
org.apache.accumulo.core.client.mapred.AccumuloOutputFormat.setConnectorInfo(job, user,
tokenFile);
org.apache.accumulo.core.client.mapred.AccumuloOutputFormat.setCreateTables(job, false);
org.apache.accumulo.core.client.mapred.AccumuloOutputFormat.setDefaultTableName(job, table2);
job.setNumReduceTasks(0);
RunningJob rj = JobClient.runJob(job);
if (rj.isSuccessful()) {
return 0;
} else {
System.out.println(rj.getFailureInfo());
return 1;
}
}
}
@Rule
public TemporaryFolder folder =
new TemporaryFolder(new File(System.getProperty("user.dir") + "/target"));
@SuppressFBWarnings(value = "PATH_TRAVERSAL_IN", justification = "path provided by test")
@Test
public void testMR() 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)) {
for (int i = 0; i < 100; i++) {
Mutation m = new Mutation(new Text(String.format("%09x", i + 1)));
m.put("", "", String.format("%09x", i));
bw.addMutation(m);
}
}
File tf = folder.newFile("root_test.pw");
try (PrintStream out = new PrintStream(tf)) {
String outString = new Credentials(getAdminPrincipal(), getAdminToken()).serialize();
out.println(outString);
}
Configuration conf = cluster.getServerContext().getHadoopConf();
conf.set("hadoop.tmp.dir", new File(tf.getAbsolutePath()).getParent());
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 MRTokenFileTester(),
new String[] {tf.getAbsolutePath(), table1, table2}));
if (e1 != null) {
e1.printStackTrace();
}
assertNull(e1);
try (Scanner scanner = c.createScanner(table2, new Authorizations())) {
Iterator<Entry<Key,Value>> iter = scanner.iterator();
assertTrue(iter.hasNext());
Entry<Key,Value> entry = iter.next();
assertEquals(Integer.parseInt(new String(entry.getValue().get())), 100);
assertFalse(iter.hasNext());
}
}
}
}