Hi there, Nutch is giving an error to me saying that org.apache.hadoop.conf.Configuration common-terms.utf8 not found
I have tried to specify paths in java using the configuration object. ServletContext application = session.getServletContext(); Configuration nutchConf = NutchConfiguration.get(application); nutchConf.set("searcher.dir", NutchIndexDir); log.debug("Setting nutch plugin location"); nutchConf.set("plugin.folders","/opt/IBM/WebSphere/AppServer/profiles/default/installedApps/xtropicalisNode01Cell/xenbase.ear/common.war/WEB-INF/plugins"); log.debug("Setting nutch common-terms.utf8 location"); nutchConf.set("analysis.common.terms.file","/opt/IBM/WebSphere/AppServer/profiles/default/installedApps/xtropicalisNode01Cell/xenbase.ear/common.war/WEB-INF/plugins/common-terms.utf8"); All paths are being found , for indexes, plugins but common-terms.utf8 is not being found. 1. I have tried absolute paths 2. relative paths with respect to the nutch jar file but to no avail. 3. not specifying the "analysis.common.terms.file" property and putting the common-term.utf8 file in WEB-INF/classes folder , inside the jar file Can anyone tell me why the file is not being found. I am on a dead end please help. Thanks.