blob: 5ccb4ce4cf06928a81629f8d84599abfb4f9a4a9 [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.hadoop.streaming;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.File;
import org.junit.Test;
import static org.junit.Assert.*;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.mapred.JobConf;
import org.apache.hadoop.mapred.MiniMRCluster;
import org.apache.hadoop.mapred.TaskReport;
import org.apache.hadoop.mapreduce.JobContext;
import org.apache.hadoop.mapreduce.server.jobtracker.JTConfig;
/**
* Tests for the ability of a streaming task to set the status
* by writing "reporter:status:" lines to stderr. Uses MiniMR
* since the local jobtracker doesn't track status.
*/
public class TestStreamingStatus {
private static String TEST_ROOT_DIR =
new File(System.getProperty("test.build.data","/tmp"))
.toURI().toString().replace(' ', '+');
protected String INPUT_FILE = TEST_ROOT_DIR + "/input.txt";
protected String OUTPUT_DIR = TEST_ROOT_DIR + "/out";
protected String input = "roses.are.red\nviolets.are.blue\nbunnies.are.pink\n";
protected String map = StreamUtil.makeJavaCommand(StderrApp.class, new String[]{"3", "0", "0", "true"});
protected String[] genArgs(int jobtrackerPort) {
return new String[] {
"-input", INPUT_FILE,
"-output", OUTPUT_DIR,
"-mapper", map,
"-jobconf", JobContext.NUM_MAPS + "=1",
"-jobconf", JobContext.NUM_REDUCES + "=0",
"-jobconf", JobContext.PRESERVE_FAILED_TASK_FILES + "=true",
"-jobconf", "stream.tmpdir="+System.getProperty("test.build.data","/tmp"),
"-jobconf", JTConfig.JT_IPC_ADDRESS + "=localhost:"+jobtrackerPort,
"-jobconf", "fs.default.name=file:///"
};
}
public void makeInput(FileSystem fs) throws IOException {
Path inFile = new Path(INPUT_FILE);
DataOutputStream file = fs.create(inFile);
file.writeBytes(input);
file.close();
}
public void clean(FileSystem fs) {
try {
Path outDir = new Path(OUTPUT_DIR);
fs.delete(outDir, true);
} catch (Exception e) {}
try {
Path inFile = new Path(INPUT_FILE);
fs.delete(inFile, false);
} catch (Exception e) {}
}
@Test
public void testStreamingStatus() throws Exception {
MiniMRCluster mr = null;
FileSystem fs = null;
JobConf conf = new JobConf();
conf.setBoolean(JTConfig.JT_RETIREJOBS, false);
try {
mr = new MiniMRCluster(1, "file:///", 3, null , null, conf);
Path inFile = new Path(INPUT_FILE);
fs = inFile.getFileSystem(mr.createJobConf());
clean(fs);
makeInput(fs);
StreamJob job = new StreamJob();
int failed = job.run(genArgs(mr.getJobTrackerPort()));
assertEquals(0, failed);
TaskReport[] reports = job.jc_.getMapTaskReports(job.jobId_);
assertEquals(1, reports.length);
assertEquals("starting echo > sort", reports[0].getState());
} finally {
if (fs != null) { clean(fs); }
if (mr != null) { mr.shutdown(); }
}
}
}