|
Hi, I am trying to run bixo on a client machine. I have mapr-core installed on to it. I also exported the following library export LD_LIBRARY_PATH=/opt/mapr/lib When I run the crawl example, I get the following exception:
It looks like it doesn't find the DFS and the jobtracker. DO I need to modify any configuration? I also set up hive on the same client and it can launch mapred jobs successfully. Thanks. |
|
Kas, How did you tell Bixo where the cluster is? Do you have paths that look like hdfs://host:port/path or maprfs://host:port/path ? If so, these need to be just maprfs:///path Make sure you don't mention a host name in the file path. My core-site.xml looks like: <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="configuration.xsl"?> <configuration> <property> <name>fs.default.name</name> <value>maprfs:///</value> <description>The name of the default file system. A URI whose scheme and authority determine the FileSystem implementation. The uri's scheme determines the config property (fs.SCHEME.impl) naming the FileSystem implementation class. The uri's authority is used to determine the host, port, etc. for a filesystem.</description> </property> </configuration>
(02 Dec '11, 12:37)
Kas
Sure. The fact that hive works well indicates that core-site probably isn't the problem. How do you tell Bixo where to get and put files? What do you tell it?
(02 Dec '11, 12:42)
TedDunning ♦♦
I am using mapR-core as oppossed to mapR-client. Do you know if they might impact the working of Bixo?
(05 Dec '11, 16:15)
Kas
mapr-core is a superset of mapr-client. Other then that I assume you run configure.sh on the node you are trying to run Bixo on, so that node can become part of the cluster.
(05 Dec '11, 19:41)
yufeldman ♦♦
|