Processing high volume of records with Cassandra getting BusyPoolException -


i need process millions of records.

what efficient way using phantom ?

this how table looks :

create table my_table ( key text,  timestamp bigint,  value double,  primary key (key, timestamp) ) 

i executing query per unique key (which can reach millions)

select * my_table key = 'xyz' , timestamp >= 1504660890 , timestamp < 1504670890; 

however @ point getting busypoolexception


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -