This is 4 years old and likely doesn't work anymore. You're of course welcome to fork & update, but I won't be providing support for this. Good luck!
This tool parses CSV files into sstables for Apache Cassandra. It was written for a project involving the need to parse ~75 Million row CSV files.
Run the 'run' script with 3 arguments - <keyspace>
<column>
<input>
For example:
./run.sh Test Data test.csv
- $CASSANDRA_HOME must be set to the location of the apache-cassandra.jar & associated libraries.
- $CASSANDRA_CONFIG must be set to the location of your cassandra.yml config.
The number of columns & names are coded in DataImport.java, you'll need to change these yourself. There isn't also any error handling in the parsing, the data I was handling was known to be error-free.