You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Matt Jurik (JIRA)" <ji...@apache.org> on 2013/10/21 13:42:41 UTC

[jira] [Created] (CASSANDRA-6223) SELECT timeouts due to stackoverflow on cassandra node

Matt Jurik created CASSANDRA-6223:
-------------------------------------

             Summary: SELECT timeouts due to stackoverflow on cassandra node
                 Key: CASSANDRA-6223
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-6223
             Project: Cassandra
          Issue Type: Bug
         Environment: 1.2.10, ubuntu 12.04, oracle jdk 7u40, -Xss256k
            Reporter: Matt Jurik


I seems that I regularly experience a timeout when querying for a specific partition key in one of my tables. I can repro from datastax-java-driver and cqlsh. There isn't anything particularly interesting about this partition key; it has less than 100,000 rows with fixed size columns.

{code}
cqlsh> use my_keyspace ;
cqlsh:my_keyspace> CONSISTENCY LOCAL_QUORUM ;
Consistency level set to LOCAL_QUORUM.
cqlsh:my_keyspace> select * from my_table where s = 2047653 limit 100000000;
Request did not complete within rpc_timeout.

Tracing session: efd49ae0-3a41-11e3-9dcf-c74364da0bbf

 activity                                                          | timestamp    | source      | source_elapsed
-------------------------------------------------------------------+--------------+-------------+----------------
                                                execute_cql3_query | 04:14:22,228 | 10.12.34.48 |              0
 Parsing select * from my_table where s = 2047653 limit 100000000; | 04:14:22,229 | 10.12.34.48 |           1548
                                               Preparing statement | 04:14:22,230 | 10.12.34.48 |           2663
                          Enqueuing digest request to /10.12.34.40 | 04:14:22,231 | 10.12.34.48 |           3206
                      Executing single-partition query on my_table | 04:14:22,231 | 10.12.34.48 |           3336
                                      Acquiring sstable references | 04:14:22,231 | 10.12.34.48 |           3411
                                       Merging memtable tombstones | 04:14:22,231 | 10.12.34.48 |           3503
                                   Sending message to /10.12.34.40 | 04:14:22,231 | 10.12.34.48 |           3566
                        Bloom filter allows skipping sstable 38138 | 04:14:22,231 | 10.12.34.48 |           3598
                                   Key cache hit for sstable 38102 | 04:14:22,231 | 10.12.34.48 |           3692
                       Seeking to partition beginning in data file | 04:14:22,231 | 10.12.34.48 |           3710
                                   Key cache hit for sstable 37767 | 04:14:22,232 | 10.12.34.48 |           4265
                       Seeking to partition beginning in data file | 04:14:22,232 | 10.12.34.48 |           4285
                        Bloom filter allows skipping sstable 37220 | 04:14:22,232 | 10.12.34.48 |           4696
                        Merging data from memtables and 2 sstables | 04:14:22,232 | 10.12.34.48 |           4719
                                Message received from /10.12.34.48 | 04:14:22,234 | 10.12.34.40 |            101
                      Executing single-partition query on my_table | 04:14:22,236 | 10.12.34.40 |           2258
                                      Acquiring sstable references | 04:14:22,236 | 10.12.34.40 |           2410
                                       Merging memtable tombstones | 04:14:22,236 | 10.12.34.40 |           2528
                                   Key cache hit for sstable 39973 | 04:14:22,236 | 10.12.34.40 |           2622
                       Seeking to partition beginning in data file | 04:14:22,236 | 10.12.34.40 |           2686
                        Bloom filter allows skipping sstable 34597 | 04:14:22,237 | 10.12.34.40 |           3200
                        Bloom filter allows skipping sstable 26753 | 04:14:22,237 | 10.12.34.40 |           3259
                        Merging data from memtables and 1 sstables | 04:14:22,237 | 10.12.34.40 |           3281
                            Read 83652 live and 0 tombstoned cells | 04:14:23,204 | 10.12.34.40 |         970145
                                Enqueuing response to /10.12.34.48 | 04:14:23,324 | 10.12.34.40 |        1089946
                                   Sending message to /10.12.34.48 | 04:14:23,324 | 10.12.34.40 |        1090355
                                Message received from /10.12.34.40 | 04:14:23,325 | 10.12.34.48 |        1097153
                             Processing response from /10.12.34.40 | 04:14:23,325 | 10.12.34.48 |        1097500
               Timed out; received 1 of 2 responses (only digests) | 04:14:32,232 | 10.12.34.48 |       10003795
                                                  Request complete | 04:14:32,231 | 10.12.34.48 |       10003974
{code}

Stacktrace from 10.12.34.48:
{code}
ERROR [ReadStage:366027] 2013-10-21 04:14:22,468 (org.apache.cassandra.service.CassandraDaemon) Exception in thread Thread[ReadStage:366027,5,main]
java.lang.StackOverflowError
    at org.apache.cassandra.db.marshal.AbstractCompositeType.compare(AbstractCompositeType.java:78)
    at org.apache.cassandra.db.marshal.AbstractCompositeType.compare(AbstractCompositeType.java:31)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:439)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
        at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
    at org.apache.cassandra.db.RangeTombstoneList.weakInsertFrom(RangeTombstoneList.java:472)
    at org.apache.cassandra.db.RangeTombstoneList.insertAfter(RangeTombstoneList.java:456)
    at org.apache.cassandra.db.RangeTombstoneList.insertFrom(RangeTombstoneList.java:405)
{code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)