Reputation: 1221
Lets say I have significant amount of data in excel. I want to load in cassandra column family?
How could I do this?
Upvotes: 1
Views: 3784
Reputation: 21
Cassandra provides sstableloader
for loading CSV data into cassandra. By using this sstabler
, you can load the bulk data into cassandra.
You can know more about sstableloader from the following link.
ramuprograms.blogspot.in/2014/07/bulk-loading-data-into-cassandra-using.html
Upvotes: 0
Reputation: 438
You may want to look at the CqlSh COPY command as well. If you can export your excel file to a CSV, you may be able to use the copy command to load it into Cassandra.
Upvotes: 1