Results

By type

          cassandra 22:46:37.24 
cassandra 22:46:37.25 Welcome to the Bitnami cassandra container
cassandra 22:46:37.26 Subscribe to project updates by watching https://github.com/bitnami/bitnami-docker-cassandra
cassandra 22:46:37.27 Submit issues and feature requests at https://github.com/bitnami/bitnami-docker-cassandra/issues
cassandra 22:46:37.27 
cassandra 22:46:37.28 INFO  ==> ** Starting Cassandra setup **
cassandra 22:46:37.35 INFO  ==> Validating settings in CASSANDRA_* env vars..
cassandra 22:46:37.51 INFO  ==> Initializing Cassandra database...
cassandra 22:46:37.56 DEBUG ==> No injected metrics-reporter-config-sample.yaml file found. Creating default metrics-reporter-config-sample.yaml file
cassandra 22:46:37.59 DEBUG ==> No injected triggers/README.txt file found. Creating default triggers/README.txt file
cassandra 22:46:37.63 DEBUG ==> No injected cqlshrc.sample file found. Creating default cqlshrc.sample file
cassandra 22:46:37.67 DEBUG ==> No injected commitlog_archiving.properties file found. Creating default commitlog_archiving.properties file
cassandra 22:46:37.71 DEBUG ==> No injected README.txt file found. Creating default README.txt file
cassandra 22:46:37.76 DEBUG ==> No injected jvm.options file found. Creating default jvm.options file
cassandra 22:46:37.82 DEBUG ==> No injected hotspot_compiler file found. Creating default hotspot_compiler file
cassandra 22:46:37.88 DEBUG ==> No injected logback.xml file found. Creating default logback.xml file
cassandra 22:46:37.94 DEBUG ==> No injected cassandra-topology.properties file found. Creating default cassandra-topology.properties file
cassandra 22:46:37.99 DEBUG ==> No injected cassandra-jaas.config file found. Creating default cassandra-jaas.config file
cassandra 22:46:38.04 DEBUG ==> No injected cassandra-env.sh file found. Creating default cassandra-env.sh file
cassandra 22:46:38.09 DEBUG ==> No injected cassandra-rackdc.properties file found. Creating default cassandra-rackdc.properties file
cassandra 22:46:38.14 DEBUG ==> No injected cassandra.yaml file found. Creating default cassandra.yaml file
cassandra 22:46:38.18 DEBUG ==> No injected logback-tools.xml file found. Creating default logback-tools.xml file
cassandra 22:46:38.21 DEBUG ==> No injected cassandra-env.ps1 file found. Creating default cassandra-env.ps1 file
cassandra 22:46:38.71 DEBUG ==> Ensuring expected directories/files exist...
cassandra 22:46:38.77 INFO  ==> Deploying Cassandra from scratch
cassandra 22:46:38.78 INFO  ==> Starting Cassandra
cassandra 22:46:38.81 INFO  ==> Checking that it started up correctly
cassandra 22:46:38.83 DEBUG ==> Checking that log /opt/bitnami/cassandra/logs/cassandra_first_boot.log contains entry "Starting listening for CQL clients"
INFO  [main] 2021-04-19 22:46:59,673 Server.java:159 - Starting listening for CQL clients on /0.0.0.0:9042 (unencrypted)...
cassandra 22:47:04.08 INFO  ==> Found CQL startup log line
cassandra 22:47:04.10 DEBUG ==> Checking status with nodetool
UN  10.242.220.75  70.7 KiB   256          100.0%            a3cce8cd-66e8-4f33-943b-2ddf2f15f0b2  rack1
cassandra 22:47:06.67 INFO  ==> Nodetool reported the successful startup of Cassandra
cassandra 22:47:06.69 INFO  ==> Password seeder node
cassandra 22:47:06.71 INFO  ==> Trying to access CQL server @ dev-portal-cassandra-5b696658df-zbtlz
cassandra 22:47:06.77 DEBUG ==> Executing CQL "DESCRIBE KEYSPACES"

system_traces  system_schema  system_auth  system  system_distributed

cassandra 22:47:08.03 INFO  ==> Accessed CQL server successfully
cassandra 22:47:08.04 INFO  ==> Creating super-user root
cassandra 22:47:08.10 DEBUG ==> Executing CQL "CREATE USER 'root' WITH PASSWORD $$Aa123456$$ SUPERUSER;"
cassandra 22:47:09.37 INFO  ==> Loading user's custom files from /docker-entrypoint-initdb.d ...
cassandra 22:47:09.40 DEBUG ==> Executing /docker-entrypoint-initdb.d/aaa_portal.cql
cassandra 22:47:09.42 DEBUG ==> Executing CQL "// Copyright (c) 2018 Amdocs, Bell Canada, AT&T
// Modifications Copyright (c) 2020 Nokia
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//       http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

CREATE KEYSPACE IF NOT EXISTS portal
    WITH REPLICATION = {
        'class' : 'SimpleStrategy',
        'replication_factor': 1
    }
    AND DURABLE_WRITES = true;


CREATE TABLE portal.spring_session (
    primary_id text PRIMARY KEY,
    creation_time text,
    expiry_time text,
    last_access_time text,
    max_inactive_interval text,
    principal_name text,
    session_id text,
    vector_ts text
) WITH bloom_filter_fp_chance = 0.01
    AND caching = {'keys': 'ALL', 'rows_per_partition': '10'}
    AND comment = ''
    AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'}
    AND compression = {'chunk_length_in_kb': '64', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'}
    AND crc_check_chance = 1.0
    AND dclocal_read_repair_chance = 0.1
    AND default_time_to_live = 0
    AND gc_grace_seconds = 864000
    AND max_index_interval = 2048
    AND memtable_flush_period_in_ms = 0
    AND min_index_interval = 128
    AND read_repair_chance = 0.0
    AND speculative_retry = '99PERCENTILE';


CREATE TABLE portal.spring_session_attributes (
    primary_id text,
    attribute_name text,
    attribute_bytes blob,
    vector_ts text,
    PRIMARY KEY (primary_id, attribute_name)
) WITH CLUSTERING ORDER BY (attribute_name ASC)
    AND bloom_filter_fp_chance = 0.01
    AND caching = {'keys': 'ALL', 'rows_per_partition': '1'}
    AND comment = ''
    AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'}
    AND compression = {'chunk_length_in_kb': '64', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'}
    AND crc_check_chance = 1.0
    AND dclocal_read_repair_chance = 0.1
    AND default_time_to_live = 0
    AND gc_grace_seconds = 864000
    AND max_index_interval = 2048
    AND memtable_flush_period_in_ms = 0
    AND min_index_interval = 128
    AND read_repair_chance = 0.0
    AND speculative_retry = '99PERCENTILE';

CREATE TABLE portal.health_check (primary_id text PRIMARY KEY, creation_time text);
insert into portal.health_check (primary_id,creation_time) values ('ECOMPPortal-25927','2018-05-25T20:14:39.408Z');"

Warnings :
dclocal_read_repair_chance table option has been deprecated and will be removed in version 4.0

dclocal_read_repair_chance table option has been deprecated and will be removed in version 4.0


Warnings :
dclocal_read_repair_chance table option has been deprecated and will be removed in version 4.0

dclocal_read_repair_chance table option has been deprecated and will be removed in version 4.0

cassandra 22:47:11.28 INFO  ==> ** Cassandra setup finished! **

cassandra 22:47:11.35 INFO  ==> ** Starting Cassandra **
cassandra 22:47:11.36 INFO  ==> Cassandra already running with PID 201 because of the intial cluster setup
cassandra 22:47:11.37 INFO  ==> Tailing /opt/bitnami/cassandra/logs/cassandra_first_boot.log
CompilerOracle: dontinline org/apache/cassandra/db/Columns$Serializer.deserializeLargeSubset (Lorg/apache/cassandra/io/util/DataInputPlus;Lorg/apache/cassandra/db/Columns;I)Lorg/apache/cassandra/db/Columns;
CompilerOracle: dontinline org/apache/cassandra/db/Columns$Serializer.serializeLargeSubset (Ljava/util/Collection;ILorg/apache/cassandra/db/Columns;ILorg/apache/cassandra/io/util/DataOutputPlus;)V
CompilerOracle: dontinline org/apache/cassandra/db/Columns$Serializer.serializeLargeSubsetSize (Ljava/util/Collection;ILorg/apache/cassandra/db/Columns;I)I
CompilerOracle: dontinline org/apache/cassandra/db/commitlog/AbstractCommitLogSegmentManager.advanceAllocatingFrom (Lorg/apache/cassandra/db/commitlog/CommitLogSegment;)V
CompilerOracle: dontinline org/apache/cassandra/db/transform/BaseIterator.tryGetMoreContents ()Z
CompilerOracle: dontinline org/apache/cassandra/db/transform/StoppingTransformation.stop ()V
CompilerOracle: dontinline org/apache/cassandra/db/transform/StoppingTransformation.stopInPartition ()V
CompilerOracle: dontinline org/apache/cassandra/io/util/BufferedDataOutputStreamPlus.doFlush (I)V
CompilerOracle: dontinline org/apache/cassandra/io/util/BufferedDataOutputStreamPlus.writeExcessSlow ()V
CompilerOracle: dontinline org/apache/cassandra/io/util/BufferedDataOutputStreamPlus.writeSlow (JI)V
CompilerOracle: dontinline org/apache/cassandra/io/util/RebufferingInputStream.readPrimitiveSlowly (I)J
CompilerOracle: inline org/apache/cassandra/db/rows/UnfilteredSerializer.serializeRowBody (Lorg/apache/cassandra/db/rows/Row;ILorg/apache/cassandra/db/SerializationHeader;Lorg/apache/cassandra/io/util/DataOutputPlus;)V
CompilerOracle: inline org/apache/cassandra/io/util/Memory.checkBounds (JJ)V
CompilerOracle: inline org/apache/cassandra/io/util/SafeMemory.checkBounds (JJ)V
CompilerOracle: inline org/apache/cassandra/utils/AsymmetricOrdering.selectBoundary (Lorg/apache/cassandra/utils/AsymmetricOrdering/Op;II)I
CompilerOracle: inline org/apache/cassandra/utils/AsymmetricOrdering.strictnessOfLessThan (Lorg/apache/cassandra/utils/AsymmetricOrdering/Op;)I
CompilerOracle: inline org/apache/cassandra/utils/BloomFilter.indexes (Lorg/apache/cassandra/utils/IFilter/FilterKey;)[J
CompilerOracle: inline org/apache/cassandra/utils/BloomFilter.setIndexes (JJIJ[J)V
CompilerOracle: inline org/apache/cassandra/utils/ByteBufferUtil.compare (Ljava/nio/ByteBuffer;[B)I
CompilerOracle: inline org/apache/cassandra/utils/ByteBufferUtil.compare ([BLjava/nio/ByteBuffer;)I
CompilerOracle: inline org/apache/cassandra/utils/ByteBufferUtil.compareUnsigned (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
CompilerOracle: inline org/apache/cassandra/utils/FastByteOperations$UnsafeOperations.compareTo (Ljava/lang/Object;JILjava/lang/Object;JI)I
CompilerOracle: inline org/apache/cassandra/utils/FastByteOperations$UnsafeOperations.compareTo (Ljava/lang/Object;JILjava/nio/ByteBuffer;)I
CompilerOracle: inline org/apache/cassandra/utils/FastByteOperations$UnsafeOperations.compareTo (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
CompilerOracle: inline org/apache/cassandra/utils/vint/VIntCoding.encodeVInt (JI)[B
INFO  [main] 2021-04-19 22:46:46,867 YamlConfigurationLoader.java:92 - Configuration location: file:/opt/bitnami/cassandra/conf/cassandra.yaml
INFO  [main] 2021-04-19 22:46:47,225 Config.java:536 - Node configuration:[allocate_tokens_for_keyspace=null; authenticator=PasswordAuthenticator; authorizer=CassandraAuthorizer; auto_bootstrap=true; auto_snapshot=true; back_pressure_enabled=false; back_pressure_strategy=org.apache.cassandra.net.RateBasedBackPressure{high_ratio=0.9, factor=5, flow=FAST}; 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=dev-portal-cassandra-5b696658df-zbtlz; 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=/bitnami/cassandra/data/cdc_raw; cdc_total_space_in_mb=0; check_for_duplicate_rows_during_compaction=true; check_for_duplicate_rows_during_reads=true; client_encryption_options=; cluster_name=cassandra; column_index_cache_size_in_kb=2; column_index_size_in_kb=64; commit_failure_policy=stop; commitlog_compression=null; commitlog_directory=/bitnami/cassandra/data/commitlog; commitlog_max_compression_buffers_in_pool=3; commitlog_periodic_queue_size=-1; commitlog_segment_size_in_mb=32; commitlog_sync=periodic; commitlog_sync_batch_window_in_ms=NaN; commitlog_sync_period_in_ms=10000; commitlog_total_space_in_mb=null; compaction_large_partition_warning_threshold_mb=100; compaction_throughput_mb_per_sec=16; concurrent_compactors=null; 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;@7ea37dbf; disk_access_mode=auto; disk_failure_policy=stop; 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_materialized_views=true; enable_sasi_indexes=true; enable_scripted_user_defined_functions=false; enable_user_defined_functions=false; enable_user_defined_functions_threads=true; encryption_options=null; endpoint_snitch=SimpleSnitch; file_cache_round_up=null; file_cache_size_in_mb=null; gc_log_threshold_in_ms=200; gc_warn_threshold_in_ms=1000; hinted_handoff_disabled_datacenters=[]; hinted_handoff_enabled=true; hinted_handoff_throttle_in_kb=1024; hints_compression=null; hints_directory=/bitnami/cassandra/data/hints; hints_flush_period_in_ms=10000; incremental_backups=false; 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=false; internode_authenticator=null; internode_compression=dc; internode_recv_buff_size_in_bytes=0; internode_send_buff_size_in_bytes=0; key_cache_keys_to_save=2147483647; key_cache_save_period=14400; key_cache_size_in_mb=null; listen_address=dev-portal-cassandra-5b696658df-zbtlz; 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=heap_buffers; memtable_cleanup_threshold=null; memtable_flush_writers=0; memtable_heap_space_in_mb=null; memtable_offheap_space_in_mb=null; min_free_space_per_drive_in_mb=50; native_transport_flush_in_batches_legacy=true; native_transport_max_concurrent_connections=-1; native_transport_max_concurrent_connections_per_ip=-1; native_transport_max_concurrent_requests_in_bytes=-1; native_transport_max_concurrent_requests_in_bytes_per_ip=-1; native_transport_max_frame_size_in_mb=256; native_transport_max_negotiable_protocol_version=-2147483648; native_transport_max_threads=128; native_transport_port=9042; native_transport_port_ssl=null; num_tokens=256; otc_backlog_expiration_interval_ms=200; otc_coalescing_enough_coalesced_messages=8; otc_coalescing_strategy=DISABLED; otc_coalescing_window_us=200; partitioner=org.apache.cassandra.dht.Murmur3Partitioner; 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; repair_session_max_tree_depth=18; request_scheduler=org.apache.cassandra.scheduler.NoScheduler; request_scheduler_id=null; request_scheduler_options=null; request_timeout_in_ms=10000; role_manager=CassandraRoleManager; 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=0; rpc_address=0.0.0.0; 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=9160; rpc_recv_buff_size_in_bytes=null; rpc_send_buff_size_in_bytes=null; rpc_server_type=sync; saved_caches_directory=/bitnami/cassandra/data/saved_caches; seed_provider=org.apache.cassandra.locator.SimpleSeedProvider{seeds=dev-portal-cassandra-5b696658df-zbtlz}; server_encryption_options=; slow_query_log_timeout_in_ms=500; snapshot_before_compaction=false; snapshot_on_duplicate_row_detection=false; ssl_storage_port=7001; sstable_preemptive_open_interval_in_mb=50; start_native_transport=true; start_rpc=true; storage_port=7000; 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@4b44655e; 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=1; write_request_timeout_in_ms=2000]
INFO  [main] 2021-04-19 22:46:47,226 DatabaseDescriptor.java:381 - DiskAccessMode 'auto' determined to be mmap, indexAccessMode is mmap
INFO  [main] 2021-04-19 22:46:47,226 DatabaseDescriptor.java:439 - Global memtable on-heap threshold is enabled at 982MB
INFO  [main] 2021-04-19 22:46:47,226 DatabaseDescriptor.java:443 - Global memtable off-heap threshold is enabled at 982MB
INFO  [main] 2021-04-19 22:46:47,433 RateBasedBackPressure.java:123 - Initialized back-pressure with high ratio: 0.9, factor: 5, flow: FAST, window size: 2000.
INFO  [main] 2021-04-19 22:46:47,433 DatabaseDescriptor.java:773 - Back-pressure is disabled with strategy org.apache.cassandra.net.RateBasedBackPressure{high_ratio=0.9, factor=5, flow=FAST}.
INFO  [main] 2021-04-19 22:46:47,536 JMXServerUtils.java:253 - Configured JMX server at: service:jmx:rmi://127.0.0.1/jndi/rmi://127.0.0.1:7199/jmxrmi
INFO  [main] 2021-04-19 22:46:47,543 CassandraDaemon.java:490 - Hostname: dev-portal-cassandra-5b696658df-zbtlz
INFO  [main] 2021-04-19 22:46:47,544 CassandraDaemon.java:497 - JVM vendor/version: OpenJDK 64-Bit Server VM/1.8.0_275
INFO  [main] 2021-04-19 22:46:47,545 CassandraDaemon.java:498 - Heap size: 3.838GiB/3.838GiB
INFO  [main] 2021-04-19 22:46:47,545 CassandraDaemon.java:503 - Code Cache Non-heap memory: init = 2555904(2496K) used = 4714496(4604K) committed = 4784128(4672K) max = 251658240(245760K)
INFO  [main] 2021-04-19 22:46:47,545 CassandraDaemon.java:503 - Metaspace Non-heap memory: init = 0(0K) used = 18742688(18303K) committed = 19267584(18816K) max = -1(-1K)
INFO  [main] 2021-04-19 22:46:47,546 CassandraDaemon.java:503 - Compressed Class Space Non-heap memory: init = 0(0K) used = 2263648(2210K) committed = 2490368(2432K) max = 1073741824(1048576K)
INFO  [main] 2021-04-19 22:46:47,546 CassandraDaemon.java:503 - Par Eden Space Heap memory: init = 671088640(655360K) used = 147643216(144182K) committed = 671088640(655360K) max = 671088640(655360K)
INFO  [main] 2021-04-19 22:46:47,546 CassandraDaemon.java:503 - Par Survivor Space Heap memory: init = 83886080(81920K) used = 0(0K) committed = 83886080(81920K) max = 83886080(81920K)
INFO  [main] 2021-04-19 22:46:47,546 CassandraDaemon.java:503 - CMS Old Gen Heap memory: init = 3365928960(3287040K) used = 0(0K) committed = 3365928960(3287040K) max = 3365928960(3287040K)
INFO  [main] 2021-04-19 22:46:47,547 CassandraDaemon.java:505 - Classpath: /opt/bitnami/cassandra/bin/../conf:/opt/bitnami/cassandra/bin/../build/classes/main:/opt/bitnami/cassandra/bin/../build/classes/thrift:/opt/bitnami/cassandra/bin/../lib/HdrHistogram-2.1.9.jar:/opt/bitnami/cassandra/bin/../lib/ST4-4.0.8.jar:/opt/bitnami/cassandra/bin/../lib/airline-0.6.jar:/opt/bitnami/cassandra/bin/../lib/antlr-runtime-3.5.2.jar:/opt/bitnami/cassandra/bin/../lib/apache-cassandra-3.11.9.jar:/opt/bitnami/cassandra/bin/../lib/apache-cassandra-thrift-3.11.9.jar:/opt/bitnami/cassandra/bin/../lib/asm-5.0.4.jar:/opt/bitnami/cassandra/bin/../lib/caffeine-2.2.6.jar:/opt/bitnami/cassandra/bin/../lib/cassandra-driver-core-3.0.1-shaded.jar:/opt/bitnami/cassandra/bin/../lib/commons-cli-1.1.jar:/opt/bitnami/cassandra/bin/../lib/commons-codec-1.9.jar:/opt/bitnami/cassandra/bin/../lib/commons-lang3-3.1.jar:/opt/bitnami/cassandra/bin/../lib/commons-math3-3.2.jar:/opt/bitnami/cassandra/bin/../lib/compress-lzf-0.8.4.jar:/opt/bitnami/cassandra/bin/../lib/concurrent-trees-2.4.0.jar:/opt/bitnami/cassandra/bin/../lib/concurrentlinkedhashmap-lru-1.4.jar:/opt/bitnami/cassandra/bin/../lib/disruptor-3.0.1.jar:/opt/bitnami/cassandra/bin/../lib/ecj-4.4.2.jar:/opt/bitnami/cassandra/bin/../lib/guava-18.0.jar:/opt/bitnami/cassandra/bin/../lib/high-scale-lib-1.0.6.jar:/opt/bitnami/cassandra/bin/../lib/hppc-0.5.4.jar:/opt/bitnami/cassandra/bin/../lib/jackson-annotations-2.9.10.jar:/opt/bitnami/cassandra/bin/../lib/jackson-core-2.9.10.jar:/opt/bitnami/cassandra/bin/../lib/jackson-databind-2.9.10.4.jar:/opt/bitnami/cassandra/bin/../lib/jamm-0.3.0.jar:/opt/bitnami/cassandra/bin/../lib/javax.inject.jar:/opt/bitnami/cassandra/bin/../lib/jbcrypt-0.3m.jar:/opt/bitnami/cassandra/bin/../lib/jcl-over-slf4j-1.7.7.jar:/opt/bitnami/cassandra/bin/../lib/jctools-core-1.2.1.jar:/opt/bitnami/cassandra/bin/../lib/jflex-1.6.0.jar:/opt/bitnami/cassandra/bin/../lib/jna-4.2.2.jar:/opt/bitnami/cassandra/bin/../lib/joda-time-2.4.jar:/opt/bitnami/cassandra/bin/../lib/json-simple-1.1.jar:/opt/bitnami/cassandra/bin/../lib/jstackjunit-0.0.1.jar:/opt/bitnami/cassandra/bin/../lib/libthrift-0.9.2.jar:/opt/bitnami/cassandra/bin/../lib/log4j-over-slf4j-1.7.7.jar:/opt/bitnami/cassandra/bin/../lib/logback-classic-1.1.3.jar:/opt/bitnami/cassandra/bin/../lib/logback-core-1.1.3.jar:/opt/bitnami/cassandra/bin/../lib/lz4-1.3.0.jar:/opt/bitnami/cassandra/bin/../lib/metrics-core-3.1.5.jar:/opt/bitnami/cassandra/bin/../lib/metrics-jvm-3.1.5.jar:/opt/bitnami/cassandra/bin/../lib/metrics-logback-3.1.5.jar:/opt/bitnami/cassandra/bin/../lib/netty-all-4.0.44.Final.jar:/opt/bitnami/cassandra/bin/../lib/ohc-core-0.4.4.jar:/opt/bitnami/cassandra/bin/../lib/ohc-core-j8-0.4.4.jar:/opt/bitnami/cassandra/bin/../lib/reporter-config-base-3.0.3.jar:/opt/bitnami/cassandra/bin/../lib/reporter-config3-3.0.3.jar:/opt/bitnami/cassandra/bin/../lib/sigar-1.6.4.jar:/opt/bitnami/cassandra/bin/../lib/slf4j-api-1.7.7.jar:/opt/bitnami/cassandra/bin/../lib/snakeyaml-1.11.jar:/opt/bitnami/cassandra/bin/../lib/snappy-java-1.1.1.7.jar:/opt/bitnami/cassandra/bin/../lib/snowball-stemmer-1.3.0.581.1.jar:/opt/bitnami/cassandra/bin/../lib/stream-2.5.2.jar:/opt/bitnami/cassandra/bin/../lib/thrift-server-0.3.7.jar:/opt/bitnami/cassandra/bin/../lib/jsr223/*/*.jar::/opt/bitnami/cassandra/bin/../lib/jamm-0.3.0.jar
INFO  [main] 2021-04-19 22:46:47,547 CassandraDaemon.java:507 - JVM Arguments: [-Xloggc:/opt/bitnami/cassandra/logs/gc.log, -ea, -XX:+UseThreadPriorities, -XX:ThreadPriorityPolicy=42, -XX:+HeapDumpOnOutOfMemoryError, -Xss256k, -XX:StringTableSize=1000003, -XX:+AlwaysPreTouch, -XX:-UseBiasedLocking, -XX:+UseTLAB, -XX:+ResizeTLAB, -XX:+UseNUMA, -XX:+PerfDisableSharedMem, -Djava.net.preferIPv4Stack=true, -XX:+UseParNewGC, -XX:+UseConcMarkSweepGC, -XX:+CMSParallelRemarkEnabled, -XX:SurvivorRatio=8, -XX:MaxTenuringThreshold=1, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -XX:CMSWaitDuration=10000, -XX:+CMSParallelInitialMarkEnabled, -XX:+CMSEdenChunksRecordAlways, -XX:+CMSClassUnloadingEnabled, -XX:+PrintGCDetails, -XX:+PrintGCDateStamps, -XX:+PrintHeapAtGC, -XX:+PrintTenuringDistribution, -XX:+PrintGCApplicationStoppedTime, -XX:+PrintPromotionFailure, -XX:+UseGCLogFileRotation, -XX:NumberOfGCLogFiles=10, -XX:GCLogFileSize=10M, -Xms4009M, -Xmx4009M, -Xmn800M, -XX:+UseCondCardMark, -XX:CompileCommandFile=/opt/bitnami/cassandra/bin/../conf/hotspot_compiler, -javaagent:/opt/bitnami/cassandra/bin/../lib/jamm-0.3.0.jar, -Dcassandra.jmx.local.port=7199, -Dcom.sun.management.jmxremote.authenticate=false, -Dcom.sun.management.jmxremote.password.file=/etc/cassandra/jmxremote.password, -Djava.library.path=/opt/bitnami/cassandra/bin/../lib/sigar-bin, -XX:OnOutOfMemoryError=kill -9 %p, -Dlogback.configurationFile=logback.xml, -Dcassandra.logdir=/opt/bitnami/cassandra/logs, -Dcassandra.storagedir=/opt/bitnami/cassandra/bin/../data, -Dcassandra-pidfile=/opt/bitnami/cassandra/tmp/cassandra.pid, -Dcassandra-foreground=yes]
WARN  [main] 2021-04-19 22:46:47,623 NativeLibrary.java:189 - Unable to lock JVM memory (ENOMEM). This can result in part of the JVM being swapped out, especially with mmapped I/O enabled. Increase RLIMIT_MEMLOCK or run Cassandra as root.
WARN  [main] 2021-04-19 22:46:47,623 StartupChecks.java:136 - jemalloc shared library could not be preloaded to speed up memory allocations
WARN  [main] 2021-04-19 22:46:47,624 StartupChecks.java:169 - JMX is not enabled to receive remote connections. Please see cassandra-env.sh for more info.
INFO  [main] 2021-04-19 22:46:47,626 SigarLibrary.java:44 - Initializing SIGAR library
INFO  [main] 2021-04-19 22:46:47,642 SigarLibrary.java:180 - Checked OS settings and found them configured for optimal performance.
WARN  [main] 2021-04-19 22:46:47,643 StartupChecks.java:311 - Maximum number of memory map areas per process (vm.max_map_count) 65530 is too low, recommended value: 1048575, you can change it with sysctl.
WARN  [main] 2021-04-19 22:46:47,652 StartupChecks.java:332 - Directory /bitnami/cassandra/data/data doesn't exist
WARN  [main] 2021-04-19 22:46:47,656 StartupChecks.java:332 - Directory /bitnami/cassandra/data/commitlog doesn't exist
WARN  [main] 2021-04-19 22:46:47,656 StartupChecks.java:332 - Directory /bitnami/cassandra/data/saved_caches doesn't exist
WARN  [main] 2021-04-19 22:46:47,657 StartupChecks.java:332 - Directory /bitnami/cassandra/data/hints doesn't exist
INFO  [main] 2021-04-19 22:46:47,717 QueryProcessor.java:116 - Initialized prepared statement caches with 15 MB (native) and 15 MB (Thrift)
INFO  [main] 2021-04-19 22:46:48,256 ColumnFamilyStore.java:427 - Initializing system.IndexInfo
INFO  [main] 2021-04-19 22:46:48,996 ColumnFamilyStore.java:427 - Initializing system.batches
INFO  [main] 2021-04-19 22:46:49,004 ColumnFamilyStore.java:427 - Initializing system.paxos
INFO  [main] 2021-04-19 22:46:49,014 ColumnFamilyStore.java:427 - Initializing system.local
INFO  [main] 2021-04-19 22:46:49,020 ColumnFamilyStore.java:427 - Initializing system.peers
INFO  [main] 2021-04-19 22:46:49,027 ColumnFamilyStore.java:427 - Initializing system.peer_events
INFO  [main] 2021-04-19 22:46:49,032 ColumnFamilyStore.java:427 - Initializing system.range_xfers
INFO  [main] 2021-04-19 22:46:49,039 ColumnFamilyStore.java:427 - Initializing system.compaction_history
INFO  [main] 2021-04-19 22:46:49,044 ColumnFamilyStore.java:427 - Initializing system.sstable_activity
INFO  [main] 2021-04-19 22:46:49,051 ColumnFamilyStore.java:427 - Initializing system.size_estimates
INFO  [main] 2021-04-19 22:46:49,057 ColumnFamilyStore.java:427 - Initializing system.available_ranges
INFO  [main] 2021-04-19 22:46:49,063 ColumnFamilyStore.java:427 - Initializing system.transferred_ranges
INFO  [main] 2021-04-19 22:46:49,069 ColumnFamilyStore.java:427 - Initializing system.views_builds_in_progress
INFO  [main] 2021-04-19 22:46:49,075 ColumnFamilyStore.java:427 - Initializing system.built_views
INFO  [main] 2021-04-19 22:46:49,080 ColumnFamilyStore.java:427 - Initializing system.hints
INFO  [main] 2021-04-19 22:46:49,085 ColumnFamilyStore.java:427 - Initializing system.batchlog
INFO  [main] 2021-04-19 22:46:49,090 ColumnFamilyStore.java:427 - Initializing system.prepared_statements
INFO  [main] 2021-04-19 22:46:49,095 ColumnFamilyStore.java:427 - Initializing system.schema_keyspaces
INFO  [main] 2021-04-19 22:46:49,100 ColumnFamilyStore.java:427 - Initializing system.schema_columnfamilies
INFO  [main] 2021-04-19 22:46:49,105 ColumnFamilyStore.java:427 - Initializing system.schema_columns
INFO  [main] 2021-04-19 22:46:49,110 ColumnFamilyStore.java:427 - Initializing system.schema_triggers
INFO  [main] 2021-04-19 22:46:49,116 ColumnFamilyStore.java:427 - Initializing system.schema_usertypes
INFO  [main] 2021-04-19 22:46:49,120 ColumnFamilyStore.java:427 - Initializing system.schema_functions
INFO  [main] 2021-04-19 22:46:49,126 ColumnFamilyStore.java:427 - Initializing system.schema_aggregates
INFO  [main] 2021-04-19 22:46:49,128 ViewManager.java:137 - Not submitting build tasks for views in keyspace system as storage service is not initialized
INFO  [main] 2021-04-19 22:46:49,221 ApproximateTime.java:44 - Scheduling approximate time-check task with a precision of 10 milliseconds
INFO  [main] 2021-04-19 22:46:49,253 ColumnFamilyStore.java:427 - Initializing system_schema.keyspaces
INFO  [main] 2021-04-19 22:46:49,259 ColumnFamilyStore.java:427 - Initializing system_schema.tables
INFO  [main] 2021-04-19 22:46:49,266 ColumnFamilyStore.java:427 - Initializing system_schema.columns
INFO  [main] 2021-04-19 22:46:49,271 ColumnFamilyStore.java:427 - Initializing system_schema.triggers
INFO  [main] 2021-04-19 22:46:49,276 ColumnFamilyStore.java:427 - Initializing system_schema.dropped_columns
INFO  [main] 2021-04-19 22:46:49,281 ColumnFamilyStore.java:427 - Initializing system_schema.views
INFO  [main] 2021-04-19 22:46:49,285 ColumnFamilyStore.java:427 - Initializing system_schema.types
INFO  [main] 2021-04-19 22:46:49,290 ColumnFamilyStore.java:427 - Initializing system_schema.functions
INFO  [main] 2021-04-19 22:46:49,295 ColumnFamilyStore.java:427 - Initializing system_schema.aggregates
INFO  [main] 2021-04-19 22:46:49,300 ColumnFamilyStore.java:427 - Initializing system_schema.indexes
INFO  [main] 2021-04-19 22:46:49,301 ViewManager.java:137 - Not submitting build tasks for views in keyspace system_schema as storage service is not initialized
INFO  [MemtableFlushWriter:1] 2021-04-19 22:46:49,859 CacheService.java:100 - Initializing key cache with capacity of 100 MBs.
INFO  [MemtableFlushWriter:1] 2021-04-19 22:46:49,868 CacheService.java:122 - Initializing row cache with capacity of 0 MBs
INFO  [MemtableFlushWriter:1] 2021-04-19 22:46:49,870 CacheService.java:151 - Initializing counter cache with capacity of 50 MBs
INFO  [MemtableFlushWriter:1] 2021-04-19 22:46:49,871 CacheService.java:162 - Scheduling counter cache save to every 7200 seconds (going to save all keys).
INFO  [CompactionExecutor:2] 2021-04-19 22:46:50,227 BufferPool.java:234 - Global buffer pool is enabled, when pool is exhausted (max is 512.000MiB) it will allocate on heap
INFO  [main] 2021-04-19 22:46:50,327 StorageService.java:653 - Populating token metadata from system tables
INFO  [main] 2021-04-19 22:46:50,379 StorageService.java:660 - Token metadata: 
INFO  [pool-3-thread-1] 2021-04-19 22:46:50,411 AutoSavingCache.java:174 - Completed loading (1 ms; 9 keys) KeyCache cache
INFO  [main] 2021-04-19 22:46:50,431 CommitLog.java:142 - No commitlog files found; skipping replay
INFO  [main] 2021-04-19 22:46:50,431 StorageService.java:653 - Populating token metadata from system tables
INFO  [main] 2021-04-19 22:46:50,446 StorageService.java:660 - Token metadata: 
INFO  [main] 2021-04-19 22:46:50,540 QueryProcessor.java:163 - Preloaded 0 prepared statements
INFO  [main] 2021-04-19 22:46:50,541 StorageService.java:671 - Cassandra version: 3.11.9
INFO  [main] 2021-04-19 22:46:50,541 StorageService.java:672 - Thrift API version: 20.1.0
INFO  [main] 2021-04-19 22:46:50,542 StorageService.java:673 - CQL supported versions: 3.4.4 (default: 3.4.4)
INFO  [main] 2021-04-19 22:46:50,542 StorageService.java:675 - Native protocol supported versions: 3/v3, 4/v4, 5/v5-beta (default: 4/v4)
INFO  [main] 2021-04-19 22:46:50,603 IndexSummaryManager.java:87 - Initializing index summary manager with a memory pool size of 196 MB and a resize interval of 60 minutes
INFO  [main] 2021-04-19 22:46:50,615 MessagingService.java:750 - Starting Messaging Service on dev-portal-cassandra-5b696658df-zbtlz/10.242.220.75:7000 (eth0)
WARN  [main] 2021-04-19 22:46:50,626 SystemKeyspace.java:1130 - No host ID found, created a3cce8cd-66e8-4f33-943b-2ddf2f15f0b2 (Note: This should happen exactly once per node).
INFO  [main] 2021-04-19 22:46:50,651 StorageService.java:603 - Unable to gossip with any peers but continuing anyway since node is in its own seed list
INFO  [main] 2021-04-19 22:46:50,672 StorageService.java:757 - Loading persisted ring state
INFO  [main] 2021-04-19 22:46:50,673 StorageService.java:885 - Starting up server gossip
INFO  [main] 2021-04-19 22:46:50,748 StorageService.java:947 - This node will not auto bootstrap because it is configured to be a seed node.
INFO  [main] 2021-04-19 22:46:50,757 BootStrapper.java:228 - Generated random tokens. tokens are [3638478273829946452, 4737984675298298962, 305589913611790741, -8459582956608265238, 5827249308871151712, 5123291511499437279, 7135987794959110146, 2161979076892217706, 7500309050179748559, -2403270307424674208, -4084141448550238963, 1034819108421767794, -4140066829134907213, -7356001493326669979, -7232102331509454433, -5762374744971801110, 2905670921992156547, -3118477072025103684, 8131295249261672230, -7848151916180478814, 6066654035160143223, 2742373795339991784, 900084391757341453, 2176174867512995472, -4514270664846521823, 4819182310706572164, -1279809578981148346, 8766014787582672428, -203796950505199590, 6557003990133474819, -7492842974386222398, -2152920101528183749, 6417151551552005737, 3395961530735419499, -875162205082283952, -3193477137366935010, -8192862430176669481, -906075489887721487, 8641088268510788416, -1296080567585857174, 771182796599620112, -2400914953307149752, -276856064185996595, -2408548016380298834, 3018424592390928971, 7124550886042541330, -8779841433868557610, 6622375954715546526, -4101699820867051250, 6732551959006203673, -1326266444108202227, 8374532104804010001, 3884864856070542275, -5860161741171418582, 3874230305613509213, -6484245521166581464, -7382562017402115746, -437328728721685478, 8436086119732782505, 8930219069644382157, -6587596839715146222, 2060766519033146686, -2291582353838181310, 2688583708282344089, -1953859769749955765, -1111944021472119239, -3782441503966080262, -2881391147128060397, 172400708449079726, -677445696456627644, -5938581251177382927, -7860975621173400264, -2840859933823593509, -7153282288253113861, 3476211383247577033, -7425480211987544919, 4469842974369484574, 8566951405462139420, -7237574219225682404, 1611222589013800679, -1633862765379386259, 6632892131562592671, 4950105876038340847, 217706078912752660, -2690098470373572853, -2250647782249441504, 9022809274383559955, 6771560502285987051, 3472257125789003397, 5423332917764140900, 6070418733585598982, -1289909417500482050, 3116026329500787286, 8285623389404607228, -2275333917074195866, 2277275673500881824, -4454128221167695832, -414012961633443703, 900582690040515375, 1705193570868455182, 3322404984176050345, -497975688400899461, -3802765893635336571, 2695776255733024127, 7006669216431683425, 5762674395142459987, -7418582635766836834, -7244600054655723678, -5937889919434593949, -7050689551480239694, -3853347140643430205, 461419851435162959, -4863875490440771630, -3324257731829449092, 6198648328038298493, -7690921274567855203, -6645753997595862924, 8508762963458234564, 5558946862471567760, -2337244116602725058, -5699898358750631322, 3958812008537198563, 1396085555405845449, 8965329211331624996, 6195289949783283960, -1604471692861605614, 4012082638296052840, -3058974684816183122, -5785817371051823017, 7627739374570271455, -4624349173623319839, 5311562542996976321, -2613234885654227981, -1640678025673224995, 5807178274522958367, 8154691889989727419, 7354744354686160621, -8848429898209059200, 1675825054682712141, 3063177782206374444, -5181536521090107522, 2184029801248460463, -1669652467009014390, 938795307050994912, 7091585442619724685, 8464620849411420171, -5323064753574429943, 5417712021894450689, 2463551752076650005, -3397216462697358951, 8355017163126842727, 8599470175830222367, 8783288060605892990, 5948164506156654245, 1575616655508264481, -4558315595545628417, -3244114806660900583, -6364498191632228772, 7026404702714223737, -3460170985409946906, -3794299633357552930, -584076149971739049, -3480076085465919583, 5680201868154053074, -7908918145506289980, -7979717698451152139, -7160757362899303607, 6807134139766471794, 6128625287224371222, -4784577183030415978, 8606599226555890549, -4349993883424891379, -2860630338448073247, -3219417851579244113, 6833563708183199744, -3079974634907670446, 3433702104272253116, 6904586324731236019, -428787931238819244, -3253331078353440461, -81504632846171142, -8900642925709592806, 6709229954475744667, -250557719933807754, 1273846234356168692, -7662711244939303061, 8831751492823855249, 280145991914533510, 5244133131346776636, -71882997967443338, 7653037980193496629, 2810865100942550353, -4730405280318494123, -5582381240873090528, 2873598609367647416, 7934889839672360027, 4813760861003763060, -2134873181685432112, -6746311475501088255, 2326870093700341435, -1752958334200453534, -8655798153173288061, 3319999273760851251, -6780050915453525330, 2714703011868571942, -7584854464624705245, -950842033199287604, 6619107184635804880, 2797917206362023823, -5904203763381882769, 4858300862752311373, -5612751087003227794, -3733882701707999880, 2937901478118503634, 7154621140963789173, -3655539134108460917, 392224922737294184, 1659199608608530814, 3731543003366432049, -6906962139946961296, 2643049147871633635, 7791137607755830716, 554447128549015890, 1615626722199918206, 6750385625464251177, -2355304944287561166, -479573692318605463, -3733523895587386073, -2554229333228136284, 7402177855996668433, 3747783410059374912, 4484550566603108535, -7791653933064944403, -2616182837080296530, 6681313654236093828, 7704900093019293360, -3571050928248368808, 7537377218173300407, -526873295057100119, -1945994402336186201, -1412523723462000489, -8265509721067096994, -6255394089847686558, -6621906856513490704, -3476805376332079821, 6608433048900909874, -8966251431324791623, -6185977339704000539, -6895809476636327368, -4566988256205602693, -2550129201814066461, 5136116784072982059, 7379263720869261444, 1741921124114946631, -3415053180799701758, -3232997920427331582]
INFO  [MigrationStage:1] 2021-04-19 22:46:51,189 ViewManager.java:137 - Not submitting build tasks for views in keyspace system_traces as storage service is not initialized
INFO  [MigrationStage:1] 2021-04-19 22:46:51,196 ColumnFamilyStore.java:427 - Initializing system_traces.events
INFO  [MigrationStage:1] 2021-04-19 22:46:51,202 ColumnFamilyStore.java:427 - Initializing system_traces.sessions
INFO  [MigrationStage:1] 2021-04-19 22:46:51,206 ViewManager.java:137 - Not submitting build tasks for views in keyspace system_distributed as storage service is not initialized
INFO  [MigrationStage:1] 2021-04-19 22:46:51,210 ColumnFamilyStore.java:427 - Initializing system_distributed.parent_repair_history
INFO  [MigrationStage:1] 2021-04-19 22:46:51,217 ColumnFamilyStore.java:427 - Initializing system_distributed.repair_history
INFO  [MigrationStage:1] 2021-04-19 22:46:51,224 ColumnFamilyStore.java:427 - Initializing system_distributed.view_build_status
INFO  [MigrationStage:1] 2021-04-19 22:46:51,227 ViewManager.java:137 - Not submitting build tasks for views in keyspace system_auth as storage service is not initialized
INFO  [MigrationStage:1] 2021-04-19 22:46:51,233 ColumnFamilyStore.java:427 - Initializing system_auth.resource_role_permissons_index
INFO  [MigrationStage:1] 2021-04-19 22:46:51,240 ColumnFamilyStore.java:427 - Initializing system_auth.role_members
INFO  [MigrationStage:1] 2021-04-19 22:46:51,246 ColumnFamilyStore.java:427 - Initializing system_auth.role_permissions
INFO  [MigrationStage:1] 2021-04-19 22:46:51,253 ColumnFamilyStore.java:427 - Initializing system_auth.roles
INFO  [main] 2021-04-19 22:46:51,273 StorageService.java:1492 - JOINING: Finish joining ring
INFO  [main] 2021-04-19 22:46:51,409 AuthCache.java:177 - (Re)initializing CredentialsCache (validity period/update interval/max entries) (2000/2000/1000)
INFO  [main] 2021-04-19 22:46:51,412 Gossiper.java:1796 - Waiting for gossip to settle...
INFO  [main] 2021-04-19 22:46:59,416 Gossiper.java:1827 - No gossip backlog; proceeding
INFO  [main] 2021-04-19 22:46:59,609 NativeTransportService.java:68 - Netty using native Epoll event loop
INFO  [main] 2021-04-19 22:46:59,672 Server.java:158 - Using Netty Version: [netty-buffer=netty-buffer-4.0.44.Final.452812a, netty-codec=netty-codec-4.0.44.Final.452812a, netty-codec-haproxy=netty-codec-haproxy-4.0.44.Final.452812a, netty-codec-http=netty-codec-http-4.0.44.Final.452812a, netty-codec-socks=netty-codec-socks-4.0.44.Final.452812a, netty-common=netty-common-4.0.44.Final.452812a, netty-handler=netty-handler-4.0.44.Final.452812a, netty-tcnative=netty-tcnative-1.1.33.Fork26.142ecbb, netty-transport=netty-transport-4.0.44.Final.452812a, netty-transport-native-epoll=netty-transport-native-epoll-4.0.44.Final.452812a, netty-transport-rxtx=netty-transport-rxtx-4.0.44.Final.452812a, netty-transport-sctp=netty-transport-sctp-4.0.44.Final.452812a, netty-transport-udt=netty-transport-udt-4.0.44.Final.452812a]
INFO  [main] 2021-04-19 22:46:59,673 Server.java:159 - Starting listening for CQL clients on /0.0.0.0:9042 (unencrypted)...
INFO  [main] 2021-04-19 22:46:59,760 ThriftServer.java:116 - Binding thrift service to /0.0.0.0:9160
INFO  [main] 2021-04-19 22:46:59,767 CassandraDaemon.java:650 - Startup complete
INFO  [Thread-3] 2021-04-19 22:46:59,768 ThriftServer.java:133 - Listening for thrift clients...
INFO  [OptionalTasks:1] 2021-04-19 22:47:01,633 CassandraRoleManager.java:372 - Created default superuser role 'cassandra'
INFO  [Native-Transport-Requests-1] 2021-04-19 22:47:07,441 AuthCache.java:177 - (Re)initializing PermissionsCache (validity period/update interval/max entries) (2000/2000/1000)
INFO  [Native-Transport-Requests-1] 2021-04-19 22:47:09,090 AuthCache.java:177 - (Re)initializing RolesCache (validity period/update interval/max entries) (2000/2000/1000)
INFO  [Native-Transport-Requests-1] 2021-04-19 22:47:10,235 MigrationManager.java:338 - Create new Keyspace: KeyspaceMetadata{name=portal, params=KeyspaceParams{durable_writes=true, replication=ReplicationParams{class=org.apache.cassandra.locator.SimpleStrategy, replication_factor=1}}, tables=[], views=[], functions=[], types=[]}
WARN  [Native-Transport-Requests-1] 2021-04-19 22:47:10,446 TableAttributes.java:167 - dclocal_read_repair_chance and read_repair_chance table options have been deprecated and will be removed in version 4.0
INFO  [Native-Transport-Requests-1] 2021-04-19 22:47:10,449 MigrationManager.java:368 - Create new table: org.apache.cassandra.config.CFMetaData@5c0a2081[cfId=2d0a4700-a161-11eb-a2a3-c15fa66da1be,ksName=portal,cfName=spring_session,flags=[COMPOUND],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' : '10'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={max_threshold=32, min_threshold=4}}, compression=org.apache.cassandra.schema.CompressionParams@82336c4a, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [creation_time expiry_time last_access_time max_inactive_interval principal_name session_id vector_ts]],partitionKeyColumns=[primary_id],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[vector_ts, creation_time, primary_id, expiry_time, max_inactive_interval, last_access_time, session_id, principal_name],droppedColumns={},triggers=[],indexes=[]]
INFO  [MigrationStage:1] 2021-04-19 22:47:10,581 ColumnFamilyStore.java:427 - Initializing portal.spring_session
INFO  [Native-Transport-Requests-4] 2021-04-19 22:47:10,638 MigrationManager.java:368 - Create new table: org.apache.cassandra.config.CFMetaData@33b17033[cfId=2d2744e0-a161-11eb-a2a3-c15fa66da1be,ksName=portal,cfName=spring_session_attributes,flags=[COMPOUND],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' : '1'}, compaction=CompactionParams{class=org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy, options={max_threshold=32, min_threshold=4}}, compression=org.apache.cassandra.schema.CompressionParams@82336c4a, extensions={}, cdc=false},comparator=comparator(org.apache.cassandra.db.marshal.UTF8Type),partitionColumns=[[] | [attribute_bytes vector_ts]],partitionKeyColumns=[primary_id],clusteringColumns=[attribute_name],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[vector_ts, primary_id, attribute_name, attribute_bytes],droppedColumns={},triggers=[],indexes=[]]
INFO  [MigrationStage:1] 2021-04-19 22:47:10,752 ColumnFamilyStore.java:427 - Initializing portal.spring_session_attributes
INFO  [Native-Transport-Requests-4] 2021-04-19 22:47:10,827 MigrationManager.java:368 - Create new table: org.apache.cassandra.config.CFMetaData@1c647d41[cfId=2d441bb0-a161-11eb-a2a3-c15fa66da1be,ksName=portal,cfName=health_check,flags=[COMPOUND],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@82336c4a, extensions={}, cdc=false},comparator=comparator(),partitionColumns=[[] | [creation_time]],partitionKeyColumns=[primary_id],clusteringColumns=[],keyValidator=org.apache.cassandra.db.marshal.UTF8Type,columnMetadata=[creation_time, primary_id],droppedColumns={},triggers=[],indexes=[]]
INFO  [MigrationStage:1] 2021-04-19 22:47:10,968 ColumnFamilyStore.java:427 - Initializing portal.health_check
INFO  [Service Thread] 2021-04-19 22:52:34,994 GCInspector.java:285 - ParNew GC in 343ms.  CMS Old Gen: 0 -> 14160592; Par Eden Space: 671088640 -> 0; Par Survivor Space: 32573384 -> 32047000
INFO  [Service Thread] 2021-04-19 23:06:34,807 GCInspector.java:285 - ParNew GC in 213ms.  CMS Old Gen: 14160592 -> 28034960; Par Eden Space: 671088640 -> 0; Par Survivor Space: 32047000 -> 10994352