<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>DataStax Support Forums &#187; User Favorites: cloneman</title>
		<link><a href='http://www.datastax.com/support-forums/profile/cloneman'>cloneman</a></link>
		<description>Software, Support, and Training for Apache Cassandra</description>
		<language>en-US</language>
		<pubDate>Thu, 20 Jun 2013 06:10:22 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.3</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.datastax.com/support-forums/search.php</link>
		</textInput>
		<atom:link href="http://www.datastax.com/support-forums/rss/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>khahn on "CFS is not accessable"</title>
			<link>http://www.datastax.com/support-forums/topic/cfs-is-not-accessable#post-8334</link>
			<pubDate>Tue, 08 Jan 2013 23:42:48 +0000</pubDate>
			<dc:creator>khahn</dc:creator>
			<guid isPermaLink="false">8334@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;Are you trying to connect to an external address? If so, and you don't mind experimenting, try this:&#60;/p&#62;
&#60;p&#62;In the core-site.xml file, change the property fs.default.name from &#60;code&#62;file:///&#60;/code&#62; to &#60;code&#62;cfs:&#38;lt;listen_address&#38;gt;:&#38;lt;rpc_port&#38;gt;&#60;/code&#62;.&#60;/p&#62;
&#60;p&#62;This eliminates the need to specify the IP address or hostname for MapReduce jobs and all other calls to Hadoop.&#60;/p&#62;
&#60;p&#62;For more information, see &#60;a href=&#34;http://www.datastax.com/docs/datastax_enterprise2.2/solutions/about_hadoop#connecting-to-external-addresses&#34; rel=&#34;nofollow&#34;&#62;http://www.datastax.com/docs/datastax_enterprise2.2/solutions/about_hadoop#connecting-to-external-addresses&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;To create a new Cassandra File System (CassandraFS), try this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;property&#38;gt;
         &#38;lt;name&#38;gt;fs.cfs-&#38;lt;filesystem name&#38;gt;.impl&#38;lt;/name&#38;gt;
         &#38;lt;value&#38;gt;com.datastax.bdp.hadoop.cfs.CassandraFileSystem&#38;lt;/value&#38;gt;
       &#38;lt;/property&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For more information see &#60;a href=&#34;http://www.datastax.com/docs/datastax_enterprise2.2/solutions/hadoop_multiple_cfs&#34; rel=&#34;nofollow&#34;&#62;http://www.datastax.com/docs/datastax_enterprise2.2/solutions/hadoop_multiple_cfs&#60;/a&#62;.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cloneman on "CFS is not accessable"</title>
			<link>http://www.datastax.com/support-forums/topic/cfs-is-not-accessable#post-8026</link>
			<pubDate>Wed, 19 Dec 2012 23:34:08 +0000</pubDate>
			<dc:creator>cloneman</dc:creator>
			<guid isPermaLink="false">8026@http://www.datastax.com/support-forums/</guid>
			<description>&#60;p&#62;I think that I might miss some configuration. &#60;/p&#62;
&#60;p&#62;when I tried to run hadoop fs on top of CFS, got the following error:&#60;br /&#62;
&#38;gt;dse hadoop fs -ls /&#60;br /&#62;
Exception in thread &#34;main&#34; java.lang.NullPointerException&#60;br /&#62;
        at com.datastax.bdp.hadoop.cfs.CassandraFileSystemThriftStore.initConsistencyLevels(CassandraFileSystemThriftStore.java:263)&#60;br /&#62;
        at com.datastax.bdp.hadoop.cfs.CassandraFileSystemThriftStore.initialize(CassandraFileSystemThriftStore.java:202)&#60;br /&#62;
        at com.datastax.bdp.hadoop.cfs.CassandraFileSystem.initialize(CassandraFileSystem.java:67)&#60;br /&#62;
        at org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:1386)&#60;br /&#62;
        at org.apache.hadoop.fs.FileSystem.access$200(FileSystem.java:66)&#60;br /&#62;
        at org.apache.hadoop.fs.FileSystem$Cache.get(FileSystem.java:1404)&#60;br /&#62;
        at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:254)&#60;br /&#62;
        at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:123)&#60;br /&#62;
        at org.apache.hadoop.fs.FsShell.init(FsShell.java:82)&#60;br /&#62;
        at org.apache.hadoop.fs.FsShell.run(FsShell.java:1745)&#60;br /&#62;
        at org.apache.hadoop.util.ToolRunner.run(ToolRunner.java:65)&#60;br /&#62;
        at org.apache.hadoop.util.ToolRunner.run(ToolRunner.java:79)&#60;br /&#62;
        at org.apache.hadoop.fs.FsShell.main(FsShell.java:1895)&#60;/p&#62;
&#60;p&#62;In addition to the regular multi-nodes DataStax Enterprise installation (my cassandra works well), I only changed core-site.xml under $DSE_HOME/resources/hadoop/conf, as following,&#60;br /&#62;
  &#38;lt;property&#38;gt;&#60;br /&#62;
    &#38;lt;name&#38;gt;fs.default.name&#38;lt;/name&#38;gt;&#60;br /&#62;
    &#38;lt;value&#38;gt;cfs://9.21.55.151:9160/&#38;lt;/value&#38;gt;&#60;br /&#62;
  &#38;lt;/property&#38;gt;&#60;/p&#62;
&#60;p&#62;What I installed is dse-2.2.1 using a tar ball.&#60;/p&#62;
&#60;p&#62;any idea about the error?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
