Is there an API for Datastax's cassandra file system (similar to WebHDFS).
-
We are planning to use datastax cassandra as database for sturctured data. Also we are evaluating the cassandra whether we can use it to store files such as email attachments. while i am able to store the files into cassandra file system (cfs:/// or cfs-archive:///) through linux terminal commands. example: $DSE_HOME/dse hadoop fs -put /home/user/test.txt cfs:///test.txt I am looking for a RESTful API which allows me to put the files to cassandra file sytem from a remote machine, it can be either linux or windows machine. I am looking for an API which is similar to WebHDFS, which is a RESTful API for hdfs file system. I know that CFS compatabile to HDFS and all APIs of HDFS works for CFS as per datastax'x document Redirect Notice[^] It would be a great help, if anyone posts a link to CFS API or a working sample application code. Thanks.