Hi,
Our DSE filesystem is available using the cfs protocol like cfs://localhost but hdfs:// is not available.
Can we turn on hdfs:// too?
As I know CFS is fully compatible with Hadoop FS so I guess both of protocols should work in the same time.
The following command is ok:
dse hadoop fs -fs cfs://hostname/ -ls
But
dse hadoop fs -fs hdfs://hostname/ -ls
13/09/06 07:40:08 INFO ipc.Client: Retrying connect to server: hostname:8020. Already tried 0 time(s).
dse-core-default.xml contains the followings:
<property>
<name>cassandra.client.transport.factory</name>
<value>com.datastax.bdp.transport.client.TDseClientTransportFactory</value>
</property>
<property>
<name>fs.cfs-archive.impl</name>
<value>com.datastax.bdp.hadoop.cfs.CassandraFileSystem</value>
</property>
<property>
<name>fs.cfs.impl</name>
<value>com.datastax.bdp.hadoop.cfs.CassandraFileSystem</value>
</property>
<property>
<name>fs.default.name</name>
<value>cfs://hostname</value>
</property>
Can I add multiple value for this fs.default.name property?
Thanks,
Ferenc