Showing posts with label test. Show all posts
Showing posts with label test. Show all posts

Saturday, July 1, 2017

Journey on cassandra development part2

In the last article, we covered download, extract cassandra source and setup into eclipse. In this article, we should take a look how to run tests in cassandra. Development without test (either manual or automatic) is just half way there. To make a full cycle, we should explore cassandra tests. First, a few introduction.

Unit tests can be run from the command line using ant test command,

* to execute a test suite
 $ ant test -Dtest.name=<simple_classname>  

For example, to run all test methods in the org.apache.cassandra.cql3.SimpleQueryTest class, you would run:

  $ ant test -Dtest.name=SimpleQueryTest  
 
* for individual tests.
  $ ant testsome -Dtest.name=<FQCN> -Dtest.methods=<testmethod1>[,testmethod2]  

To run only the testStaticCompactTables() test method from SimpleQueryTest class, you would run:

 $ ant testsome -Dtest.name=org.apache.cassandra.cql3.SimpleQueryTest -Dtest.methods=testStaticCompactTables   

now to the the longgggggg tests.

Test that consume a significant amount of time during execution can be found in the test/long directory and executed as a regular JUnit test or standalone program. Except for the execution time, there’s nothing really special about them. However, ant will execute tests under test/long only when using the ant long-test target.

 $ ant long-test  

there are also Distribution Test or DTest, performance testing, stress tool and cstar_perf but I won't go into that, if you want, you can read more here.

Okay, enough of the introductions, let's get into the works.Before tests are run , I have to run ant clean and then ant command. Make sure you close eclipse so eclipse will not auto delete files that required by the test.

* to execute a test suite

 user@localhost:~/cassandra-trunk$ ant test -Dtest.name=DatabaseDescriptorTest  
 Buildfile: /home/user/cassandra-trunk/build.xml  
   
 init:  
   
 maven-ant-tasks-localrepo:  
   
 maven-ant-tasks-download:  
   
 maven-ant-tasks-init:  
   
 maven-declare-dependencies:  
   
 maven-ant-tasks-retrieve-build:  
   
 init-dependencies:  
    [echo] Loading dependency paths from file: /home/user/cassandra-trunk/build/build-dependencies.xml  
   
 init-dependencies:  
    [echo] Loading dependency paths from file: /home/user/cassandra-trunk/build/build-dependencies-sources.xml  
   [unzip] Expanding: /home/user/cassandra-trunk/build/lib/jars/org.jacoco.agent-0.7.5.201505241946.jar into /home/user/cassandra-trunk/build/lib/jars  
   
 check-gen-cql3-grammar:  
   
 gen-cql3-grammar:  
   
 generate-cql-html:  
   
 generate-jflex-java:  
   
 build-project:  
    [echo] apache-cassandra: /home/user/cassandra-trunk/build.xml  
   
 createVersionPropFile:  
 [propertyfile] Updating property file: /home/user/cassandra-trunk/src/resources/org/apache/cassandra/config/version.properties  
    [copy] Copying 1 file to /home/user/cassandra-trunk/build/classes/main  
   
 build:  
   
 build-test:  
   
 test:  
   [junit] WARNING: multiple versions of ant detected in path for junit   
   [junit]     jar:file:/usr/share/ant/lib/ant.jar!/org/apache/tools/ant/Project.class  
   [junit]   and jar:file:/home/user/cassandra-trunk/build/lib/jars/ant-1.9.4.jar!/org/apache/tools/ant/Project.class  
   [junit] Testsuite: org.apache.cassandra.config.DatabaseDescriptorTest  
   [junit] Testsuite: org.apache.cassandra.config.DatabaseDescriptorTest Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.878 sec  
   [junit]   
   [junit] ------------- Standard Output ---------------  
   [junit] Evaluating docker0  
   [junit] Evaluating enp9s0  
   [junit] Evaluating lo  
   [junit] ERROR [main] 2016-09-08 21:09:51,889 ?:? - SLF4J: stderr  
   [junit] INFO [main] 2016-09-08 21:09:52,028 ?:? - Configuration location: file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] DEBUG [main] 2016-09-08 21:09:52,029 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] INFO [main] 2016-09-08 21:09:52,418 ?:? - Node configuration:[allocate_tokens_for_keyspace=null; authenticator=null; authorizer=null; auto_bootstrap=true; auto_snapshot=true; batch_size_fail_threshold_in_kb=50; batch_size_warn_threshold_in_kb=5; batchlog_replay_throttle_in_kb=1024; broadcast_address=null; broadcast_rpc_address=null; buffer_pool_use_heap_if_exhausted=true; cas_contention_timeout_in_ms=1000; cdc_enabled=false; cdc_free_space_check_interval_ms=250; cdc_raw_directory=build/test/cassandra/cdc_raw:0; cdc_total_space_in_mb=null; client_encryption_options=<REDACTED>; cluster_name=Test Cluster; column_index_cache_size_in_kb=2; column_index_size_in_kb=4; commit_failure_policy=stop; commitlog_compression=null; commitlog_directory=build/test/cassandra/commitlog:0; commitlog_max_compression_buffers_in_pool=3; commitlog_periodic_queue_size=-1; commitlog_segment_size_in_mb=5; commitlog_sync=batch; commitlog_sync_batch_window_in_ms=1.0; commitlog_sync_period_in_ms=null; commitlog_total_space_in_mb=null; compaction_large_partition_warning_threshold_mb=100; compaction_throughput_mb_per_sec=0; concurrent_compactors=4; concurrent_counter_writes=32; concurrent_materialized_view_writes=32; concurrent_reads=32; concurrent_replicates=null; concurrent_writes=32; counter_cache_keys_to_save=2147483647; counter_cache_save_period=7200; counter_cache_size_in_mb=null; counter_write_request_timeout_in_ms=5000; credentials_cache_max_entries=1000; credentials_update_interval_in_ms=-1; credentials_validity_in_ms=2000; cross_node_timeout=false; data_file_directories=[Ljava.lang.String;@1a18644; disk_access_mode=mmap; disk_failure_policy=ignore; disk_optimization_estimate_percentile=0.95; disk_optimization_page_cross_chance=0.1; disk_optimization_strategy=ssd; dynamic_snitch=true; dynamic_snitch_badness_threshold=0.1; dynamic_snitch_reset_interval_in_ms=600000; dynamic_snitch_update_interval_in_ms=100; enable_scripted_user_defined_functions=true; enable_user_defined_functions=true; enable_user_defined_functions_threads=true; encryption_options=null; endpoint_snitch=org.apache.cassandra.locator.SimpleSnitch; file_cache_size_in_mb=null; gc_log_threshold_in_ms=200; gc_warn_threshold_in_ms=0; hinted_handoff_disabled_datacenters=[]; hinted_handoff_enabled=true; hinted_handoff_throttle_in_kb=1024; hints_compression=null; hints_directory=build/test/cassandra/hints:0; hints_flush_period_in_ms=10000; incremental_backups=true; index_interval=null; index_summary_capacity_in_mb=null; index_summary_resize_interval_in_minutes=60; initial_token=null; inter_dc_stream_throughput_outbound_megabits_per_sec=200; inter_dc_tcp_nodelay=true; internode_authenticator=null; internode_compression=none; internode_recv_buff_size_in_bytes=null; internode_send_buff_size_in_bytes=null; key_cache_keys_to_save=2147483647; key_cache_save_period=14400; key_cache_size_in_mb=null; listen_address=127.0.0.1; listen_interface=null; listen_interface_prefer_ipv6=false; listen_on_broadcast_address=false; max_hint_window_in_ms=10800000; max_hints_delivery_threads=2; max_hints_file_size_in_mb=128; max_mutation_size_in_kb=null; max_streaming_retries=3; max_value_size_in_mb=256; memtable_allocation_type=offheap_objects; memtable_cleanup_threshold=null; memtable_flush_writers=null; memtable_heap_space_in_mb=null; memtable_offheap_space_in_mb=null; min_free_space_per_drive_in_mb=50; native_transport_max_concurrent_connections=-1; native_transport_max_concurrent_connections_per_ip=-1; native_transport_max_frame_size_in_mb=256; native_transport_max_threads=128; native_transport_port=9042; native_transport_port_ssl=null; num_tokens=1; otc_coalescing_strategy=TIMEHORIZON; otc_coalescing_window_us=200; partitioner=org.apache.cassandra.dht.ByteOrderedPartitioner; permissions_cache_max_entries=1000; permissions_update_interval_in_ms=-1; permissions_validity_in_ms=2000; phi_convict_threshold=8.0; prepared_statements_cache_size_mb=null; range_request_timeout_in_ms=10000; read_request_timeout_in_ms=5000; request_scheduler=org.apache.cassandra.scheduler.RoundRobinScheduler; request_scheduler_id=keyspace; request_scheduler_options=null; request_timeout_in_ms=10000; role_manager=null; roles_cache_max_entries=1000; roles_update_interval_in_ms=-1; roles_validity_in_ms=2000; row_cache_class_name=org.apache.cassandra.cache.OHCProvider; row_cache_keys_to_save=2147483647; row_cache_save_period=0; row_cache_size_in_mb=16; rpc_address=null; rpc_interface=null; rpc_interface_prefer_ipv6=false; rpc_keepalive=true; rpc_listen_backlog=50; rpc_max_threads=2147483647; rpc_min_threads=16; rpc_port=9170; rpc_recv_buff_size_in_bytes=null; rpc_send_buff_size_in_bytes=null; rpc_server_type=sync; saved_caches_directory=build/test/cassandra/saved_caches:0; seed_provider=org.apache.cassandra.locator.SimpleSeedProvider{seeds=127.0.0.1}; server_encryption_options=<REDACTED>; slow_query_log_timeout_in_ms=500; snapshot_before_compaction=false; ssl_storage_port=7001; sstable_preemptive_open_interval_in_mb=50; start_native_transport=true; start_rpc=true; storage_port=7010; stream_throughput_outbound_megabits_per_sec=200; streaming_keep_alive_period_in_secs=300; streaming_socket_timeout_in_ms=86400000; thrift_framed_transport_size_in_mb=15; thrift_max_message_length_in_mb=16; thrift_prepared_statements_cache_size_mb=null; tombstone_failure_threshold=100000; tombstone_warn_threshold=1000; tracetype_query_ttl=86400; tracetype_repair_ttl=604800; transparent_data_encryption_options=org.apache.cassandra.config.TransparentDataEncryptionOptions@5acf93bb; trickle_fsync=false; trickle_fsync_interval_in_kb=10240; truncate_request_timeout_in_ms=60000; unlogged_batch_across_partitions_warn_threshold=10; user_defined_function_fail_timeout=1500; user_defined_function_warn_timeout=500; user_function_timeout_policy=die; windows_timer_interval=0; write_request_timeout_in_ms=2000]  
   [junit] DEBUG [main] 2016-09-08 21:09:52,418 ?:? - Syncing log with a batch window of 1.0  
   [junit] INFO [main] 2016-09-08 21:09:52,418 ?:? - DiskAccessMode is mmap, indexAccessMode is mmap  
   [junit] INFO [main] 2016-09-08 21:09:52,418 ?:? - Global memtable on-heap threshold is enabled at 227MB  
   [junit] INFO [main] 2016-09-08 21:09:52,418 ?:? - Global memtable off-heap threshold is enabled at 227MB  
   [junit] INFO [main] 2016-09-08 21:09:52,501 ?:? - Started the RoundRobin Request Scheduler  
   [junit] DEBUG [main] 2016-09-08 21:09:52,502 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] INFO [ScheduledTasks:1] 2016-09-08 21:09:52,568 ?:? - Overriding RING_DELAY to 1000ms  
   [junit] DEBUG [main] 2016-09-08 21:09:52,613 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] DEBUG [main] 2016-09-08 21:09:52,623 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] DEBUG [main] 2016-09-08 21:09:52,633 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] DEBUG [main] 2016-09-08 21:09:52,648 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] INFO [main] 2016-09-08 21:09:52,763 ?:? - Initialized prepared statement caches with 10 MB (native) and 10 MB (Thrift)  
   [junit] DEBUG [main] 2016-09-08 21:09:52,941 ?:? - Using SLF4J as the default logging framework  
   [junit] DEBUG [main] 2016-09-08 21:09:52,942 ?:? - -Dio.netty.recycler.maxCapacity.default: 262144  
   [junit] DEBUG [main] 2016-09-08 21:09:52,942 ?:? - -Dio.netty.recycler.maxSharedCapacityFactor: 2  
   [junit] DEBUG [main] 2016-09-08 21:09:52,942 ?:? - -Dio.netty.recycler.linkCapacity: 16  
   [junit] DEBUG [main] 2016-09-08 21:09:53,006 ?:? - Adding org.apache.cassandra.config.CFMetaData@6af9fcb2[cfId=abac5682-dea6-31c5-b535-b3d6cffd0fb6,ksName=system_schema,cfName=keyspaces,flags=[COMPOUND],params=TableParams{comment=keyspace definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [durable_writes replication]],partitionKeyColumns=[keyspace_name],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[replication, keyspace_name, durable_writes],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,018 ?:? - Adding org.apache.cassandra.config.CFMetaData@512baff6[cfId=afddfb9d-bc1e-3068-8056-eed6c302ba09,ksName=system_schema,cfName=tables,flags=[COMPOUND],params=TableParams{comment=table definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [bloom_filter_fp_chance caching cdc comment compaction compression crc_check_chance dclocal_read_repair_chance default_time_to_live extensions flags gc_grace_seconds id max_index_interval memtable_flush_period_in_ms min_index_interval read_repair_chance speculative_retry]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[cdc, dclocal_read_repair_chance, gc_grace_seconds, speculative_retry, id, memtable_flush_period_in_ms, default_time_to_live, min_index_interval, bloom_filter_fp_chance, compression, caching, crc_check_chance, compaction, comment, keyspace_name, read_repair_chance, table_name, extensions, max_index_interval, flags],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,019 ?:? - Adding org.apache.cassandra.config.CFMetaData@1c93f6e1[cfId=24101c25-a2ae-3af7-87c1-b40ee1aca33f,ksName=system_schema,cfName=columns,flags=[COMPOUND],params=TableParams{comment=column definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [clustering_order column_name_bytes kind position type]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name, column_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[kind, clustering_order, column_name_bytes, position, keyspace_name, table_name, type, column_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,019 ?:? - Adding org.apache.cassandra.config.CFMetaData@1458ed9c[cfId=4df70b66-6b05-3251-95a1-32b54005fd48,ksName=system_schema,cfName=triggers,flags=[COMPOUND],params=TableParams{comment=trigger definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [options]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name, trigger_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[table_name, options, keyspace_name, trigger_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,020 ?:? - Adding org.apache.cassandra.config.CFMetaData@e383572[cfId=5e7583b5-f3f4-3af1-9a39-b7e1d6f5f11f,ksName=system_schema,cfName=dropped_columns,flags=[COMPOUND],params=TableParams{comment=dropped column registry, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [dropped_time type]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name, column_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[table_name, type, keyspace_name, column_name, dropped_time],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,020 ?:? - Adding org.apache.cassandra.config.CFMetaData@363a52f[cfId=9786ac1c-dd58-3201-a7cd-ad556410c985,ksName=system_schema,cfName=views,flags=[COMPOUND],params=TableParams{comment=view definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [base_table_id base_table_name bloom_filter_fp_chance caching cdc comment compaction compression crc_check_chance dclocal_read_repair_chance default_time_to_live extensions gc_grace_seconds id include_all_columns max_index_interval memtable_flush_period_in_ms min_index_interval read_repair_chance speculative_retry where_clause]],partitionKeyColumns=[keyspace_name],clusteringColumns=[view_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[cdc, dclocal_read_repair_chance, gc_grace_seconds, speculative_retry, base_table_name, id, memtable_flush_period_in_ms, default_time_to_live, where_clause, min_index_interval, view_name, bloom_filter_fp_chance, compression, caching, crc_check_chance, compaction, base_table_id, comment, keyspace_name, read_repair_chance, include_all_columns, extensions, max_index_interval],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,021 ?:? - Adding org.apache.cassandra.config.CFMetaData@a4add54[cfId=5a8b1ca8-6602-3f77-a045-9273d308917a,ksName=system_schema,cfName=types,flags=[COMPOUND],params=TableParams{comment=user defined type definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [field_names field_types]],partitionKeyColumns=[keyspace_name],clusteringColumns=[type_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[field_names, type_name, field_types, keyspace_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,021 ?:? - Adding org.apache.cassandra.config.CFMetaData@5f9be66c[cfId=96489b79-80be-3e14-a701-66a0b9159450,ksName=system_schema,cfName=functions,flags=[COMPOUND],params=TableParams{comment=user defined function definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.FrozenType(org.apache.cassandra.db.marshal.ListType(org.apache.cassandra.db.marshal.UTF8Type))),partitionColumns=[[] | [argument_names body called_on_null_input language return_type]],partitionKeyColumns=[keyspace_name],clusteringColumns=[function_name, argument_types],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[function_name, keyspace_name, argument_names, return_type, body, argument_types, called_on_null_input, language],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,023 ?:? - Adding org.apache.cassandra.config.CFMetaData@66c61024[cfId=924c5587-2e3a-345b-b10c-12f37c1ba895,ksName=system_schema,cfName=aggregates,flags=[COMPOUND],params=TableParams{comment=user defined aggregate definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.FrozenType(org.apache.cassandra.db.marshal.ListType(org.apache.cassandra.db.marshal.UTF8Type))),partitionColumns=[[] | [final_func initcond return_type state_func state_type]],partitionKeyColumns=[keyspace_name],clusteringColumns=[aggregate_name, argument_types],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[final_func, aggregate_name, initcond, state_func, keyspace_name, return_type, state_type, argument_types],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,023 ?:? - Adding org.apache.cassandra.config.CFMetaData@c9d0d6[cfId=0feb57ac-311f-382f-ba6d-9024d305702f,ksName=system_schema,cfName=indexes,flags=[COMPOUND],params=TableParams{comment=secondary index definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [kind options]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name, index_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[kind, table_name, options, keyspace_name, index_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,081 ?:? - Adding org.apache.cassandra.config.CFMetaData@32c726ee[cfId=9f5c6374-d485-3229-9a0a-5094af9ad1e3,ksName=system,cfName=IndexInfo,flags=[DENSE],params=TableParams{comment=built column indexes, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [value]],partitionKeyColumns=[table_name],clusteringColumns=[index_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[table_name, index_name, value],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,082 ?:? - Adding org.apache.cassandra.config.CFMetaData@76f4b65[cfId=919a4bc5-7a33-3573-b03e-13fc3f68b465,ksName=system,cfName=batches,flags=[COMPOUND],params=TableParams{comment=batches awaiting replay, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=2, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [version mutations]],partitionKeyColumns=[id],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.TimeUUIDType,columnMetadata=[mutations, version, id],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,083 ?:? - Adding org.apache.cassandra.config.CFMetaData@36328d33[cfId=b7b7f0c2-fd0a-3410-8c05-3ef614bb7c2d,ksName=system,cfName=paxos,flags=[COMPOUND],params=TableParams{comment=in-progress paxos proposals, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.LeveledCompactionStrategy, options={}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UUIDType),partitionColumns=[[] | [in_progress_ballot most_recent_commit most_recent_commit_at most_recent_commit_version proposal proposal_ballot proposal_version]],partitionKeyColumns=[row_key],clusteringColumns=[cf_id],keyValidator=org.apache.cassandra.db.marshal.BytesType,columnMetadata=[cf_id, most_recent_commit_version, proposal, row_key, proposal_ballot, most_recent_commit_at, proposal_version, in_progress_ballot, most_recent_commit],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,083 ?:? - Adding org.apache.cassandra.config.CFMetaData@76a2ddf3[cfId=7ad54392-bcdd-35a6-8417-4e047860b377,ksName=system,cfName=local,flags=[COMPOUND],params=TableParams{comment=information about the local node, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [bootstrapped broadcast_address cluster_name cql_version data_center gossip_generation host_id listen_address native_protocol_version partitioner rack release_version rpc_address schema_version thrift_version tokens truncated_at]],partitionKeyColumns=[key],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[cql_version, tokens, bootstrapped, broadcast_address, listen_address, rack, release_version, cluster_name, native_protocol_version, thrift_version, rpc_address, truncated_at, schema_version, key, gossip_generation, data_center, partitioner, host_id],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,084 ?:? - Adding org.apache.cassandra.config.CFMetaData@41e68d87[cfId=37f71aca-7dc2-383b-a706-72528af04d4f,ksName=system,cfName=peers,flags=[COMPOUND],params=TableParams{comment=information about known peers in the cluster, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [data_center host_id preferred_ip rack release_version rpc_address schema_version tokens]],partitionKeyColumns=[peer],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.InetAddressType,columnMetadata=[rpc_address, schema_version, preferred_ip, tokens, rack, release_version, peer, data_center, host_id],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,085 ?:? - Adding org.apache.cassandra.config.CFMetaData@2ef14fe[cfId=59dfeaea-8db2-3341-91ef-109974d81484,ksName=system,cfName=peer_events,flags=[COMPOUND],params=TableParams{comment=events related to peers, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [hints_dropped]],partitionKeyColumns=[peer],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.InetAddressType,columnMetadata=[peer, hints_dropped],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,085 ?:? - Adding org.apache.cassandra.config.CFMetaData@45312be2[cfId=55d76438-4e55-3f8b-9f6e-676d4af3976d,ksName=system,cfName=range_xfers,flags=[COMPOUND],params=TableParams{comment=ranges requested for transfer, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [requested_at]],partitionKeyColumns=[token_bytes],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.BytesType,columnMetadata=[token_bytes, requested_at],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,086 ?:? - Adding org.apache.cassandra.config.CFMetaData@7331196b[cfId=b4dbb7b4-dc49-3fb5-b3bf-ce6e434832ca,ksName=system,cfName=compaction_history,flags=[COMPOUND],params=TableParams{comment=week-long compaction history, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=604800, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [bytes_in bytes_out columnfamily_name compacted_at keyspace_name rows_merged]],partitionKeyColumns=[id],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UUIDType,columnMetadata=[bytes_out, id, keyspace_name, rows_merged, compacted_at, bytes_in, columnfamily_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,087 ?:? - Adding org.apache.cassandra.config.CFMetaData@50d13246[cfId=5a1ff267-ace0-3f12-8563-cfae6103c65e,ksName=system,cfName=sstable_activity,flags=[COMPOUND],params=TableParams{comment=historic sstable read rates, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [rate_120m rate_15m]],partitionKeyColumns=[keyspace_name, columnfamily_name, generation],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.CompositeType(org.apache.cassandra.db.marshal.UTF8Type,org.apache.cassandra.db.marshal.UTF8Type,org.apache.cassandra.db.marshal.Int32Type),columnMetadata=[generation, rate_120m, rate_15m, keyspace_name, columnfamily_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,088 ?:? - Adding org.apache.cassandra.config.CFMetaData@e70f13a[cfId=618f817b-005f-3678-b8a4-53f3930b8e86,ksName=system,cfName=size_estimates,flags=[COMPOUND],params=TableParams{comment=per-table primary range size estimates, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [mean_partition_size partitions_count]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name, range_start, range_end],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[range_start, table_name, mean_partition_size, keyspace_name, partitions_count, range_end],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,088 ?:? - Adding org.apache.cassandra.config.CFMetaData@4b40f651[cfId=c539fcab-d65a-31d1-8133-d25605643ee3,ksName=system,cfName=available_ranges,flags=[COMPOUND],params=TableParams{comment=available keyspace/ranges during bootstrap/replace that are ready to be served, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [ranges]],partitionKeyColumns=[keyspace_name],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[ranges, keyspace_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,089 ?:? - Adding org.apache.cassandra.config.CFMetaData@49964d75[cfId=6cad20f7-d4f5-3af2-b6e2-0da33c6c1f83,ksName=system,cfName=transferred_ranges,flags=[COMPOUND],params=TableParams{comment=record of transferred ranges for streaming operation, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.InetAddressType),partitionColumns=[[] | [ranges]],partitionKeyColumns=[operation, keyspace_name],clusteringColumns=[peer],keyValidator=org.apache.cassandra.db.marshal.CompositeType(org.apache.cassandra.db.marshal.UTF8Type,org.apache.cassandra.db.marshal.UTF8Type),columnMetadata=[ranges, peer, operation, keyspace_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,089 ?:? - Adding org.apache.cassandra.config.CFMetaData@466276d8[cfId=b7f2c108-78cd-3c80-9cd5-d609b2bd149c,ksName=system,cfName=views_builds_in_progress,flags=[COMPOUND],params=TableParams{comment=views builds current progress, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [generation_number last_token]],partitionKeyColumns=[keyspace_name],clusteringColumns=[view_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[view_name, generation_number, keyspace_name, last_token],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,090 ?:? - Adding org.apache.cassandra.config.CFMetaData@27eedb64[cfId=4b3c50a9-ea87-3d76-9101-6dbc9c38494a,ksName=system,cfName=built_views,flags=[COMPOUND],params=TableParams{comment=built views, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [status_replicated]],partitionKeyColumns=[keyspace_name],clusteringColumns=[view_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[view_name, keyspace_name, status_replicated],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,090 ?:? - Adding org.apache.cassandra.config.CFMetaData@31c7528f[cfId=2666e205-73ef-38b3-90fe-fecf96e8f0c7,ksName=system,cfName=hints,flags=[DENSE, COMPOUND],params=TableParams{comment=*DEPRECATED* hints awaiting delivery, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32, enabled=false}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.TimeUUIDType, org.apache.cassandra.db.marshal.Int32Type),partitionColumns=[[] | [mutation]],partitionKeyColumns=[target_id],clusteringColumns=[hint_id, message_version],keyValidator=org.apache.cassandra.db.marshal.UUIDType,columnMetadata=[target_id, hint_id, mutation, message_version],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,091 ?:? - Adding org.apache.cassandra.config.CFMetaData@7a1234bf[cfId=0290003c-977e-397c-ac3e-fdfdc01d626b,ksName=system,cfName=batchlog,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* batchlog entries, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=2, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [data version written_at]],partitionKeyColumns=[id],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UUIDType,columnMetadata=[version, data, id, written_at],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,093 ?:? - Adding org.apache.cassandra.config.CFMetaData@24ba9639[cfId=18a9c257-6a0c-3841-ba71-8cd529849fef,ksName=system,cfName=prepared_statements,flags=[COMPOUND],params=TableParams{comment=prepared statements, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [logged_keyspace query_string]],partitionKeyColumns=[prepared_id],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.BytesType,columnMetadata=[logged_keyspace, prepared_id, query_string],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,093 ?:? - Adding org.apache.cassandra.config.CFMetaData@6bffbc6d[cfId=b0f22357-4458-3cdb-9631-c43e59ce3676,ksName=system,cfName=schema_keyspaces,flags=[],params=TableParams{comment=*DEPRECATED* keyspace definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[durable_writes strategy_class strategy_options] | [value]],partitionKeyColumns=[keyspace_name],clusteringColumns=[column1],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[value, durable_writes, strategy_options, column1, strategy_class, keyspace_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,094 ?:? - Adding org.apache.cassandra.config.CFMetaData@13330ac6[cfId=45f5b360-24bc-3f83-a363-1034ea4fa697,ksName=system,cfName=schema_columnfamilies,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* table definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [bloom_filter_fp_chance caching cf_id comment compaction_strategy_class compaction_strategy_options comparator compression_parameters default_time_to_live default_validator gc_grace_seconds is_dense key_validator local_read_repair_chance max_compaction_threshold max_index_interval memtable_flush_period_in_ms min_compaction_threshold min_index_interval read_repair_chance speculative_retry subcomparator type dropped_columns]],partitionKeyColumns=[keyspace_name],clusteringColumns=[columnfamily_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[memtable_flush_period_in_ms, min_compaction_threshold, default_time_to_live, min_index_interval, key_validator, is_dense, compaction_strategy_options, compaction_strategy_class, max_compaction_threshold, comment, compression_parameters, dropped_columns, max_index_interval, gc_grace_seconds, speculative_retry, local_read_repair_chance, bloom_filter_fp_chance, caching, default_validator, cf_id, keyspace_name, comparator, subcomparator, read_repair_chance, type, columnfamily_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,095 ?:? - Adding org.apache.cassandra.config.CFMetaData@39a2bb97[cfId=296e9c04-9bec-3085-827d-c17d3df2122a,ksName=system,cfName=schema_columns,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* column definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [component_index index_name index_options index_type type validator]],partitionKeyColumns=[keyspace_name],clusteringColumns=[columnfamily_name, column_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[validator, component_index, keyspace_name, index_options, type, index_type, index_name, columnfamily_name, column_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,095 ?:? - Adding org.apache.cassandra.config.CFMetaData@4331d187[cfId=0359bc71-7123-3ee1-9a4a-b9dfb11fc125,ksName=system,cfName=schema_triggers,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* trigger definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [trigger_options]],partitionKeyColumns=[keyspace_name],clusteringColumns=[columnfamily_name, trigger_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[trigger_options, keyspace_name, columnfamily_name, trigger_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,096 ?:? - Adding org.apache.cassandra.config.CFMetaData@1608bcbd[cfId=3aa75225-4f82-350b-8d5c-430fa221fa0a,ksName=system,cfName=schema_usertypes,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* user defined type definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [field_names field_types]],partitionKeyColumns=[keyspace_name],clusteringColumns=[type_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[field_names, type_name, field_types, keyspace_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,096 ?:? - Adding org.apache.cassandra.config.CFMetaData@29ca3d04[cfId=d1b675fe-2b50-3ca4-8e49-c0f81989dcad,ksName=system,cfName=schema_functions,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* user defined function definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.FrozenType(org.apache.cassandra.db.marshal.ListType(org.apache.cassandra.db.marshal.UTF8Type))),partitionColumns=[[] | [body called_on_null_input language return_type argument_names argument_types]],partitionKeyColumns=[keyspace_name],clusteringColumns=[function_name, signature],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[function_name, signature, keyspace_name, return_type, argument_names, body, argument_types, called_on_null_input, language],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,097 ?:? - Adding org.apache.cassandra.config.CFMetaData@5812f68b[cfId=a5fc57fc-9d6c-3bfd-a3fc-01ad54686fea,ksName=system,cfName=schema_aggregates,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* user defined aggregate definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@3a4ad8c7, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.FrozenType(org.apache.cassandra.db.marshal.ListType(org.apache.cassandra.db.marshal.UTF8Type))),partitionColumns=[[] | [final_func initcond return_type state_func state_type argument_types]],partitionKeyColumns=[keyspace_name],clusteringColumns=[aggregate_name, signature],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[final_func, aggregate_name, signature, initcond, state_func, keyspace_name, return_type, state_type, argument_types],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:09:53,102 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] DEBUG [main] 2016-09-08 21:09:53,110 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] DEBUG [main] 2016-09-08 21:09:53,117 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] DEBUG [COMMIT-LOG-ALLOCATOR] 2016-09-08 21:09:53,145 ?:? - No segments in reserve; creating a fresh one  
   [junit] DEBUG [COMMIT-LOG-ALLOCATOR] 2016-09-08 21:09:53,179 ?:? - No segments in reserve; creating a fresh one  
   [junit] DEBUG [main] 2016-09-08 21:09:53,180 ?:? - CLSM closing and clearing existing commit log segments...  
   [junit] DEBUG [COMMIT-LOG-ALLOCATOR] 2016-09-08 21:09:53,182 ?:? - No segments in reserve; creating a fresh one  
   [junit] INFO [main] 2016-09-08 21:09:53,183 ?:? - No commitlog files found; skipping replay  
   [junit] INFO [main] 2016-09-08 21:09:53,231 ?:? - Initializing SIGAR library  
   [junit] DEBUG [main] 2016-09-08 21:09:53,246 ?:? - no libsigar-amd64-linux.so in java.library.path  
   [junit] org.hyperic.sigar.SigarException: no libsigar-amd64-linux.so in java.library.path  
   [junit]      at org.hyperic.sigar.Sigar.loadLibrary(Sigar.java:172) ~[sigar-1.6.4.jar:na]  
   [junit]      at org.hyperic.sigar.Sigar.<clinit>(Sigar.java:100) ~[sigar-1.6.4.jar:na]  
   [junit]      at org.apache.cassandra.utils.SigarLibrary.<init>(SigarLibrary.java:47) [main/:na]  
   [junit]      at org.apache.cassandra.utils.SigarLibrary.<clinit>(SigarLibrary.java:28) [main/:na]  
   [junit]      at org.apache.cassandra.utils.UUIDGen.hash(UUIDGen.java:388) [main/:na]  
   [junit]      at org.apache.cassandra.utils.UUIDGen.makeNode(UUIDGen.java:367) [main/:na]  
   [junit]      at org.apache.cassandra.utils.UUIDGen.makeClockSeqAndNode(UUIDGen.java:300) [main/:na]  
   [junit]      at org.apache.cassandra.utils.UUIDGen.<clinit>(UUIDGen.java:41) [main/:na]  
   [junit]      at org.apache.cassandra.utils.ByteBufferUtil.bytes(ByteBufferUtil.java:576) [main/:na]  
   [junit]      at org.apache.cassandra.db.Directories.<init>(Directories.java:202) [main/:na]  
   [junit]      at org.apache.cassandra.db.ColumnFamilyStore.createColumnFamilyStore(ColumnFamilyStore.java:587) [main/:na]  
   [junit]      at org.apache.cassandra.db.ColumnFamilyStore.createColumnFamilyStore(ColumnFamilyStore.java:579) [main/:na]  
   [junit]      at org.apache.cassandra.db.Keyspace.initCf(Keyspace.java:409) [main/:na]  
   [junit]      at org.apache.cassandra.db.Keyspace.<init>(Keyspace.java:322) [main/:na]  
   [junit]      at org.apache.cassandra.db.Keyspace.open(Keyspace.java:127) [main/:na]  
   [junit]      at org.apache.cassandra.db.Keyspace.open(Keyspace.java:104) [main/:na]  
   [junit]      at org.apache.cassandra.cql3.restrictions.StatementRestrictions.<init>(StatementRestrictions.java:137) [main/:na]  
   [junit]      at org.apache.cassandra.cql3.statements.SelectStatement$RawStatement.prepareRestrictions(SelectStatement.java:975) [main/:na]  
   [junit]      at org.apache.cassandra.cql3.statements.SelectStatement$RawStatement.prepare(SelectStatement.java:916) [main/:na]  
   [junit]      at org.apache.cassandra.cql3.statements.SelectStatement$RawStatement.prepare(SelectStatement.java:904) [main/:na]  
   [junit]      at org.apache.cassandra.cql3.QueryProcessor.getStatement(QueryProcessor.java:546) [main/:na]  
   [junit]      at org.apache.cassandra.cql3.QueryProcessor.parseStatement(QueryProcessor.java:252) [main/:na]  
   [junit]      at org.apache.cassandra.cql3.QueryProcessor.prepareInternal(QueryProcessor.java:296) [main/:na]  
   [junit]      at org.apache.cassandra.cql3.QueryProcessor.executeInternal(QueryProcessor.java:304) [main/:na]  
   [junit]      at org.apache.cassandra.schema.SchemaKeyspace.query(SchemaKeyspace.java:1237) [main/:na]  
   [junit]      at org.apache.cassandra.schema.SchemaKeyspace.fetchKeyspacesWithout(SchemaKeyspace.java:859) [main/:na]  
   [junit]      at org.apache.cassandra.schema.SchemaKeyspace.fetchNonSystemKeyspaces(SchemaKeyspace.java:851) [main/:na]  
   [junit]      at org.apache.cassandra.config.Schema.loadFromDisk(Schema.java:90) [main/:na]  
   [junit]      at org.apache.cassandra.config.Schema.loadFromDisk(Schema.java:80) [main/:na]  
   [junit]      at org.apache.cassandra.config.DatabaseDescriptorTest.testTransKsMigration(DatabaseDescriptorTest.java:92) [classes/:na]  
   [junit]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_45]  
   [junit]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_45]  
   [junit]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_45]  
   [junit]      at java.lang.reflect.Method.invoke(Method.java:497) ~[na:1.8.0_45]  
   [junit]      at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) [junit-4.6.jar:na]  
   [junit]      at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) [junit-4.6.jar:na]  
   [junit]      at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20) [junit-4.6.jar:na]  
   [junit]      at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28) [junit-4.6.jar:na]  
   [junit]      at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:44) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:180) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.ParentRunner.access$000(ParentRunner.java:41) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.ParentRunner$1.evaluate(ParentRunner.java:173) [junit-4.6.jar:na]  
   [junit]      at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28) [junit-4.6.jar:na]  
   [junit]      at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.ParentRunner.run(ParentRunner.java:220) [junit-4.6.jar:na]  
   [junit]      at junit.framework.JUnit4TestAdapter.run(JUnit4TestAdapter.java:39) [junit-4.6.jar:na]  
   [junit]      at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:535) [ant-junit-1.9.7.jar:na]  
   [junit]      at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.launch(JUnitTestRunner.java:1182) [ant-junit-1.9.7.jar:na]  
   [junit]      at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:1033) [ant-junit-1.9.7.jar:na]  
   [junit] INFO [main] 2016-09-08 21:09:53,247 ?:? - Could not initialize SIGAR library org.hyperic.sigar.Sigar.getFileSystemListNative()[Lorg/hyperic/sigar/FileSystem;   
   [junit] INFO [main] 2016-09-08 21:09:53,312 ?:? - Initializing system_schema.keyspaces  
   [junit] INFO [main] 2016-09-08 21:09:53,394 ?:? - Initializing system_schema.tables  
   [junit] INFO [main] 2016-09-08 21:09:53,407 ?:? - Initializing system_schema.columns  
   [junit] INFO [main] 2016-09-08 21:09:53,413 ?:? - Initializing system_schema.triggers  
   [junit] INFO [main] 2016-09-08 21:09:53,417 ?:? - Initializing system_schema.dropped_columns  
   [junit] INFO [main] 2016-09-08 21:09:53,423 ?:? - Initializing system_schema.views  
   [junit] INFO [main] 2016-09-08 21:09:53,428 ?:? - Initializing system_schema.types  
   [junit] INFO [main] 2016-09-08 21:09:53,433 ?:? - Initializing system_schema.functions  
   [junit] INFO [main] 2016-09-08 21:09:53,438 ?:? - Initializing system_schema.aggregates  
   [junit] INFO [main] 2016-09-08 21:09:53,442 ?:? - Initializing system_schema.indexes  
   [junit] INFO [main] 2016-09-08 21:09:53,443 ?:? - Not submitting build tasks for views in keyspace system_schema as storage service is not initialized  
   [junit] INFO [main] 2016-09-08 21:09:53,522 ?:? - Initializing system.IndexInfo  
   [junit] INFO [main] 2016-09-08 21:09:53,527 ?:? - Initializing system.batches  
   [junit] INFO [main] 2016-09-08 21:09:53,531 ?:? - Initializing system.paxos  
   [junit] INFO [main] 2016-09-08 21:09:53,538 ?:? - Initializing system.local  
   [junit] INFO [main] 2016-09-08 21:09:53,542 ?:? - Initializing system.peers  
   [junit] INFO [main] 2016-09-08 21:09:53,546 ?:? - Initializing system.peer_events  
   [junit] INFO [main] 2016-09-08 21:09:53,549 ?:? - Initializing system.range_xfers  
   [junit] INFO [main] 2016-09-08 21:09:53,553 ?:? - Initializing system.compaction_history  
   [junit] INFO [main] 2016-09-08 21:09:53,556 ?:? - Initializing system.sstable_activity  
   [junit] INFO [main] 2016-09-08 21:09:53,560 ?:? - Initializing system.size_estimates  
   [junit] INFO [main] 2016-09-08 21:09:53,563 ?:? - Initializing system.available_ranges  
   [junit] INFO [main] 2016-09-08 21:09:53,567 ?:? - Initializing system.transferred_ranges  
   [junit] INFO [main] 2016-09-08 21:09:53,571 ?:? - Initializing system.views_builds_in_progress  
   [junit] INFO [main] 2016-09-08 21:09:53,576 ?:? - Initializing system.built_views  
   [junit] INFO [main] 2016-09-08 21:09:53,579 ?:? - Initializing system.hints  
   [junit] INFO [main] 2016-09-08 21:09:53,583 ?:? - Initializing system.batchlog  
   [junit] INFO [main] 2016-09-08 21:09:53,587 ?:? - Initializing system.prepared_statements  
   [junit] INFO [main] 2016-09-08 21:09:53,591 ?:? - Initializing system.schema_keyspaces  
   [junit] INFO [main] 2016-09-08 21:09:53,594 ?:? - Initializing system.schema_columnfamilies  
   [junit] INFO [main] 2016-09-08 21:09:53,598 ?:? - Initializing system.schema_columns  
   [junit] INFO [main] 2016-09-08 21:09:53,601 ?:? - Initializing system.schema_triggers  
   [junit] INFO [main] 2016-09-08 21:09:53,606 ?:? - Initializing system.schema_usertypes  
   [junit] INFO [main] 2016-09-08 21:09:53,610 ?:? - Initializing system.schema_functions  
   [junit] INFO [main] 2016-09-08 21:09:53,613 ?:? - Initializing system.schema_aggregates  
   [junit] INFO [main] 2016-09-08 21:09:53,614 ?:? - Not submitting build tasks for views in keyspace system as storage service is not initialized  
   [junit] DEBUG [COMMIT-LOG-ALLOCATOR] 2016-09-08 21:09:53,638 ?:? - No segments in reserve; creating a fresh one  
   [junit] WARN [COMMIT-LOG-WRITER] 2016-09-08 21:09:53,640 ?:? - Out of 1 commit log syncs over the past 0.00s with average duration of 1.25ms, 1 have exceeded the configured commit interval by an average of 0.25ms  
   [junit] DEBUG [main] 2016-09-08 21:09:53,652 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] INFO [main] 2016-09-08 21:09:53,665 ?:? - Create new Keyspace: KeyspaceMetadata{name=ks0, params=KeyspaceParams{durable_writes=true, replication=ReplicationParams{class=org.apache.cassandra.locator.SimpleStrategy, replication_factor=3}}, tables=[], views=[], functions=[], types=[]}  
   [junit] DEBUG [MigrationStage:1] 2016-09-08 21:09:53,700 ?:? - Enqueuing flush of keyspaces: 0.289KiB (0%) on-heap, 0.138KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:09:54,064 ?:? - Writing Memtable-keyspaces@1173575581(0.146KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:09:54,069 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data:0/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-1-big-Data.db (0.110KiB) for commitlog position CommitLogPosition(segmentId=1473340193151, position=292)  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:09:54,161 ?:? - Initializing key cache with capacity of 12 MBs.  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:09:54,167 ?:? - Initializing row cache with capacity of 16 MBs  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:09:54,183 ?:? - OHC using Java8 Unsafe API  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:09:54,183 ?:? - OHC using JNA OS native malloc/free  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:09:54,184 ?:? - OHC instance with 16 segments and capacity of 16777216 created.  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:09:54,184 ?:? - Initializing counter cache with capacity of 6 MBs  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:09:54,185 ?:? - Scheduling counter cache save to every 7200 seconds (going to save all keys).  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:09:54,207 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data:0/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-1-big-Data.db')] (1 sstables, 5.038KiB), biggest 5.038KiB, smallest 5.038KiB  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,209 ?:? - forceFlush requested but everything is clean in tables  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,211 ?:? - forceFlush requested but everything is clean in columns  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,211 ?:? - forceFlush requested but everything is clean in dropped_columns  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,212 ?:? - forceFlush requested but everything is clean in triggers  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,212 ?:? - forceFlush requested but everything is clean in views  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,212 ?:? - forceFlush requested but everything is clean in types  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,212 ?:? - forceFlush requested but everything is clean in functions  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,212 ?:? - forceFlush requested but everything is clean in aggregates  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,212 ?:? - forceFlush requested but everything is clean in indexes  
   [junit] INFO [MigrationStage:1] 2016-09-08 21:09:54,241 ?:? - Global buffer pool is enabled, when pool is exhausted (max is 227.000MiB) it will allocate on heap  
   [junit] INFO [MigrationStage:1] 2016-09-08 21:09:54,295 ?:? - Not submitting build tasks for views in keyspace ks0 as storage service is not initialized  
   [junit] DEBUG [MigrationStage:1] 2016-09-08 21:09:54,310 ?:? - Gossiping my schema version 09a509cc-9eb0-3326-9799-765783a2a064  
   [junit] INFO [main] 2016-09-08 21:09:54,311 ?:? - Create new Keyspace: KeyspaceMetadata{name=ks1, params=KeyspaceParams{durable_writes=true, replication=ReplicationParams{class=org.apache.cassandra.locator.SimpleStrategy, replication_factor=3}}, tables=[], views=[], functions=[], types=[]}  
   [junit] DEBUG [MigrationStage:1] 2016-09-08 21:09:54,312 ?:? - Enqueuing flush of keyspaces: 0.289KiB (0%) on-heap, 0.138KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:09:54,325 ?:? - Writing Memtable-keyspaces@603450346(0.146KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:09:54,326 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data:0/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-2-big-Data.db (0.110KiB) for commitlog position CommitLogPosition(segmentId=1473340193151, position=556)  
   [junit] DEBUG [MemtableFlushWriter:2] 2016-09-08 21:09:54,362 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data:0/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-2-big-Data.db')] (1 sstables, 5.038KiB), biggest 5.038KiB, smallest 5.038KiB  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,362 ?:? - forceFlush requested but everything is clean in tables  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,362 ?:? - forceFlush requested but everything is clean in columns  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,362 ?:? - forceFlush requested but everything is clean in dropped_columns  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,362 ?:? - forceFlush requested but everything is clean in triggers  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,362 ?:? - forceFlush requested but everything is clean in views  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,363 ?:? - forceFlush requested but everything is clean in types  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,363 ?:? - forceFlush requested but everything is clean in functions  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,363 ?:? - forceFlush requested but everything is clean in aggregates  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:09:54,363 ?:? - forceFlush requested but everything is clean in indexes  
   [junit] INFO [MigrationStage:1] 2016-09-08 21:09:54,367 ?:? - Not submitting build tasks for views in keyspace ks1 as storage service is not initialized  
   [junit] DEBUG [MigrationStage:1] 2016-09-08 21:09:54,370 ?:? - Gossiping my schema version acc9d052-c25a-3d62-9ce7-27a5001e74d2  
   [junit] INFO [main] 2016-09-08 21:09:54,382 ?:? - Announcing shutdown  
   [junit] DEBUG [main] 2016-09-08 21:09:56,382 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] ------------- ---------------- ---------------  
   [delete] Deleting directory /home/user/cassandra-trunk/build/test/cassandra/commitlog:0  
   [delete] Deleting directory /home/user/cassandra-trunk/build/test/cassandra/data:0  
   [delete] Deleting directory /home/user/cassandra-trunk/build/test/cassandra/saved_caches:0  
   [delete] Deleting directory /home/user/cassandra-trunk/build/test/cassandra/hints:0  
 [junitreport] Processing /home/user/cassandra-trunk/build/test/TESTS-TestSuites.xml to /tmp/null2039466602  
 [junitreport] Loading stylesheet jar:file:/usr/share/ant/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-frames.xsl  
 [junitreport] Transform time: 372ms  
 [junitreport] Deleting: /tmp/null2039466602  
   
 BUILD SUCCESSFUL  
 Total time: 9 seconds  
 user@localhost:~/cassandra-trunk$   

* for individual tests.

 user@localhost:~/cassandra-trunk$ ant testsome -Dtest.name=org.apache.cassandra.cql3.SimpleQueryTest -Dtest.methods=testStaticCompactTables  
 Buildfile: /home/user/cassandra-trunk/build.xml  
   
 init:  
   
 maven-ant-tasks-localrepo:  
   
 maven-ant-tasks-download:  
   
 maven-ant-tasks-init:  
   
 maven-declare-dependencies:  
   
 maven-ant-tasks-retrieve-build:  
   
 init-dependencies:  
    [echo] Loading dependency paths from file: /home/user/cassandra-trunk/build/build-dependencies.xml  
   
 init-dependencies:  
    [echo] Loading dependency paths from file: /home/user/cassandra-trunk/build/build-dependencies-sources.xml  
   [unzip] Expanding: /home/user/cassandra-trunk/build/lib/jars/org.jacoco.agent-0.7.5.201505241946.jar into /home/user/cassandra-trunk/build/lib/jars  
   
 check-gen-cql3-grammar:  
   
 gen-cql3-grammar:  
   
 generate-cql-html:  
   
 generate-jflex-java:  
   
 build-project:  
    [echo] apache-cassandra: /home/user/cassandra-trunk/build.xml  
   
 createVersionPropFile:  
 [propertyfile] Updating property file: /home/user/cassandra-trunk/src/resources/org/apache/cassandra/config/version.properties  
    [copy] Copying 1 file to /home/user/cassandra-trunk/build/classes/main  
   
 build:  
   
 build-test:  
   
 testsome:  
   [mkdir] Created dir: /home/user/cassandra-trunk/build/test/cassandra  
   [mkdir] Created dir: /home/user/cassandra-trunk/build/test/output  
   [junit] WARNING: multiple versions of ant detected in path for junit   
   [junit]     jar:file:/usr/share/ant/lib/ant.jar!/org/apache/tools/ant/Project.class  
   [junit]   and jar:file:/home/user/cassandra-trunk/build/lib/jars/ant-1.9.4.jar!/org/apache/tools/ant/Project.class  
   [junit] Testsuite: org.apache.cassandra.cql3.SimpleQueryTest  
   [junit] Testsuite: org.apache.cassandra.cql3.SimpleQueryTest Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.314 sec  
   [junit]   
   [junit] ------------- Standard Output ---------------  
   [junit] ERROR [main] 2016-09-08 21:20:29,569 ?:? - SLF4J: stderr  
   [junit] INFO [main] 2016-09-08 21:20:29,578 ?:? - Configuration location: file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] DEBUG [main] 2016-09-08 21:20:29,579 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] INFO [main] 2016-09-08 21:20:29,861 ?:? - Node configuration:[allocate_tokens_for_keyspace=null; authenticator=null; authorizer=null; auto_bootstrap=true; auto_snapshot=true; batch_size_fail_threshold_in_kb=50; batch_size_warn_threshold_in_kb=5; batchlog_replay_throttle_in_kb=1024; broadcast_address=null; broadcast_rpc_address=null; buffer_pool_use_heap_if_exhausted=true; cas_contention_timeout_in_ms=1000; cdc_enabled=false; cdc_free_space_check_interval_ms=250; cdc_raw_directory=build/test/cassandra/cdc_raw; cdc_total_space_in_mb=null; client_encryption_options=<REDACTED>; cluster_name=Test Cluster; column_index_cache_size_in_kb=2; column_index_size_in_kb=4; commit_failure_policy=stop; commitlog_compression=null; commitlog_directory=build/test/cassandra/commitlog; commitlog_max_compression_buffers_in_pool=3; commitlog_periodic_queue_size=-1; commitlog_segment_size_in_mb=5; commitlog_sync=batch; commitlog_sync_batch_window_in_ms=1.0; commitlog_sync_period_in_ms=null; commitlog_total_space_in_mb=null; compaction_large_partition_warning_threshold_mb=100; compaction_throughput_mb_per_sec=0; concurrent_compactors=4; concurrent_counter_writes=32; concurrent_materialized_view_writes=32; concurrent_reads=32; concurrent_replicates=null; concurrent_writes=32; counter_cache_keys_to_save=2147483647; counter_cache_save_period=7200; counter_cache_size_in_mb=null; counter_write_request_timeout_in_ms=5000; credentials_cache_max_entries=1000; credentials_update_interval_in_ms=-1; credentials_validity_in_ms=2000; cross_node_timeout=false; data_file_directories=[Ljava.lang.String;@3c130745; disk_access_mode=mmap; disk_failure_policy=ignore; disk_optimization_estimate_percentile=0.95; disk_optimization_page_cross_chance=0.1; disk_optimization_strategy=ssd; dynamic_snitch=true; dynamic_snitch_badness_threshold=0.1; dynamic_snitch_reset_interval_in_ms=600000; dynamic_snitch_update_interval_in_ms=100; enable_scripted_user_defined_functions=true; enable_user_defined_functions=true; enable_user_defined_functions_threads=true; encryption_options=null; endpoint_snitch=org.apache.cassandra.locator.SimpleSnitch; file_cache_size_in_mb=null; gc_log_threshold_in_ms=200; gc_warn_threshold_in_ms=0; hinted_handoff_disabled_datacenters=[]; hinted_handoff_enabled=true; hinted_handoff_throttle_in_kb=1024; hints_compression=null; hints_directory=build/test/cassandra/hints; hints_flush_period_in_ms=10000; incremental_backups=true; index_interval=null; index_summary_capacity_in_mb=null; index_summary_resize_interval_in_minutes=60; initial_token=null; inter_dc_stream_throughput_outbound_megabits_per_sec=200; inter_dc_tcp_nodelay=true; internode_authenticator=null; internode_compression=none; internode_recv_buff_size_in_bytes=null; internode_send_buff_size_in_bytes=null; key_cache_keys_to_save=2147483647; key_cache_save_period=14400; key_cache_size_in_mb=null; listen_address=127.0.0.1; listen_interface=null; listen_interface_prefer_ipv6=false; listen_on_broadcast_address=false; max_hint_window_in_ms=10800000; max_hints_delivery_threads=2; max_hints_file_size_in_mb=128; max_mutation_size_in_kb=null; max_streaming_retries=3; max_value_size_in_mb=256; memtable_allocation_type=offheap_objects; memtable_cleanup_threshold=null; memtable_flush_writers=null; memtable_heap_space_in_mb=null; memtable_offheap_space_in_mb=null; min_free_space_per_drive_in_mb=50; native_transport_max_concurrent_connections=-1; native_transport_max_concurrent_connections_per_ip=-1; native_transport_max_frame_size_in_mb=256; native_transport_max_threads=128; native_transport_port=9042; native_transport_port_ssl=null; num_tokens=1; otc_coalescing_strategy=TIMEHORIZON; otc_coalescing_window_us=200; partitioner=org.apache.cassandra.dht.ByteOrderedPartitioner; permissions_cache_max_entries=1000; permissions_update_interval_in_ms=-1; permissions_validity_in_ms=2000; phi_convict_threshold=8.0; prepared_statements_cache_size_mb=null; range_request_timeout_in_ms=10000; read_request_timeout_in_ms=5000; request_scheduler=org.apache.cassandra.scheduler.RoundRobinScheduler; request_scheduler_id=keyspace; request_scheduler_options=null; request_timeout_in_ms=10000; role_manager=null; roles_cache_max_entries=1000; roles_update_interval_in_ms=-1; roles_validity_in_ms=2000; row_cache_class_name=org.apache.cassandra.cache.OHCProvider; row_cache_keys_to_save=2147483647; row_cache_save_period=0; row_cache_size_in_mb=16; rpc_address=null; rpc_interface=null; rpc_interface_prefer_ipv6=false; rpc_keepalive=true; rpc_listen_backlog=50; rpc_max_threads=2147483647; rpc_min_threads=16; rpc_port=9170; rpc_recv_buff_size_in_bytes=null; rpc_send_buff_size_in_bytes=null; rpc_server_type=sync; saved_caches_directory=build/test/cassandra/saved_caches; seed_provider=org.apache.cassandra.locator.SimpleSeedProvider{seeds=127.0.0.1}; server_encryption_options=<REDACTED>; slow_query_log_timeout_in_ms=500; snapshot_before_compaction=false; ssl_storage_port=7001; sstable_preemptive_open_interval_in_mb=50; start_native_transport=true; start_rpc=true; storage_port=7010; stream_throughput_outbound_megabits_per_sec=200; streaming_keep_alive_period_in_secs=300; streaming_socket_timeout_in_ms=86400000; thrift_framed_transport_size_in_mb=15; thrift_max_message_length_in_mb=16; thrift_prepared_statements_cache_size_mb=null; tombstone_failure_threshold=100000; tombstone_warn_threshold=1000; tracetype_query_ttl=86400; tracetype_repair_ttl=604800; transparent_data_encryption_options=org.apache.cassandra.config.TransparentDataEncryptionOptions@cd3fee8; trickle_fsync=false; trickle_fsync_interval_in_kb=10240; truncate_request_timeout_in_ms=60000; unlogged_batch_across_partitions_warn_threshold=10; user_defined_function_fail_timeout=1500; user_defined_function_warn_timeout=500; user_function_timeout_policy=die; windows_timer_interval=0; write_request_timeout_in_ms=2000]  
   [junit] DEBUG [main] 2016-09-08 21:20:29,862 ?:? - Syncing log with a batch window of 1.0  
   [junit] INFO [main] 2016-09-08 21:20:29,862 ?:? - DiskAccessMode is mmap, indexAccessMode is mmap  
   [junit] INFO [main] 2016-09-08 21:20:29,862 ?:? - Global memtable on-heap threshold is enabled at 227MB  
   [junit] INFO [main] 2016-09-08 21:20:29,862 ?:? - Global memtable off-heap threshold is enabled at 227MB  
   [junit] INFO [main] 2016-09-08 21:20:30,014 ?:? - Started the RoundRobin Request Scheduler  
   [junit] DEBUG [main] 2016-09-08 21:20:30,014 ?:? - Loading settings from file:/home/user/cassandra-trunk/test/conf/cassandra.yaml  
   [junit] INFO [ScheduledTasks:1] 2016-09-08 21:20:30,078 ?:? - Overriding RING_DELAY to 1000ms  
   [junit] DEBUG [COMMIT-LOG-ALLOCATOR] 2016-09-08 21:20:30,403 ?:? - No segments in reserve; creating a fresh one  
   [junit] DEBUG [COMMIT-LOG-ALLOCATOR] 2016-09-08 21:20:30,429 ?:? - No segments in reserve; creating a fresh one  
   [junit] DEBUG [main] 2016-09-08 21:20:30,430 ?:? - CLSM closing and clearing existing commit log segments...  
   [junit] DEBUG [COMMIT-LOG-ALLOCATOR] 2016-09-08 21:20:30,432 ?:? - No segments in reserve; creating a fresh one  
   [junit] INFO [main] 2016-09-08 21:20:30,434 ?:? - No commitlog files found; skipping replay  
   [junit] INFO [main] 2016-09-08 21:20:30,472 ?:? - Initialized prepared statement caches with 10 MB (native) and 10 MB (Thrift)  
   [junit] WARN [COMMIT-LOG-WRITER] 2016-09-08 21:20:30,519 ?:? - Out of 1 commit log syncs over the past 0.00s with average duration of 7.13ms, 1 have exceeded the configured commit interval by an average of 6.13ms  
   [junit] DEBUG [main] 2016-09-08 21:20:30,666 ?:? - Using SLF4J as the default logging framework  
   [junit] DEBUG [main] 2016-09-08 21:20:30,668 ?:? - -Dio.netty.recycler.maxCapacity.default: 262144  
   [junit] DEBUG [main] 2016-09-08 21:20:30,668 ?:? - -Dio.netty.recycler.maxSharedCapacityFactor: 2  
   [junit] DEBUG [main] 2016-09-08 21:20:30,668 ?:? - -Dio.netty.recycler.linkCapacity: 16  
   [junit] DEBUG [main] 2016-09-08 21:20:30,742 ?:? - Adding org.apache.cassandra.config.CFMetaData@7ba8c737[cfId=abac5682-dea6-31c5-b535-b3d6cffd0fb6,ksName=system_schema,cfName=keyspaces,flags=[COMPOUND],params=TableParams{comment=keyspace definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [durable_writes replication]],partitionKeyColumns=[keyspace_name],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[replication, keyspace_name, durable_writes],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,751 ?:? - Adding org.apache.cassandra.config.CFMetaData@42e25b0b[cfId=afddfb9d-bc1e-3068-8056-eed6c302ba09,ksName=system_schema,cfName=tables,flags=[COMPOUND],params=TableParams{comment=table definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [bloom_filter_fp_chance caching cdc comment compaction compression crc_check_chance dclocal_read_repair_chance default_time_to_live extensions flags gc_grace_seconds id max_index_interval memtable_flush_period_in_ms min_index_interval read_repair_chance speculative_retry]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[cdc, dclocal_read_repair_chance, gc_grace_seconds, speculative_retry, id, memtable_flush_period_in_ms, default_time_to_live, min_index_interval, bloom_filter_fp_chance, compression, caching, crc_check_chance, compaction, comment, keyspace_name, read_repair_chance, table_name, extensions, max_index_interval, flags],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,752 ?:? - Adding org.apache.cassandra.config.CFMetaData@44be0077[cfId=24101c25-a2ae-3af7-87c1-b40ee1aca33f,ksName=system_schema,cfName=columns,flags=[COMPOUND],params=TableParams{comment=column definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [clustering_order column_name_bytes kind position type]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name, column_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[kind, clustering_order, column_name_bytes, position, keyspace_name, table_name, type, column_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,752 ?:? - Adding org.apache.cassandra.config.CFMetaData@72ef8d15[cfId=4df70b66-6b05-3251-95a1-32b54005fd48,ksName=system_schema,cfName=triggers,flags=[COMPOUND],params=TableParams{comment=trigger definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [options]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name, trigger_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[table_name, options, keyspace_name, trigger_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,753 ?:? - Adding org.apache.cassandra.config.CFMetaData@51a9ad5e[cfId=5e7583b5-f3f4-3af1-9a39-b7e1d6f5f11f,ksName=system_schema,cfName=dropped_columns,flags=[COMPOUND],params=TableParams{comment=dropped column registry, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [dropped_time type]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name, column_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[table_name, type, keyspace_name, column_name, dropped_time],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,753 ?:? - Adding org.apache.cassandra.config.CFMetaData@72ade7e3[cfId=9786ac1c-dd58-3201-a7cd-ad556410c985,ksName=system_schema,cfName=views,flags=[COMPOUND],params=TableParams{comment=view definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [base_table_id base_table_name bloom_filter_fp_chance caching cdc comment compaction compression crc_check_chance dclocal_read_repair_chance default_time_to_live extensions gc_grace_seconds id include_all_columns max_index_interval memtable_flush_period_in_ms min_index_interval read_repair_chance speculative_retry where_clause]],partitionKeyColumns=[keyspace_name],clusteringColumns=[view_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[cdc, dclocal_read_repair_chance, gc_grace_seconds, speculative_retry, base_table_name, id, memtable_flush_period_in_ms, default_time_to_live, where_clause, min_index_interval, view_name, bloom_filter_fp_chance, compression, caching, crc_check_chance, compaction, base_table_id, comment, keyspace_name, read_repair_chance, include_all_columns, extensions, max_index_interval],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,754 ?:? - Adding org.apache.cassandra.config.CFMetaData@609bcfb6[cfId=5a8b1ca8-6602-3f77-a045-9273d308917a,ksName=system_schema,cfName=types,flags=[COMPOUND],params=TableParams{comment=user defined type definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [field_names field_types]],partitionKeyColumns=[keyspace_name],clusteringColumns=[type_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[field_names, type_name, field_types, keyspace_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,755 ?:? - Adding org.apache.cassandra.config.CFMetaData@560348e6[cfId=96489b79-80be-3e14-a701-66a0b9159450,ksName=system_schema,cfName=functions,flags=[COMPOUND],params=TableParams{comment=user defined function definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.FrozenType(org.apache.cassandra.db.marshal.ListType(org.apache.cassandra.db.marshal.UTF8Type))),partitionColumns=[[] | [argument_names body called_on_null_input language return_type]],partitionKeyColumns=[keyspace_name],clusteringColumns=[function_name, argument_types],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[function_name, keyspace_name, argument_names, return_type, body, argument_types, called_on_null_input, language],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,756 ?:? - Adding org.apache.cassandra.config.CFMetaData@23202fce[cfId=924c5587-2e3a-345b-b10c-12f37c1ba895,ksName=system_schema,cfName=aggregates,flags=[COMPOUND],params=TableParams{comment=user defined aggregate definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.FrozenType(org.apache.cassandra.db.marshal.ListType(org.apache.cassandra.db.marshal.UTF8Type))),partitionColumns=[[] | [final_func initcond return_type state_func state_type]],partitionKeyColumns=[keyspace_name],clusteringColumns=[aggregate_name, argument_types],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[final_func, aggregate_name, initcond, state_func, keyspace_name, return_type, state_type, argument_types],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,757 ?:? - Adding org.apache.cassandra.config.CFMetaData@37911f88[cfId=0feb57ac-311f-382f-ba6d-9024d305702f,ksName=system_schema,cfName=indexes,flags=[COMPOUND],params=TableParams{comment=secondary index definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=604800, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [kind options]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name, index_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[kind, table_name, options, keyspace_name, index_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,813 ?:? - Adding org.apache.cassandra.config.CFMetaData@329dbdbf[cfId=9f5c6374-d485-3229-9a0a-5094af9ad1e3,ksName=system,cfName=IndexInfo,flags=[DENSE],params=TableParams{comment=built column indexes, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [value]],partitionKeyColumns=[table_name],clusteringColumns=[index_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[table_name, index_name, value],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,814 ?:? - Adding org.apache.cassandra.config.CFMetaData@4ef782af[cfId=919a4bc5-7a33-3573-b03e-13fc3f68b465,ksName=system,cfName=batches,flags=[COMPOUND],params=TableParams{comment=batches awaiting replay, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=2, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [version mutations]],partitionKeyColumns=[id],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.TimeUUIDType,columnMetadata=[mutations, version, id],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,814 ?:? - Adding org.apache.cassandra.config.CFMetaData@479cbee5[cfId=b7b7f0c2-fd0a-3410-8c05-3ef614bb7c2d,ksName=system,cfName=paxos,flags=[COMPOUND],params=TableParams{comment=in-progress paxos proposals, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.LeveledCompactionStrategy, options={}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UUIDType),partitionColumns=[[] | [in_progress_ballot most_recent_commit most_recent_commit_at most_recent_commit_version proposal proposal_ballot proposal_version]],partitionKeyColumns=[row_key],clusteringColumns=[cf_id],keyValidator=org.apache.cassandra.db.marshal.BytesType,columnMetadata=[cf_id, most_recent_commit_version, proposal, row_key, proposal_ballot, most_recent_commit_at, proposal_version, in_progress_ballot, most_recent_commit],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,815 ?:? - Adding org.apache.cassandra.config.CFMetaData@5d43661b[cfId=7ad54392-bcdd-35a6-8417-4e047860b377,ksName=system,cfName=local,flags=[COMPOUND],params=TableParams{comment=information about the local node, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [bootstrapped broadcast_address cluster_name cql_version data_center gossip_generation host_id listen_address native_protocol_version partitioner rack release_version rpc_address schema_version thrift_version tokens truncated_at]],partitionKeyColumns=[key],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[cql_version, tokens, bootstrapped, broadcast_address, listen_address, rack, release_version, cluster_name, native_protocol_version, thrift_version, rpc_address, truncated_at, schema_version, key, gossip_generation, data_center, partitioner, host_id],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,816 ?:? - Adding org.apache.cassandra.config.CFMetaData@2fba3fc4[cfId=37f71aca-7dc2-383b-a706-72528af04d4f,ksName=system,cfName=peers,flags=[COMPOUND],params=TableParams{comment=information about known peers in the cluster, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [data_center host_id preferred_ip rack release_version rpc_address schema_version tokens]],partitionKeyColumns=[peer],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.InetAddressType,columnMetadata=[rpc_address, schema_version, preferred_ip, tokens, rack, release_version, peer, data_center, host_id],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,816 ?:? - Adding org.apache.cassandra.config.CFMetaData@1c39680d[cfId=59dfeaea-8db2-3341-91ef-109974d81484,ksName=system,cfName=peer_events,flags=[COMPOUND],params=TableParams{comment=events related to peers, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [hints_dropped]],partitionKeyColumns=[peer],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.InetAddressType,columnMetadata=[peer, hints_dropped],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,818 ?:? - Adding org.apache.cassandra.config.CFMetaData@1c852c0f[cfId=55d76438-4e55-3f8b-9f6e-676d4af3976d,ksName=system,cfName=range_xfers,flags=[COMPOUND],params=TableParams{comment=ranges requested for transfer, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [requested_at]],partitionKeyColumns=[token_bytes],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.BytesType,columnMetadata=[token_bytes, requested_at],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,818 ?:? - Adding org.apache.cassandra.config.CFMetaData@266374ef[cfId=b4dbb7b4-dc49-3fb5-b3bf-ce6e434832ca,ksName=system,cfName=compaction_history,flags=[COMPOUND],params=TableParams{comment=week-long compaction history, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=604800, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [bytes_in bytes_out columnfamily_name compacted_at keyspace_name rows_merged]],partitionKeyColumns=[id],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UUIDType,columnMetadata=[bytes_out, id, keyspace_name, rows_merged, compacted_at, bytes_in, columnfamily_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,819 ?:? - Adding org.apache.cassandra.config.CFMetaData@37fb0bed[cfId=5a1ff267-ace0-3f12-8563-cfae6103c65e,ksName=system,cfName=sstable_activity,flags=[COMPOUND],params=TableParams{comment=historic sstable read rates, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [rate_120m rate_15m]],partitionKeyColumns=[keyspace_name, columnfamily_name, generation],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.CompositeType(org.apache.cassandra.db.marshal.UTF8Type,org.apache.cassandra.db.marshal.UTF8Type,org.apache.cassandra.db.marshal.Int32Type),columnMetadata=[generation, rate_120m, rate_15m, keyspace_name, columnfamily_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,819 ?:? - Adding org.apache.cassandra.config.CFMetaData@7b7fdc8[cfId=618f817b-005f-3678-b8a4-53f3930b8e86,ksName=system,cfName=size_estimates,flags=[COMPOUND],params=TableParams{comment=per-table primary range size estimates, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [mean_partition_size partitions_count]],partitionKeyColumns=[keyspace_name],clusteringColumns=[table_name, range_start, range_end],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[range_start, table_name, mean_partition_size, keyspace_name, partitions_count, range_end],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,820 ?:? - Adding org.apache.cassandra.config.CFMetaData@766653e6[cfId=c539fcab-d65a-31d1-8133-d25605643ee3,ksName=system,cfName=available_ranges,flags=[COMPOUND],params=TableParams{comment=available keyspace/ranges during bootstrap/replace that are ready to be served, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [ranges]],partitionKeyColumns=[keyspace_name],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[ranges, keyspace_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,820 ?:? - Adding org.apache.cassandra.config.CFMetaData@7fc4780b[cfId=6cad20f7-d4f5-3af2-b6e2-0da33c6c1f83,ksName=system,cfName=transferred_ranges,flags=[COMPOUND],params=TableParams{comment=record of transferred ranges for streaming operation, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.InetAddressType),partitionColumns=[[] | [ranges]],partitionKeyColumns=[operation, keyspace_name],clusteringColumns=[peer],keyValidator=org.apache.cassandra.db.marshal.CompositeType(org.apache.cassandra.db.marshal.UTF8Type,org.apache.cassandra.db.marshal.UTF8Type),columnMetadata=[ranges, peer, operation, keyspace_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,820 ?:? - Adding org.apache.cassandra.config.CFMetaData@48c76607[cfId=b7f2c108-78cd-3c80-9cd5-d609b2bd149c,ksName=system,cfName=views_builds_in_progress,flags=[COMPOUND],params=TableParams{comment=views builds current progress, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [generation_number last_token]],partitionKeyColumns=[keyspace_name],clusteringColumns=[view_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[view_name, generation_number, keyspace_name, last_token],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,821 ?:? - Adding org.apache.cassandra.config.CFMetaData@1f81aa00[cfId=4b3c50a9-ea87-3d76-9101-6dbc9c38494a,ksName=system,cfName=built_views,flags=[COMPOUND],params=TableParams{comment=built views, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [status_replicated]],partitionKeyColumns=[keyspace_name],clusteringColumns=[view_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[view_name, keyspace_name, status_replicated],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,821 ?:? - Adding org.apache.cassandra.config.CFMetaData@1863d2fe[cfId=2666e205-73ef-38b3-90fe-fecf96e8f0c7,ksName=system,cfName=hints,flags=[DENSE, COMPOUND],params=TableParams{comment=*DEPRECATED* hints awaiting delivery, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32, enabled=false}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.TimeUUIDType, org.apache.cassandra.db.marshal.Int32Type),partitionColumns=[[] | [mutation]],partitionKeyColumns=[target_id],clusteringColumns=[hint_id, message_version],keyValidator=org.apache.cassandra.db.marshal.UUIDType,columnMetadata=[target_id, hint_id, mutation, message_version],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,822 ?:? - Adding org.apache.cassandra.config.CFMetaData@544d57e[cfId=0290003c-977e-397c-ac3e-fdfdc01d626b,ksName=system,cfName=batchlog,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* batchlog entries, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=2, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [data version written_at]],partitionKeyColumns=[id],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UUIDType,columnMetadata=[version, data, id, written_at],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,822 ?:? - Adding org.apache.cassandra.config.CFMetaData@53b7f657[cfId=18a9c257-6a0c-3841-ba71-8cd529849fef,ksName=system,cfName=prepared_statements,flags=[COMPOUND],params=TableParams{comment=prepared statements, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [logged_keyspace query_string]],partitionKeyColumns=[prepared_id],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.BytesType,columnMetadata=[logged_keyspace, prepared_id, query_string],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,822 ?:? - Adding org.apache.cassandra.config.CFMetaData@26df6e3a[cfId=b0f22357-4458-3cdb-9631-c43e59ce3676,ksName=system,cfName=schema_keyspaces,flags=[],params=TableParams{comment=*DEPRECATED* keyspace definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[durable_writes strategy_class strategy_options] | [value]],partitionKeyColumns=[keyspace_name],clusteringColumns=[column1],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[value, durable_writes, strategy_options, column1, strategy_class, keyspace_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,823 ?:? - Adding org.apache.cassandra.config.CFMetaData@f14a7d4[cfId=45f5b360-24bc-3f83-a363-1034ea4fa697,ksName=system,cfName=schema_columnfamilies,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* table definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [bloom_filter_fp_chance caching cf_id comment compaction_strategy_class compaction_strategy_options comparator compression_parameters default_time_to_live default_validator gc_grace_seconds is_dense key_validator local_read_repair_chance max_compaction_threshold max_index_interval memtable_flush_period_in_ms min_compaction_threshold min_index_interval read_repair_chance speculative_retry subcomparator type dropped_columns]],partitionKeyColumns=[keyspace_name],clusteringColumns=[columnfamily_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[memtable_flush_period_in_ms, min_compaction_threshold, default_time_to_live, min_index_interval, key_validator, is_dense, compaction_strategy_options, compaction_strategy_class, max_compaction_threshold, comment, compression_parameters, dropped_columns, max_index_interval, gc_grace_seconds, speculative_retry, local_read_repair_chance, bloom_filter_fp_chance, caching, default_validator, cf_id, keyspace_name, comparator, subcomparator, read_repair_chance, type, columnfamily_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,824 ?:? - Adding org.apache.cassandra.config.CFMetaData@29a5f4e7[cfId=296e9c04-9bec-3085-827d-c17d3df2122a,ksName=system,cfName=schema_columns,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* column definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [component_index index_name index_options index_type type validator]],partitionKeyColumns=[keyspace_name],clusteringColumns=[columnfamily_name, column_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[validator, component_index, keyspace_name, index_options, type, index_type, index_name, columnfamily_name, column_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,824 ?:? - Adding org.apache.cassandra.config.CFMetaData@42a15bdc[cfId=0359bc71-7123-3ee1-9a4a-b9dfb11fc125,ksName=system,cfName=schema_triggers,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* trigger definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [trigger_options]],partitionKeyColumns=[keyspace_name],clusteringColumns=[columnfamily_name, trigger_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[trigger_options, keyspace_name, columnfamily_name, trigger_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,825 ?:? - Adding org.apache.cassandra.config.CFMetaData@6f6745d6[cfId=3aa75225-4f82-350b-8d5c-430fa221fa0a,ksName=system,cfName=schema_usertypes,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* user defined type definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [field_names field_types]],partitionKeyColumns=[keyspace_name],clusteringColumns=[type_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[field_names, type_name, field_types, keyspace_name],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,825 ?:? - Adding org.apache.cassandra.config.CFMetaData@4f704591[cfId=d1b675fe-2b50-3ca4-8e49-c0f81989dcad,ksName=system,cfName=schema_functions,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* user defined function definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.FrozenType(org.apache.cassandra.db.marshal.ListType(org.apache.cassandra.db.marshal.UTF8Type))),partitionColumns=[[] | [body called_on_null_input language return_type argument_names argument_types]],partitionKeyColumns=[keyspace_name],clusteringColumns=[function_name, signature],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[function_name, signature, keyspace_name, return_type, argument_names, body, argument_types, called_on_null_input, language],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] DEBUG [main] 2016-09-08 21:20:30,826 ?:? - Adding org.apache.cassandra.config.CFMetaData@1e4d3ce5[cfId=a5fc57fc-9d6c-3bfd-a3fc-01ad54686fea,ksName=system,cfName=schema_aggregates,flags=[COMPOUND],params=TableParams{comment=*DEPRECATED* user defined aggregate definitions, read_repair_chance=0.0, dclocal_read_repair_chance=0.0, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=0, default_time_to_live=0, memtable_flush_period_in_ms=3600000, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type, org.apache.cassandra.db.marshal.FrozenType(org.apache.cassandra.db.marshal.ListType(org.apache.cassandra.db.marshal.UTF8Type))),partitionColumns=[[] | [final_func initcond return_type state_func state_type argument_types]],partitionKeyColumns=[keyspace_name],clusteringColumns=[aggregate_name, signature],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[final_func, aggregate_name, signature, initcond, state_func, keyspace_name, return_type, state_type, argument_types],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] INFO [main] 2016-09-08 21:20:30,827 ?:? - Create new Keyspace: KeyspaceMetadata{name=cql_test_keyspace, params=KeyspaceParams{durable_writes=true, replication=ReplicationParams{class=org.apache.cassandra.locator.SimpleStrategy, replication_factor=1}}, tables=[], views=[], functions=[], types=[]}  
   [junit] INFO [main] 2016-09-08 21:20:30,890 ?:? - Initializing SIGAR library  
   [junit] DEBUG [main] 2016-09-08 21:20:30,909 ?:? - no libsigar-amd64-linux.so in java.library.path  
   [junit] org.hyperic.sigar.SigarException: no libsigar-amd64-linux.so in java.library.path  
   [junit]      at org.hyperic.sigar.Sigar.loadLibrary(Sigar.java:172) ~[sigar-1.6.4.jar:na]  
   [junit]      at org.hyperic.sigar.Sigar.<clinit>(Sigar.java:100) ~[sigar-1.6.4.jar:na]  
   [junit]      at org.apache.cassandra.utils.SigarLibrary.<init>(SigarLibrary.java:47) [main/:na]  
   [junit]      at org.apache.cassandra.utils.SigarLibrary.<clinit>(SigarLibrary.java:28) [main/:na]  
   [junit]      at org.apache.cassandra.utils.UUIDGen.hash(UUIDGen.java:388) [main/:na]  
   [junit]      at org.apache.cassandra.utils.UUIDGen.makeNode(UUIDGen.java:367) [main/:na]  
   [junit]      at org.apache.cassandra.utils.UUIDGen.makeClockSeqAndNode(UUIDGen.java:300) [main/:na]  
   [junit]      at org.apache.cassandra.utils.UUIDGen.<clinit>(UUIDGen.java:41) [main/:na]  
   [junit]      at org.apache.cassandra.utils.ByteBufferUtil.bytes(ByteBufferUtil.java:576) [main/:na]  
   [junit]      at org.apache.cassandra.db.Directories.<init>(Directories.java:202) [main/:na]  
   [junit]      at org.apache.cassandra.db.ColumnFamilyStore.createColumnFamilyStore(ColumnFamilyStore.java:587) [main/:na]  
   [junit]      at org.apache.cassandra.db.ColumnFamilyStore.createColumnFamilyStore(ColumnFamilyStore.java:579) [main/:na]  
   [junit]      at org.apache.cassandra.db.Keyspace.initCf(Keyspace.java:409) [main/:na]  
   [junit]      at org.apache.cassandra.db.Keyspace.<init>(Keyspace.java:322) [main/:na]  
   [junit]      at org.apache.cassandra.db.Keyspace.open(Keyspace.java:127) [main/:na]  
   [junit]      at org.apache.cassandra.db.Keyspace.open(Keyspace.java:104) [main/:na]  
   [junit]      at org.apache.cassandra.db.Mutation.apply(Mutation.java:241) [main/:na]  
   [junit]      at org.apache.cassandra.schema.SchemaKeyspace$$Lambda$60/1419064126.accept(Unknown Source) [main/:na]  
   [junit]      at java.util.Collections$SingletonList.forEach(Collections.java:4822) [na:1.8.0_45]  
   [junit]      at org.apache.cassandra.schema.SchemaKeyspace.mergeSchema(SchemaKeyspace.java:1270) [main/:na]  
   [junit]      at org.apache.cassandra.service.MigrationManager.announce(MigrationManager.java:515) [main/:na]  
   [junit]      at org.apache.cassandra.service.MigrationManager.announceNewKeyspace(MigrationManager.java:304) [main/:na]  
   [junit]      at org.apache.cassandra.service.MigrationManager.announceNewKeyspace(MigrationManager.java:293) [main/:na]  
   [junit]      at org.apache.cassandra.cql3.statements.CreateKeyspaceStatement.announceMigration(CreateKeyspaceStatement.java:104) [main/:na]  
   [junit]      at org.apache.cassandra.cql3.statements.SchemaAlteringStatement.executeInternal(SchemaAlteringStatement.java:120) [main/:na]  
   [junit]      at org.apache.cassandra.cql3.CQLTester.schemaChange(CQLTester.java:689) [classes/:na]  
   [junit]      at org.apache.cassandra.cql3.CQLTester.beforeTest(CQLTester.java:267) [classes/:na]  
   [junit]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_45]  
   [junit]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_45]  
   [junit]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_45]  
   [junit]      at java.lang.reflect.Method.invoke(Method.java:497) ~[na:1.8.0_45]  
   [junit]      at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44) [junit-4.6.jar:na]  
   [junit]      at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41) [junit-4.6.jar:na]  
   [junit]      at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27) [junit-4.6.jar:na]  
   [junit]      at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:44) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:180) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.ParentRunner.access$000(ParentRunner.java:41) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.ParentRunner$1.evaluate(ParentRunner.java:173) [junit-4.6.jar:na]  
   [junit]      at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28) [junit-4.6.jar:na]  
   [junit]      at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31) [junit-4.6.jar:na]  
   [junit]      at org.junit.runners.ParentRunner.run(ParentRunner.java:220) [junit-4.6.jar:na]  
   [junit]      at org.apache.tools.ant.taskdefs.optional.junit.JUnit4TestMethodAdapter.run(JUnit4TestMethodAdapter.java:107) [ant-junit4-1.9.7.jar:na]  
   [junit]      at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:535) [ant-junit-1.9.7.jar:na]  
   [junit]      at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.launch(JUnitTestRunner.java:1182) [ant-junit-1.9.7.jar:na]  
   [junit]      at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:1033) [ant-junit-1.9.7.jar:na]  
   [junit] INFO [main] 2016-09-08 21:20:30,910 ?:? - Could not initialize SIGAR library org.hyperic.sigar.Sigar.getFileSystemListNative()[Lorg/hyperic/sigar/FileSystem;   
   [junit] INFO [main] 2016-09-08 21:20:30,959 ?:? - Initializing system_schema.keyspaces  
   [junit] INFO [main] 2016-09-08 21:20:31,011 ?:? - Initializing system_schema.tables  
   [junit] INFO [main] 2016-09-08 21:20:31,017 ?:? - Initializing system_schema.columns  
   [junit] INFO [main] 2016-09-08 21:20:31,022 ?:? - Initializing system_schema.triggers  
   [junit] INFO [main] 2016-09-08 21:20:31,027 ?:? - Initializing system_schema.dropped_columns  
   [junit] INFO [main] 2016-09-08 21:20:31,032 ?:? - Initializing system_schema.views  
   [junit] INFO [main] 2016-09-08 21:20:31,036 ?:? - Initializing system_schema.types  
   [junit] INFO [main] 2016-09-08 21:20:31,039 ?:? - Initializing system_schema.functions  
   [junit] INFO [main] 2016-09-08 21:20:31,044 ?:? - Initializing system_schema.aggregates  
   [junit] INFO [main] 2016-09-08 21:20:31,047 ?:? - Initializing system_schema.indexes  
   [junit] INFO [main] 2016-09-08 21:20:31,048 ?:? - Not submitting build tasks for views in keyspace system_schema as storage service is not initialized  
   [junit] DEBUG [COMMIT-LOG-ALLOCATOR] 2016-09-08 21:20:31,072 ?:? - No segments in reserve; creating a fresh one  
   [junit] DEBUG [main] 2016-09-08 21:20:31,080 ?:? - Enqueuing flush of keyspaces: 0.279KiB (0%) on-heap, 0.151KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:31,414 ?:? - Writing Memtable-keyspaces@1402398559(0.146KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:31,419 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-1-big-Data.db (0.124KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=216)  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:20:31,478 ?:? - Initializing key cache with capacity of 12 MBs.  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:20:31,484 ?:? - Initializing row cache with capacity of 16 MBs  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:20:31,500 ?:? - OHC using Java8 Unsafe API  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:20:31,500 ?:? - OHC using JNA OS native malloc/free  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:20:31,501 ?:? - OHC instance with 16 segments and capacity of 16777216 created.  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:20:31,502 ?:? - Initializing counter cache with capacity of 6 MBs  
   [junit] INFO [MemtableFlushWriter:1] 2016-09-08 21:20:31,502 ?:? - Scheduling counter cache save to every 7200 seconds (going to save all keys).  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:20:31,522 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-1-big-Data.db')] (1 sstables, 5.104KiB), biggest 5.104KiB, smallest 5.104KiB  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,524 ?:? - forceFlush requested but everything is clean in tables  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,524 ?:? - forceFlush requested but everything is clean in columns  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,525 ?:? - forceFlush requested but everything is clean in dropped_columns  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,525 ?:? - forceFlush requested but everything is clean in triggers  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,525 ?:? - forceFlush requested but everything is clean in views  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,525 ?:? - forceFlush requested but everything is clean in types  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,525 ?:? - forceFlush requested but everything is clean in functions  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,525 ?:? - forceFlush requested but everything is clean in aggregates  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,525 ?:? - forceFlush requested but everything is clean in indexes  
   [junit] INFO [main] 2016-09-08 21:20:31,586 ?:? - Global buffer pool is enabled, when pool is exhausted (max is 227.000MiB) it will allocate on heap  
   [junit] INFO [main] 2016-09-08 21:20:31,658 ?:? - Not submitting build tasks for views in keyspace cql_test_keyspace as storage service is not initialized  
   [junit] INFO [main] 2016-09-08 21:20:31,663 ?:? - Create new Keyspace: KeyspaceMetadata{name=cql_test_keyspace_alt, params=KeyspaceParams{durable_writes=true, replication=ReplicationParams{class=org.apache.cassandra.locator.SimpleStrategy, replication_factor=1}}, tables=[], views=[], functions=[], types=[]}  
   [junit] DEBUG [main] 2016-09-08 21:20:31,665 ?:? - Enqueuing flush of keyspaces: 0.279KiB (0%) on-heap, 0.155KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:31,677 ?:? - Writing Memtable-keyspaces@209351132(0.146KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:31,678 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-2-big-Data.db (0.128KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=408)  
   [junit] DEBUG [MemtableFlushWriter:2] 2016-09-08 21:20:31,711 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-2-big-Data.db')] (1 sstables, 5.122KiB), biggest 5.122KiB, smallest 5.122KiB  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,712 ?:? - forceFlush requested but everything is clean in tables  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,712 ?:? - forceFlush requested but everything is clean in columns  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,712 ?:? - forceFlush requested but everything is clean in dropped_columns  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,712 ?:? - forceFlush requested but everything is clean in triggers  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,712 ?:? - forceFlush requested but everything is clean in views  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,712 ?:? - forceFlush requested but everything is clean in types  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,712 ?:? - forceFlush requested but everything is clean in functions  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,712 ?:? - forceFlush requested but everything is clean in aggregates  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,712 ?:? - forceFlush requested but everything is clean in indexes  
   [junit] INFO [main] 2016-09-08 21:20:31,717 ?:? - Not submitting build tasks for views in keyspace cql_test_keyspace_alt as storage service is not initialized  
   [junit] INFO [main] 2016-09-08 21:20:31,717 ?:? - CREATE TABLE cql_test_keyspace.table_0 (k text PRIMARY KEY, v1 int, v2 text) WITH COMPACT STORAGE  
   [junit] INFO [main] 2016-09-08 21:20:31,718 ?:? - Create new table: org.apache.cassandra.config.CFMetaData@485e36bc[cfId=0494c860-75c7-11e6-9e7a-57ce605afbc8,ksName=cql_test_keyspace,cfName=table_0,flags=[],params=TableParams{comment=, read_repair_chance=0.0, dclocal_read_repair_chance=0.1, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=864000, default_time_to_live=0, memtable_flush_period_in_ms=0, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={min_threshold=4, max_threshold=32}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[v1 v2] | [value]],partitionKeyColumns=[k],clusteringColumns=[column1],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[k, value, column1, v2, v1],droppedColumns={},triggers=[],indexes=[]]  
   [junit] DEBUG [main] 2016-09-08 21:20:31,724 ?:? - Enqueuing flush of keyspaces: 0.279KiB (0%) on-heap, 0.151KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:31,735 ?:? - Writing Memtable-keyspaces@569893355(0.146KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:31,736 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-3-big-Data.db (0.124KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=1637)  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:20:31,767 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-3-big-Data.db')] (1 sstables, 5.104KiB), biggest 5.104KiB, smallest 5.104KiB  
   [junit] DEBUG [main] 2016-09-08 21:20:31,768 ?:? - Enqueuing flush of tables: 0.686KiB (0%) on-heap, 0.728KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:31,780 ?:? - Writing Memtable-tables@45981219(0.646KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:31,781 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/tables-afddfb9dbc1e30688056eed6c302ba09/mc-1-big-Data.db (0.412KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=1637)  
   [junit] DEBUG [MemtableFlushWriter:2] 2016-09-08 21:20:31,812 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/tables-afddfb9dbc1e30688056eed6c302ba09/mc-1-big-Data.db')] (1 sstables, 6.683KiB), biggest 6.683KiB, smallest 6.683KiB  
   [junit] DEBUG [main] 2016-09-08 21:20:31,813 ?:? - Enqueuing flush of columns: 1.217KiB (0%) on-heap, 0.742KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:31,824 ?:? - Writing Memtable-columns@1485086994(0.666KiB serialized bytes, 5 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:31,827 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/columns-24101c25a2ae3af787c1b40ee1aca33f/mc-1-big-Data.db (0.274KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=1637)  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:20:31,864 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/columns-24101c25a2ae3af787c1b40ee1aca33f/mc-1-big-Data.db')] (1 sstables, 5.312KiB), biggest 5.312KiB, smallest 5.312KiB  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,864 ?:? - forceFlush requested but everything is clean in dropped_columns  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,864 ?:? - forceFlush requested but everything is clean in triggers  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,864 ?:? - forceFlush requested but everything is clean in views  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,864 ?:? - forceFlush requested but everything is clean in types  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,864 ?:? - forceFlush requested but everything is clean in functions  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,864 ?:? - forceFlush requested but everything is clean in aggregates  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:31,864 ?:? - forceFlush requested but everything is clean in indexes  
   [junit] INFO [main] 2016-09-08 21:20:31,897 ?:? - Initializing cql_test_keyspace.table_0  
   [junit] DEBUG [main] 2016-09-08 21:20:31,900 ?:? - Adding org.apache.cassandra.config.CFMetaData@e98770d[cfId=0494c860-75c7-11e6-9e7a-57ce605afbc8,ksName=cql_test_keyspace,cfName=table_0,flags=[],params=TableParams{comment=, read_repair_chance=0.0, dclocal_read_repair_chance=0.1, bloom_filter_fp_chance=0.01, crc_check_chance=1.0, gc_grace_seconds=864000, default_time_to_live=0, memtable_flush_period_in_ms=0, min_index_interval=128, max_index_interval=2048, speculative_retry=99PERCENTILE, caching={'keys' : 'ALL', 'rows_per_partition' : 'NONE'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={max_threshold=32, min_threshold=4}}, compression=org.apache.cassandra.schema.CompressionParams@a7ad1d95, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[v1 v2] | [value]],partitionKeyColumns=[k],clusteringColumns=[column1],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[k, value, column1, v2, v1],droppedColumns={},triggers=[],indexes=[]] to cfIdMap  
   [junit] INFO [main] 2016-09-08 21:20:31,934 ?:? - Drop Keyspace 'cql_test_keyspace_alt'  
   [junit] DEBUG [main] 2016-09-08 21:20:31,936 ?:? - Enqueuing flush of keyspaces: 0.123KiB (0%) on-heap, 0.024KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:31,951 ?:? - Writing Memtable-keyspaces@109189804(0.008KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:31,952 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-4-big-Data.db (0.035KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=2459)  
   [junit] DEBUG [MemtableFlushWriter:2] 2016-09-08 21:20:31,985 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-4-big-Data.db')] (1 sstables, 4.801KiB), biggest 4.801KiB, smallest 4.801KiB  
   [junit] DEBUG [main] 2016-09-08 21:20:31,986 ?:? - Enqueuing flush of tables: 0.123KiB (0%) on-heap, 0.024KiB (0%) off-heap  
   [junit] DEBUG [CompactionExecutor:2] 2016-09-08 21:20:31,990 ?:? - Compacting (04bdd430-75c7-11e6-9e7a-57ce605afbc8) [/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-4-big-Data.db:level=0, /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-1-big-Data.db:level=0, /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-3-big-Data.db:level=0, /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-2-big-Data.db:level=0, ]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,009 ?:? - Writing Memtable-tables@454832439(0.008KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,009 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/tables-afddfb9dbc1e30688056eed6c302ba09/mc-2-big-Data.db (0.035KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=2459)  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:20:32,065 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/tables-afddfb9dbc1e30688056eed6c302ba09/mc-2-big-Data.db')] (1 sstables, 4.841KiB), biggest 4.841KiB, smallest 4.841KiB  
   [junit] DEBUG [main] 2016-09-08 21:20:32,065 ?:? - Enqueuing flush of columns: 0.123KiB (0%) on-heap, 0.024KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:32,088 ?:? - Writing Memtable-columns@1132499992(0.008KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:32,089 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/columns-24101c25a2ae3af787c1b40ee1aca33f/mc-2-big-Data.db (0.035KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=2459)  
   [junit] DEBUG [MemtableFlushWriter:2] 2016-09-08 21:20:32,148 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/columns-24101c25a2ae3af787c1b40ee1aca33f/mc-2-big-Data.db')] (1 sstables, 4.881KiB), biggest 4.881KiB, smallest 4.881KiB  
   [junit] DEBUG [main] 2016-09-08 21:20:32,148 ?:? - Enqueuing flush of dropped_columns: 0.123KiB (0%) on-heap, 0.024KiB (0%) off-heap  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,151 ?:? - Initializing system.IndexInfo  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,155 ?:? - Initializing system.batches  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,159 ?:? - Initializing system.paxos  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,164 ?:? - Initializing system.local  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,167 ?:? - Initializing system.peers  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,169 ?:? - Writing Memtable-dropped_columns@2014183123(0.008KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,169 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/dropped_columns-5e7583b5f3f43af19a39b7e1d6f5f11f/mc-1-big-Data.db (0.035KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=2459)  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,171 ?:? - Initializing system.peer_events  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,174 ?:? - Initializing system.range_xfers  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,178 ?:? - Initializing system.compaction_history  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,181 ?:? - Initializing system.sstable_activity  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,184 ?:? - Initializing system.size_estimates  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,187 ?:? - Initializing system.available_ranges  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,189 ?:? - Initializing system.transferred_ranges  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,193 ?:? - Initializing system.views_builds_in_progress  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,197 ?:? - Initializing system.built_views  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,199 ?:? - Initializing system.hints  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,203 ?:? - Initializing system.batchlog  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,207 ?:? - Initializing system.prepared_statements  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,209 ?:? - Initializing system.schema_keyspaces  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,212 ?:? - Initializing system.schema_columnfamilies  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,215 ?:? - Initializing system.schema_columns  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,217 ?:? - Initializing system.schema_triggers  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,220 ?:? - Initializing system.schema_usertypes  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,224 ?:? - Initializing system.schema_functions  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:20:32,225 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/dropped_columns-5e7583b5f3f43af19a39b7e1d6f5f11f/mc-1-big-Data.db')] (1 sstables, 4.881KiB), biggest 4.881KiB, smallest 4.881KiB  
   [junit] DEBUG [main] 2016-09-08 21:20:32,226 ?:? - Enqueuing flush of triggers: 0.123KiB (0%) on-heap, 0.024KiB (0%) off-heap  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,227 ?:? - Initializing system.schema_aggregates  
   [junit] INFO [CompactionExecutor:2] 2016-09-08 21:20:32,228 ?:? - Not submitting build tasks for views in keyspace system as storage service is not initialized  
   [junit] DEBUG [CompactionExecutor:2] 2016-09-08 21:20:32,231 ?:? - Compacted (04bdd430-75c7-11e6-9e7a-57ce605afbc8) 4 sstables to [/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/mc-5-big,] to level=0. 0.444KiB to 0.156KiB (~35% of original) in 151ms. Read Throughput = 2.937KiB/s, Write Throughput = 1.032KiB/s, Row Throughput = ~3/s. 4 total partitions merged to 2. Partition merge counts were {2:2, }  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:32,246 ?:? - Writing Memtable-triggers@472643877(0.008KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:32,246 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/triggers-4df70b666b05325195a132b54005fd48/mc-1-big-Data.db (0.035KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=2459)  
   [junit] DEBUG [MemtableFlushWriter:2] 2016-09-08 21:20:32,296 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/triggers-4df70b666b05325195a132b54005fd48/mc-1-big-Data.db')] (1 sstables, 4.881KiB), biggest 4.881KiB, smallest 4.881KiB  
   [junit] DEBUG [main] 2016-09-08 21:20:32,296 ?:? - Enqueuing flush of views: 0.123KiB (0%) on-heap, 0.024KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,308 ?:? - Writing Memtable-views@1718329472(0.008KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,308 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/views-9786ac1cdd583201a7cdad556410c985/mc-1-big-Data.db (0.035KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=3048)  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:20:32,339 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/views-9786ac1cdd583201a7cdad556410c985/mc-1-big-Data.db')] (1 sstables, 4.841KiB), biggest 4.841KiB, smallest 4.841KiB  
   [junit] DEBUG [main] 2016-09-08 21:20:32,340 ?:? - Enqueuing flush of types: 0.123KiB (0%) on-heap, 0.024KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:32,351 ?:? - Writing Memtable-types@1921593349(0.008KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:32,352 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/types-5a8b1ca866023f77a0459273d308917a/mc-1-big-Data.db (0.035KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=3048)  
   [junit] DEBUG [MemtableFlushWriter:2] 2016-09-08 21:20:32,381 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/types-5a8b1ca866023f77a0459273d308917a/mc-1-big-Data.db')] (1 sstables, 4.841KiB), biggest 4.841KiB, smallest 4.841KiB  
   [junit] DEBUG [main] 2016-09-08 21:20:32,381 ?:? - Enqueuing flush of functions: 0.123KiB (0%) on-heap, 0.024KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,393 ?:? - Writing Memtable-functions@454693230(0.008KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,393 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/functions-96489b7980be3e14a70166a0b9159450/mc-1-big-Data.db (0.035KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=3048)  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:20:32,429 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/functions-96489b7980be3e14a70166a0b9159450/mc-1-big-Data.db')] (1 sstables, 4.965KiB), biggest 4.965KiB, smallest 4.965KiB  
   [junit] DEBUG [main] 2016-09-08 21:20:32,429 ?:? - Enqueuing flush of aggregates: 0.123KiB (0%) on-heap, 0.024KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:32,440 ?:? - Writing Memtable-aggregates@1690829698(0.008KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:32,441 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/aggregates-924c55872e3a345bb10c12f37c1ba895/mc-1-big-Data.db (0.035KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=3048)  
   [junit] DEBUG [MemtableFlushWriter:2] 2016-09-08 21:20:32,475 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/aggregates-924c55872e3a345bb10c12f37c1ba895/mc-1-big-Data.db')] (1 sstables, 4.965KiB), biggest 4.965KiB, smallest 4.965KiB  
   [junit] DEBUG [main] 2016-09-08 21:20:32,476 ?:? - Enqueuing flush of indexes: 0.123KiB (0%) on-heap, 0.024KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,487 ?:? - Writing Memtable-indexes@1643454131(0.008KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,487 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system_schema/indexes-0feb57ac311f382fba6d9024d305702f/mc-1-big-Data.db (0.035KiB) for commitlog position CommitLogPosition(segmentId=1473340830408, position=3048)  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:20:32,522 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system_schema/indexes-0feb57ac311f382fba6d9024d305702f/mc-1-big-Data.db')] (1 sstables, 4.881KiB), biggest 4.881KiB, smallest 4.881KiB  
   [junit] DEBUG [COMMIT-LOG-ALLOCATOR] 2016-09-08 21:20:32,526 ?:? - No segments in reserve; creating a fresh one  
   [junit] DEBUG [main] 2016-09-08 21:20:32,531 ?:? - Enqueuing flush of table_0: 0.814KiB (0%) on-heap, 0.180KiB (0%) off-heap  
   [junit] DEBUG [main] 2016-09-08 21:20:32,531 ?:? - Enqueuing flush of sstable_activity: 0.492KiB (0%) on-heap, 0.152KiB (0%) off-heap  
   [junit] DEBUG [main] 2016-09-08 21:20:32,531 ?:? - Enqueuing flush of compaction_history: 0.436KiB (0%) on-heap, 0.207KiB (0%) off-heap  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:32,543 ?:? - Writing Memtable-table_0@598698839(0.208KiB serialized bytes, 3 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,543 ?:? - Writing Memtable-sstable_activity@1989779256(0.031KiB serialized bytes, 4 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,543 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system/sstable_activity-5a1ff267ace03f128563cfae6103c65e/mc-1-big-Data.db (0.195KiB) for commitlog position CommitLogPosition(segmentId=1473340830409, position=28)  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:2] 2016-09-08 21:20:32,543 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/cql_test_keyspace/table_0-0494c86075c711e69e7a57ce605afbc8/mc-1-big-Data.db (0.119KiB) for commitlog position CommitLogPosition(segmentId=1473340830409, position=28)  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:20:32,592 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system/sstable_activity-5a1ff267ace03f128563cfae6103c65e/mc-1-big-Data.db')] (1 sstables, 5.159KiB), biggest 5.159KiB, smallest 5.159KiB  
   [junit] DEBUG [MemtableFlushWriter:2] 2016-09-08 21:20:32,592 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/cql_test_keyspace/table_0-0494c86075c711e69e7a57ce605afbc8/mc-1-big-Data.db')] (1 sstables, 4.939KiB), biggest 4.939KiB, smallest 4.939KiB  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,603 ?:? - Writing Memtable-compaction_history@102213501(0.198KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (null, null]  
   [junit] DEBUG [PerDiskMemtableFlushWriter_0:1] 2016-09-08 21:20:32,604 ?:? - Completed flushing /home/user/cassandra-trunk/build/test/cassandra/data/system/compaction_history-b4dbb7b4dc493fb5b3bfce6e434832ca/mc-1-big-Data.db (0.107KiB) for commitlog position CommitLogPosition(segmentId=1473340830409, position=28)  
   [junit] DEBUG [MemtableFlushWriter:1] 2016-09-08 21:20:32,640 ?:? - Flushed to [BigTableReader(path='/home/user/cassandra-trunk/build/test/cassandra/data/system/compaction_history-b4dbb7b4dc493fb5b3bfce6e434832ca/mc-1-big-Data.db')] (1 sstables, 5.264KiB), biggest 5.264KiB, smallest 5.264KiB  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:32,640 ?:? - Commit log segment CommitLogSegment(build/test/cassandra/commitlog/CommitLog-6-1473340830408.log) is unused  
   [junit] DEBUG [MemtablePostFlush:1] 2016-09-08 21:20:32,640 ?:? - Segment CommitLogSegment(build/test/cassandra/commitlog/CommitLog-6-1473340830408.log) is no longer active and will be deleted now  
   [junit] ------------- ---------------- ---------------  
 [junitreport] Processing /home/user/cassandra-trunk/build/test/TESTS-TestSuites.xml to /tmp/null1296955121  
 [junitreport] Loading stylesheet jar:file:/usr/share/ant/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-frames.xsl  
 [junitreport] Transform time: 243ms  
 [junitreport] Deleting: /tmp/null1296955121  
   
 BUILD SUCCESSFUL  
 Total time: 5 seconds  
 user@localhost:~/cassandra-trunk$   

That's it, happy testing and develop for cassandra.