blob: 880ca2c065c4b3182afe1117c3a3f8e524335ded [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.vxquery.xtest;
import java.io.IOException;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.hdfs.MiniDFSCluster;
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
import org.apache.hadoop.mapred.JobConf;
public class MiniDFS {
private MiniDFSCluster dfsCluster;
private static final String PATH_TO_HADOOP_CONF = "src/test/resources/hadoop/conf";
private static final String DATA_PATH = "src/test/resources/TestSources/ghcnd";
public void startHDFS(String folder) throws IOException {
JobConf conf = new JobConf();
conf.addResource(new Path(PATH_TO_HADOOP_CONF + "/core-site.xml"));
conf.addResource(new Path(PATH_TO_HADOOP_CONF + "/mapred-site.xml"));
conf.addResource(new Path(PATH_TO_HADOOP_CONF + "/hdfs-site.xml"));
int numDataNodes = 1;
int nameNodePort = 40000;
System.setProperty("hadoop.log.dir", "logs");
System.setProperty("test.build.data", folder.concat("/"));
MiniDFSCluster.Builder build = new MiniDFSCluster.Builder(conf);
build.nameNodePort(nameNodePort);
build.nameNodeHttpPort(nameNodePort + 34);
build.numDataNodes(numDataNodes);
build.checkExitOnShutdown(true);
build.startupOption(StartupOption.REGULAR);
build.format(true);
build.waitSafeMode(true);
dfsCluster = build.build();
FileSystem dfs = FileSystem.get(conf);
Path src = new Path(DATA_PATH);
dfs.mkdirs(new Path("/tmp"));
Path dest = new Path("/tmp/vxquery-hdfs-test");
dfs.copyFromLocalFile(src, dest);
if (dfs.exists(dest)) {
System.err.println("Test files copied to HDFS successfully");
}
dfs.close();
}
public void shutdownHDFS() {
System.err.println("Tests completed.Shutting down HDFS");
dfsCluster.shutdown();
}
}