Development enviroment problems - eclipse, hadoop 0.20.203

2011-07-20 Thread mertoz
I am trying to run some benchmarks test with integrated hadoop schedulers and make some analysis of its performances. Because the current version from svn is not stable I am planning to do some modification on version 0.20.203. This version is not present(?) in svn so I am looking to import i

Re: Development enviroment problems - eclipse, hadoop 0.20.203

2011-07-20 Thread Harsh J
Hey, Have you tried running the 'ant eclipse' build target to prepare the eclipse project files before trying to import things? $ svn co hadoop OR $ tar xf hadoop.tar.gz Then, $ cd hadoop $ ant eclipse # sometimes eclipse-files, so try that as well $ # Done, now try to import this directory in

Re: Development enviroment problems - eclipse, hadoop 0.20.203

2011-07-20 Thread mertoz
I found source code for 0.20.203 release under "tags" option in svn.. so checkout went smoothly.. Now I am just wondering which compile options I have to choose to build a project without errors. When I choose to run build.xml with options "compile", "compile-core-text", "eclipse-files" there s

Re: Development enviroment problems - eclipse, hadoop 0.20.203

2011-07-21 Thread mertoz
Sorry Harsh I didnt saw your post.. My remaining problem is that eclipse has newer libraries like it should have. Missing libraries while building the project are following: 'build/ivy/lib/Hadoop/common/commons-logging-1.0.4.jar' 'build/ivy/lib/Hadoop/common/jetty-6.1.14.jar' 'build/ivy/lib/Had

Re: Development enviroment problems - eclipse, hadoop 0.20.203

2011-07-21 Thread Harsh J
I'm usually on trunk, but basically what you can do is hand-edit the .classpath file yourself. $ cd /workspace/hadoop $ vi # look for these entries, update the versions to the actual existing ones in the build directory. That should do it. On Thu, Jul 21, 2011 at 7:31 PM, mertoz wrote: > Sorry

Re: Development enviroment problems - eclipse, hadoop 0.20.203

2011-07-21 Thread mertoz
If I am not wrong the classpath file is constructed every time a build is made so this workaround is not a ideal solution. I tried what you suggested and there remains just one error "The project cannot be built until build path errors are resolved" -> i tried to refresh, open/close , nothing worke

Re: Development enviroment problems - eclipse, hadoop 0.20.203

2011-07-22 Thread Thomas Graves
You can try the branch 0.20.204 (branch-0.20-security-204) as I fixed a JIRA to automatically update eclipse classpath file (https://issues.apache.org/jira/browse/HADOOP-7248). I haven't had any problems with the eclipse classpath file since. Tom On 7/21/11 8:26 PM, "mertoz" wrote: > If I am

Re: Development enviroment problems - eclipse, hadoop 0.20.203

2011-09-23 Thread mertoz
t; > Sent from the Users mailing list archive at Nabble.com. > > > > -- > If you reply to this email, your message will be added to the discussion > below: > > http://hadoop-common.472056.n3.nabble.com/Development-enviroment-problems-eclipse-