如何在win7下的eclipse中调试Hadoop2.2.0的程序
发布网友
发布时间:2022-04-21 07:08
我来回答
共2个回答
热心网友
时间:2023-11-06 23:33
在win7下配置eclipse的hadoop环境:
1、配置插件
打开Windows->Open Perspective中的Map/Rece,在此perspective下进行hadoop程序开发。
2、打开Windows->Show View中的Map/Rece Locations,如下图右键选择New Hadoop location…新建hadoop连接。
3、确认完成以后如下,eclipse会连接hadoop集群。
4、如果连接成功,在project explorer的DFS Locations下会展现hdfs集群中的文件。
5、导入hadoop程序。
6、程序执行
右键选择Run As -> Run Configurations…,在参数中填好输入输出目录,执行Run即可。
热心网友
时间:2023-11-06 23:33
如何eclipse中调试hadoop2.2.0,如果你使用的还是hadoop1.x的版本,那么,也没事,散仙在以前的博客里,也写过eclipse调试1.x的hadoop程序,两者最大的不同之处在于使用的eclipse插件不同,hadoop2.x与hadoop1.x的API,不太一致,所以插件也不一样,我们只需要使用分别对应的插件即可.
方法如下:
进入wordpress后台,Jetpack,点分享的配置,选择 Add a new service,
server name 一定要写英文不能写中文,不然就崩溃了,如douban,
private static String checkHadoopHome() {
// first check the Dflag hadoop.home.dir with JVM scope
//System.setProperty("hadoop.home.dir", "...");
String home = System.getProperty("hadoop.home.dir");
// fall back to the system/user-global env variable
if (home == null) {
home = System.getenv("HADOOP_HOME");
}
try {
// couldn't find either setting for hadoop's home directory
if (home == null) {
throw new IOException("HADOOP_HOME or hadoop.home.dir are not set.");
}
if (home.startsWith("\"") && home.endsWith("\"")) {
home = home.substring(1, home.length()-1);
}
// check that the home setting is actually a directory that exists
File homedir = new File(home);
if (!homedir.isAbsolute() || !homedir.exists() || !homedir.isDirectory()) {
throw new IOException("Hadoop home directory " + homedir
+ " does not exist, is not a directory, or is not an absolute path.");
}
home = homedir.getCanonicalPath();
} catch (IOException ioe) {
if (LOG.isDebugEnabled()) {
LOG.debug("Failed to detect a valid hadoop home directory", ioe);
}
home = null;
}
//固定本机的hadoop地址
home="D:\\hadoop-2.2.0";
return home;
}
转载,仅供参考。