Saurabh Deshpande
Saurabh Deshpande

Reputation: 1221

Load data in bulk into cassandra

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

Answers (3)

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

Joost Reuzel
Joost Reuzel

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

abhi
abhi

Reputation: 4792

If you are looking for SQL*Loader like thing (bulk loader), then cassandra has sstableloader.

You can know more about sstableloader from here

Upvotes: 2

Related Questions