I am new to cassandra db and i am trying to import data from a csv file into cassandra, i executed the following command, to import the table, first i created the table using
create table cdma_mkt_bte (date_value timestamp primary key, region varchar, vendor varchar);
and then copied using
copy cdma_mkt_bte (date_value, region, vendor) from '/usr/share/dse/bin/cdma_mkt_bte' with HEADER = TRUE;
The problem is the table in the csv file has about 43,000 rows while only 211 rows are getting imported into cassandra, i looked at the 211 and 212th rows to see if there is strange going on, it seems to be ok. Can you please help me? and what are the other options to import a csv into the cassandra database.
Thank you! Would really appreciate the help!