Re: about write performance

2017-12-11 Thread Lucas Benevides
Good answer Oleksandr, But I think the data is inserted in the Memtable already in the right order. At least the datastax academy videos say so. But it shouldn't make any difference anyhow. Kind regards, Lucas Benevides 2017-12-08 5:41 GMT-02:00 Oleksandr Shulgin : > On Fri, Dec 8, 2017 at 3:05

Re: about write performance

2017-12-07 Thread Oleksandr Shulgin
On Fri, Dec 8, 2017 at 3:05 AM, Eunsu Kim wrote: > There is a table with a timestamp as a cluster key and sorted by ASC for > the column. > > Is it better to insert by the time order when inserting data into this > table for insertion performance? Or does it matter? > The writes hit memory table

about write performance

2017-12-07 Thread Eunsu Kim
There is a table with a timestamp as a cluster key and sorted by ASC for the column. Is it better to insert by the time order when inserting data into this table for insertion performance? Or does it matter? Thank you.