This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Disclaimer: | |
* This file is an example on how to use the Cassandra SSTableSimpleUnsortedWriter class to create | |
* sstables from a csv input file. | |
* While this has been tested to work, this program is provided "as is" with no guarantee. Moreover, | |
* it's primary aim is toward simplicity rather than completness. In partical, don't use this as an | |
* example to parse csv files at home. | |
*/ | |
import java.nio.ByteBuffer; | |
import java.io.*; |