Results

By type

          cassandra 22:58:48.28 
cassandra 22:58:48.28 Welcome to the Bitnami cassandra container
cassandra 22:58:48.29 Subscribe to project updates by watching https://github.com/bitnami/bitnami-docker-cassandra
cassandra 22:58:48.30 Submit issues and feature requests at https://github.com/bitnami/bitnami-docker-cassandra/issues
cassandra 22:58:48.30 
cassandra 22:58:48.31 INFO  ==> ** Starting Cassandra setup **
cassandra 22:58:48.36 INFO  ==> Validating settings in CASSANDRA_* env vars..
cassandra 22:58:48.46 INFO  ==> Initializing Cassandra database...
cassandra 22:58:48.50 DEBUG ==> No injected metrics-reporter-config-sample.yaml file found. Creating default metrics-reporter-config-sample.yaml file
cassandra 22:58:48.53 DEBUG ==> No injected triggers/README.txt file found. Creating default triggers/README.txt file
cassandra 22:58:48.56 DEBUG ==> No injected cqlshrc.sample file found. Creating default cqlshrc.sample file
cassandra 22:58:48.59 DEBUG ==> No injected commitlog_archiving.properties file found. Creating default commitlog_archiving.properties file
cassandra 22:58:48.62 DEBUG ==> No injected README.txt file found. Creating default README.txt file
cassandra 22:58:48.65 DEBUG ==> No injected jvm.options file found. Creating default jvm.options file
cassandra 22:58:48.68 DEBUG ==> No injected hotspot_compiler file found. Creating default hotspot_compiler file
cassandra 22:58:48.71 DEBUG ==> No injected logback.xml file found. Creating default logback.xml file
cassandra 22:58:48.75 DEBUG ==> No injected cassandra-topology.properties file found. Creating default cassandra-topology.properties file
cassandra 22:58:48.78 DEBUG ==> No injected cassandra-jaas.config file found. Creating default cassandra-jaas.config file
cassandra 22:58:48.81 DEBUG ==> No injected cassandra-env.sh file found. Creating default cassandra-env.sh file
cassandra 22:58:48.84 DEBUG ==> No injected cassandra-rackdc.properties file found. Creating default cassandra-rackdc.properties file
cassandra 22:58:48.88 DEBUG ==> No injected cassandra.yaml file found. Creating default cassandra.yaml file
cassandra 22:58:48.91 DEBUG ==> No injected logback-tools.xml file found. Creating default logback-tools.xml file
cassandra 22:58:48.94 DEBUG ==> No injected cassandra-env.ps1 file found. Creating default cassandra-env.ps1 file
cassandra 22:58:49.25 DEBUG ==> Ensuring expected directories/files exist...
cassandra 22:58:49.29 INFO  ==> Deploying Cassandra from scratch
cassandra 22:58:49.30 INFO  ==> Starting Cassandra
cassandra 22:58:49.32 INFO  ==> Checking that it started up correctly
cassandra 22:58:49.33 DEBUG ==> Checking that log /opt/bitnami/cassandra/logs/cassandra_first_boot.log contains entry "Starting listening for CQL clients"
INFO  [main] 2021-08-18 22:59:08,774 Server.java:159 - Starting listening for CQL clients on /0.0.0.0:9042 (unencrypted)...
cassandra 22:59:09.41 INFO  ==> Found CQL startup log line
cassandra 22:59:09.42 DEBUG ==> Checking status with nodetool
UN  10.242.249.71  70.7 KiB   256          100.0%            3fc6a2d6-7c21-48dd-9b3a-88106d580e1e  rack1
cassandra 22:59:11.11 INFO  ==> Nodetool reported the successful startup of Cassandra
cassandra 22:59:11.12 INFO  ==> Password seeder node
cassandra 22:59:11.13 INFO  ==> Trying to access CQL server @ dev-portal-cassandra-7d59685579-4qkj9
cassandra 22:59:11.17 DEBUG ==> Executing CQL "DESCRIBE KEYSPACES"

system_traces  system_schema  system_auth  system  system_distributed

cassandra 22:59:12.20 INFO  ==> Accessed CQL server successfully
cassandra 22:59:12.21 INFO  ==> Creating super-user root
cassandra 22:59:12.25 DEBUG ==> Executing CQL "CREATE USER 'root' WITH PASSWORD $$Aa123456$$ SUPERUSER;"
cassandra 22:59:13.37 INFO  ==> Loading user's custom files from /docker-entrypoint-initdb.d ...
cassandra 22:59:13.40 DEBUG ==> Executing /docker-entrypoint-initdb.d/aaa_portal.cql
cassandra 22:59:13.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:59:14.94 INFO  ==> ** Cassandra setup finished! **

cassandra 22:59:14.98 INFO  ==> ** Starting Cassandra **
cassandra 22:59:15.00 INFO  ==> Cassandra already running with PID 201 because of the intial cluster setup
cassandra 22:59:15.00 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-08-18 22:58:56,493 YamlConfigurationLoader.java:92 - Configuration location: file:/opt/bitnami/cassandra/conf/cassandra.yaml
INFO  [main] 2021-08-18 22:58:56,718 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-7d59685579-4qkj9; 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-7d59685579-4qkj9; 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-7d59685579-4qkj9}; 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-08-18 22:58:56,718 DatabaseDescriptor.java:381 - DiskAccessMode 'auto' determined to be mmap, indexAccessMode is mmap
INFO  [main] 2021-08-18 22:58:56,718 DatabaseDescriptor.java:439 - Global memtable on-heap threshold is enabled at 982MB
INFO  [main] 2021-08-18 22:58:56,718 DatabaseDescriptor.java:443 - Global memtable off-heap threshold is enabled at 982MB
INFO  [main] 2021-08-18 22:58:56,907 RateBasedBackPressure.java:123 - Initialized back-pressure with high ratio: 0.9, factor: 5, flow: FAST, window size: 2000.
INFO  [main] 2021-08-18 22:58:56,907 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-08-18 22:58:57,015 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-08-18 22:58:57,024 CassandraDaemon.java:490 - Hostname: dev-portal-cassandra-7d59685579-4qkj9
INFO  [main] 2021-08-18 22:58:57,024 CassandraDaemon.java:497 - JVM vendor/version: OpenJDK 64-Bit Server VM/1.8.0_275
INFO  [main] 2021-08-18 22:58:57,025 CassandraDaemon.java:498 - Heap size: 3.838GiB/3.838GiB
INFO  [main] 2021-08-18 22:58:57,026 CassandraDaemon.java:503 - Code Cache Non-heap memory: init = 2555904(2496K) used = 4654016(4544K) committed = 4718592(4608K) max = 251658240(245760K)
INFO  [main] 2021-08-18 22:58:57,027 CassandraDaemon.java:503 - Metaspace Non-heap memory: init = 0(0K) used = 18738336(18299K) committed = 19529728(19072K) max = -1(-1K)
INFO  [main] 2021-08-18 22:58:57,027 CassandraDaemon.java:503 - Compressed Class Space Non-heap memory: init = 0(0K) used = 2262432(2209K) committed = 2490368(2432K) max = 1073741824(1048576K)
INFO  [main] 2021-08-18 22:58:57,027 CassandraDaemon.java:503 - Par Eden Space Heap memory: init = 671088640(655360K) used = 147640176(144179K) committed = 671088640(655360K) max = 671088640(655360K)
INFO  [main] 2021-08-18 22:58:57,028 CassandraDaemon.java:503 - Par Survivor Space Heap memory: init = 83886080(81920K) used = 0(0K) committed = 83886080(81920K) max = 83886080(81920K)
INFO  [main] 2021-08-18 22:58:57,028 CassandraDaemon.java:503 - CMS Old Gen Heap memory: init = 3365928960(3287040K) used = 0(0K) committed = 3365928960(3287040K) max = 3365928960(3287040K)
INFO  [main] 2021-08-18 22:58:57,028 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-08-18 22:58:57,029 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-08-18 22:58:57,119 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-08-18 22:58:57,120 StartupChecks.java:136 - jemalloc shared library could not be preloaded to speed up memory allocations
WARN  [main] 2021-08-18 22:58:57,120 StartupChecks.java:169 - JMX is not enabled to receive remote connections. Please see cassandra-env.sh for more info.
INFO  [main] 2021-08-18 22:58:57,122 SigarLibrary.java:44 - Initializing SIGAR library
INFO  [main] 2021-08-18 22:58:57,139 SigarLibrary.java:180 - Checked OS settings and found them configured for optimal performance.
WARN  [main] 2021-08-18 22:58:57,141 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-08-18 22:58:57,159 StartupChecks.java:332 - Directory /bitnami/cassandra/data/data doesn't exist
WARN  [main] 2021-08-18 22:58:57,166 StartupChecks.java:332 - Directory /bitnami/cassandra/data/commitlog doesn't exist
WARN  [main] 2021-08-18 22:58:57,166 StartupChecks.java:332 - Directory /bitnami/cassandra/data/saved_caches doesn't exist
WARN  [main] 2021-08-18 22:58:57,167 StartupChecks.java:332 - Directory /bitnami/cassandra/data/hints doesn't exist
INFO  [main] 2021-08-18 22:58:57,220 QueryProcessor.java:116 - Initialized prepared statement caches with 15 MB (native) and 15 MB (Thrift)
INFO  [main] 2021-08-18 22:58:57,676 ColumnFamilyStore.java:427 - Initializing system.IndexInfo
INFO  [main] 2021-08-18 22:58:58,348 ColumnFamilyStore.java:427 - Initializing system.batches
INFO  [main] 2021-08-18 22:58:58,356 ColumnFamilyStore.java:427 - Initializing system.paxos
INFO  [main] 2021-08-18 22:58:58,367 ColumnFamilyStore.java:427 - Initializing system.local
INFO  [main] 2021-08-18 22:58:58,374 ColumnFamilyStore.java:427 - Initializing system.peers
INFO  [main] 2021-08-18 22:58:58,380 ColumnFamilyStore.java:427 - Initializing system.peer_events
INFO  [main] 2021-08-18 22:58:58,387 ColumnFamilyStore.java:427 - Initializing system.range_xfers
INFO  [main] 2021-08-18 22:58:58,393 ColumnFamilyStore.java:427 - Initializing system.compaction_history
INFO  [main] 2021-08-18 22:58:58,399 ColumnFamilyStore.java:427 - Initializing system.sstable_activity
INFO  [main] 2021-08-18 22:58:58,407 ColumnFamilyStore.java:427 - Initializing system.size_estimates
INFO  [main] 2021-08-18 22:58:58,413 ColumnFamilyStore.java:427 - Initializing system.available_ranges
INFO  [main] 2021-08-18 22:58:58,420 ColumnFamilyStore.java:427 - Initializing system.transferred_ranges
INFO  [main] 2021-08-18 22:58:58,426 ColumnFamilyStore.java:427 - Initializing system.views_builds_in_progress
INFO  [main] 2021-08-18 22:58:58,432 ColumnFamilyStore.java:427 - Initializing system.built_views
INFO  [main] 2021-08-18 22:58:58,438 ColumnFamilyStore.java:427 - Initializing system.hints
INFO  [main] 2021-08-18 22:58:58,444 ColumnFamilyStore.java:427 - Initializing system.batchlog
INFO  [main] 2021-08-18 22:58:58,450 ColumnFamilyStore.java:427 - Initializing system.prepared_statements
INFO  [main] 2021-08-18 22:58:58,455 ColumnFamilyStore.java:427 - Initializing system.schema_keyspaces
INFO  [main] 2021-08-18 22:58:58,461 ColumnFamilyStore.java:427 - Initializing system.schema_columnfamilies
INFO  [main] 2021-08-18 22:58:58,466 ColumnFamilyStore.java:427 - Initializing system.schema_columns
INFO  [main] 2021-08-18 22:58:58,472 ColumnFamilyStore.java:427 - Initializing system.schema_triggers
INFO  [main] 2021-08-18 22:58:58,479 ColumnFamilyStore.java:427 - Initializing system.schema_usertypes
INFO  [main] 2021-08-18 22:58:58,484 ColumnFamilyStore.java:427 - Initializing system.schema_functions
INFO  [main] 2021-08-18 22:58:58,491 ColumnFamilyStore.java:427 - Initializing system.schema_aggregates
INFO  [main] 2021-08-18 22:58:58,493 ViewManager.java:137 - Not submitting build tasks for views in keyspace system as storage service is not initialized
INFO  [main] 2021-08-18 22:58:58,586 ApproximateTime.java:44 - Scheduling approximate time-check task with a precision of 10 milliseconds
INFO  [main] 2021-08-18 22:58:58,618 ColumnFamilyStore.java:427 - Initializing system_schema.keyspaces
INFO  [main] 2021-08-18 22:58:58,624 ColumnFamilyStore.java:427 - Initializing system_schema.tables
INFO  [main] 2021-08-18 22:58:58,630 ColumnFamilyStore.java:427 - Initializing system_schema.columns
INFO  [main] 2021-08-18 22:58:58,636 ColumnFamilyStore.java:427 - Initializing system_schema.triggers
INFO  [main] 2021-08-18 22:58:58,642 ColumnFamilyStore.java:427 - Initializing system_schema.dropped_columns
INFO  [main] 2021-08-18 22:58:58,648 ColumnFamilyStore.java:427 - Initializing system_schema.views
INFO  [main] 2021-08-18 22:58:58,653 ColumnFamilyStore.java:427 - Initializing system_schema.types
INFO  [main] 2021-08-18 22:58:58,659 ColumnFamilyStore.java:427 - Initializing system_schema.functions
INFO  [main] 2021-08-18 22:58:58,665 ColumnFamilyStore.java:427 - Initializing system_schema.aggregates
INFO  [main] 2021-08-18 22:58:58,670 ColumnFamilyStore.java:427 - Initializing system_schema.indexes
INFO  [main] 2021-08-18 22:58:58,672 ViewManager.java:137 - Not submitting build tasks for views in keyspace system_schema as storage service is not initialized
INFO  [MemtableFlushWriter:1] 2021-08-18 22:58:59,151 CacheService.java:100 - Initializing key cache with capacity of 100 MBs.
INFO  [MemtableFlushWriter:1] 2021-08-18 22:58:59,159 CacheService.java:122 - Initializing row cache with capacity of 0 MBs
INFO  [MemtableFlushWriter:1] 2021-08-18 22:58:59,160 CacheService.java:151 - Initializing counter cache with capacity of 50 MBs
INFO  [MemtableFlushWriter:1] 2021-08-18 22:58:59,162 CacheService.java:162 - Scheduling counter cache save to every 7200 seconds (going to save all keys).
INFO  [CompactionExecutor:2] 2021-08-18 22:58:59,474 BufferPool.java:234 - Global buffer pool is enabled, when pool is exhausted (max is 512.000MiB) it will allocate on heap
INFO  [main] 2021-08-18 22:58:59,542 StorageService.java:653 - Populating token metadata from system tables
INFO  [main] 2021-08-18 22:58:59,584 StorageService.java:660 - Token metadata: 
INFO  [pool-3-thread-1] 2021-08-18 22:58:59,606 AutoSavingCache.java:174 - Completed loading (1 ms; 5 keys) KeyCache cache
INFO  [main] 2021-08-18 22:58:59,628 CommitLog.java:142 - No commitlog files found; skipping replay
INFO  [main] 2021-08-18 22:58:59,628 StorageService.java:653 - Populating token metadata from system tables
INFO  [main] 2021-08-18 22:58:59,645 StorageService.java:660 - Token metadata: 
INFO  [main] 2021-08-18 22:58:59,730 QueryProcessor.java:163 - Preloaded 0 prepared statements
INFO  [main] 2021-08-18 22:58:59,731 StorageService.java:671 - Cassandra version: 3.11.9
INFO  [main] 2021-08-18 22:58:59,731 StorageService.java:672 - Thrift API version: 20.1.0
INFO  [main] 2021-08-18 22:58:59,731 StorageService.java:673 - CQL supported versions: 3.4.4 (default: 3.4.4)
INFO  [main] 2021-08-18 22:58:59,731 StorageService.java:675 - Native protocol supported versions: 3/v3, 4/v4, 5/v5-beta (default: 4/v4)
INFO  [main] 2021-08-18 22:58:59,765 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-08-18 22:58:59,773 MessagingService.java:750 - Starting Messaging Service on dev-portal-cassandra-7d59685579-4qkj9/10.242.249.71:7000 (eth0)
WARN  [main] 2021-08-18 22:58:59,779 SystemKeyspace.java:1130 - No host ID found, created 3fc6a2d6-7c21-48dd-9b3a-88106d580e1e (Note: This should happen exactly once per node).
INFO  [main] 2021-08-18 22:58:59,791 StorageService.java:603 - Unable to gossip with any peers but continuing anyway since node is in its own seed list
INFO  [main] 2021-08-18 22:58:59,805 StorageService.java:757 - Loading persisted ring state
INFO  [main] 2021-08-18 22:58:59,806 StorageService.java:885 - Starting up server gossip
INFO  [main] 2021-08-18 22:58:59,876 StorageService.java:947 - This node will not auto bootstrap because it is configured to be a seed node.
INFO  [main] 2021-08-18 22:58:59,884 BootStrapper.java:228 - Generated random tokens. tokens are [-5976753906676968348, -6867149915720712410, 7525236290134742206, 4939057097221814667, 7912740899452001199, 6499749599701677778, -2955133108729250082, -1479018464951670857, -4916750312741929006, -101631761587957683, -493151688808093660, 4678958910030655918, 1166582000271249292, -9181084340972288611, -5378782025393533097, -6934625471405097084, 8253059885062963105, -4255714930486870014, -7402875119219010699, -8458386274444577161, -7505842219830883474, -1355272619513579592, -2337938962998569811, 1055836549894933096, -1128145385948497830, 460482748353872400, 8953922670080082738, -741057414282143691, 2036037961769798589, -5986968348696772929, 2729526474288401536, -4344656975027683080, -1922652308290049741, 3690515424648520459, -2502893996162088346, -2518447205618284193, -9045067131966650122, -3601525491760483843, -2468011124892584430, -5481372102233967071, 3605268220713445308, -134611859276750316, -6352996209440568070, 3396131712415110221, 5734323849448086921, -1474588576312340137, -3826236595689131524, 7665320532422565074, 8227019903445888908, 7843715703441571227, -3631430814396707223, -5491909398231019745, -376342503549289280, 3892379373407375107, 7185191749109456567, -113390542259071961, 4617345968662299366, 4978674262198430222, -41694580530010223, -3575870286422679516, 7327673335294651789, -7360057009892716488, 1592844449687753700, 6461499663974076901, -6563146950215594174, 6101654276300579635, -502915305266700337, -4165928369771397986, 5214517844364971714, -596830595308513016, 6899676524871938168, -1694748485797252163, 785032383539959471, 2601033509479410646, 3478027757885464756, 6038517026118902684, 5274604915090581527, 1490790200279743914, -6426666302751993565, 3379513490416838155, 2046953348831421714, -2262309941642927710, -3489333873061268710, -2800922601193630633, -3535214043540830712, -4349483812086997336, 3459771056244464231, 6540871770840648735, 7983568402411371158, 9218084300833554757, -8632393827096647769, 8780660060584904243, 5871644625640201975, 393135655018932979, -499841639773244834, 2691718032520670011, -3355896467129409130, 4521708461122874610, -1819289888967512618, -2792711509679101648, 4204139400936694554, 4782827495239167301, 736637818211487297, 8688255048810062842, -1671542951499679843, -69278039901411629, 8647773903269822493, -1330219763438766471, -8820426932718316246, 5131852206909093663, -2921506452096140998, 8391544302764604034, 3884391346782514114, -951669946080653982, -7064771339919035851, 8781742622089094097, -6418788997785020484, 2367303393622274494, -8278227401176166137, -7967279480516531308, -8297507054314493654, 3056165498127414906, 1972750143486145869, 6529664298996902706, -2778201413204789131, 2279520065719569317, 4492174890946421283, 3224481340472576177, -1173866775534075270, -7395859760557767243, -1658648132942272199, -544765702284853659, -2528465736480578463, 9207987956472439555, 8478235216855422563, -992749583850327795, -9005957824488890306, -117964257831179609, -1173273702784298403, 4614361383373756757, 1850823506115687761, -6930395582087536732, 6147730714968927872, 5467997380772257244, 2255920252180039465, 5112193275948820321, -7622191339167348086, -6965664410862381942, 8799012865677658736, -4401991265139317404, 7251371292845088800, 6939224513771805847, -3973334895518512160, -7035578550704501227, 247036619997940052, 6676700810369905721, 2847166421469204079, -934793881378065428, -4512863110355810379, -2005779298043563662, 5644076200604245043, 1351846871545562407, 6594958864757104835, 3781953278471020334, 7239886124261345217, 6887377951012297961, 8775333412835086878, -298259259548181006, -8896982111439208299, -6340109446331131646, -6684388968011975974, -1160969855748834935, -7880675831112884120, 1458001321049215023, -2370253671735257073, 3513258224856794326, -7382204631364944168, 9165003885195045381, 6958663213391450984, -8785863690831769599, -110920558133755020, -3376652976801442389, -2184312071388285141, 4444018025807650751, -2479800487902566193, -4856530032043845813, -3682191101699608776, -6490612538565220159, -1483109804494497956, 1514644247975724483, 4988237949306563276, 8259373914392243132, 5931636562929336769, 3703809241296637253, 6583555968092962947, -7786591636798519855, 9164714273445887260, -6048416480450668604, -3116785443251131162, -7383007691437678493, -6239549456599199537, 3783387494207608351, -4062384366477724661, -8524048938582237363, -4727021663169642468, 6468270729311319102, -4383546031548457368, 6212805571956507987, 1549541075514570669, 325602924584001195, -7442807518456949210, -3145641792262641910, 3939165407257381380, 7292076434771283443, 3122220042100810863, -5082279568919964105, 6657095627591065762, -5234111215900941261, -8476066145433011826, 8687510161867081190, -8589894221772428072, -2577008371548489814, 3824190400725000943, -7492939573624580047, -6038904211328434117, 1702320331744437889, -5425944730266745608, -7160949186105415072, -2135186236824451010, -8850977659562240885, 4047229066441644385, -1659914362986313419, 8673110983496377658, -2921277296124548760, -675642086237755339, -2835191395318213419, -4800083330447157894, 8190783284623998016, -8575019364612628399, 2282561192188393793, 5848737972814029612, -3884524878787807124, -114878255144154385, -7948148462131673128, -5461641374046630756, 1799798128888442887, 2803066166012307920, 380785799914844030, 7457316171799724772, 2403745158485362631, 8203188874971987163, 4619266883730177622, 3676055880865154769, -2360795617689658775, -137920873379535550, -2389420981418005288]
INFO  [MigrationStage:1] 2021-08-18 22:59:00,279 ViewManager.java:137 - Not submitting build tasks for views in keyspace system_traces as storage service is not initialized
INFO  [MigrationStage:1] 2021-08-18 22:59:00,283 ColumnFamilyStore.java:427 - Initializing system_traces.events
INFO  [MigrationStage:1] 2021-08-18 22:59:00,292 ColumnFamilyStore.java:427 - Initializing system_traces.sessions
INFO  [MigrationStage:1] 2021-08-18 22:59:00,297 ViewManager.java:137 - Not submitting build tasks for views in keyspace system_distributed as storage service is not initialized
INFO  [MigrationStage:1] 2021-08-18 22:59:00,303 ColumnFamilyStore.java:427 - Initializing system_distributed.parent_repair_history
INFO  [MigrationStage:1] 2021-08-18 22:59:00,310 ColumnFamilyStore.java:427 - Initializing system_distributed.repair_history
INFO  [MigrationStage:1] 2021-08-18 22:59:00,319 ColumnFamilyStore.java:427 - Initializing system_distributed.view_build_status
INFO  [MigrationStage:1] 2021-08-18 22:59:00,322 ViewManager.java:137 - Not submitting build tasks for views in keyspace system_auth as storage service is not initialized
INFO  [MigrationStage:1] 2021-08-18 22:59:00,327 ColumnFamilyStore.java:427 - Initializing system_auth.resource_role_permissons_index
INFO  [MigrationStage:1] 2021-08-18 22:59:00,333 ColumnFamilyStore.java:427 - Initializing system_auth.role_members
INFO  [MigrationStage:1] 2021-08-18 22:59:00,339 ColumnFamilyStore.java:427 - Initializing system_auth.role_permissions
INFO  [MigrationStage:1] 2021-08-18 22:59:00,344 ColumnFamilyStore.java:427 - Initializing system_auth.roles
INFO  [main] 2021-08-18 22:59:00,367 StorageService.java:1492 - JOINING: Finish joining ring
INFO  [main] 2021-08-18 22:59:00,466 AuthCache.java:177 - (Re)initializing CredentialsCache (validity period/update interval/max entries) (2000/2000/1000)
INFO  [main] 2021-08-18 22:59:00,468 Gossiper.java:1796 - Waiting for gossip to settle...
INFO  [main] 2021-08-18 22:59:08,470 Gossiper.java:1827 - No gossip backlog; proceeding
INFO  [main] 2021-08-18 22:59:08,705 NativeTransportService.java:68 - Netty using native Epoll event loop
INFO  [main] 2021-08-18 22:59:08,773 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-08-18 22:59:08,774 Server.java:159 - Starting listening for CQL clients on /0.0.0.0:9042 (unencrypted)...
INFO  [main] 2021-08-18 22:59:08,844 ThriftServer.java:116 - Binding thrift service to /0.0.0.0:9160
INFO  [main] 2021-08-18 22:59:08,851 CassandraDaemon.java:650 - Startup complete
INFO  [Thread-2] 2021-08-18 22:59:08,851 ThriftServer.java:133 - Listening for thrift clients...
INFO  [OptionalTasks:1] 2021-08-18 22:59:10,690 CassandraRoleManager.java:372 - Created default superuser role 'cassandra'
INFO  [Native-Transport-Requests-1] 2021-08-18 22:59:11,703 AuthCache.java:177 - (Re)initializing PermissionsCache (validity period/update interval/max entries) (2000/2000/1000)
INFO  [Native-Transport-Requests-1] 2021-08-18 22:59:13,050 AuthCache.java:177 - (Re)initializing RolesCache (validity period/update interval/max entries) (2000/2000/1000)
INFO  [Native-Transport-Requests-1] 2021-08-18 22:59:14,151 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-08-18 22:59:14,259 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-08-18 22:59:14,261 MigrationManager.java:368 - Create new table: org.apache.cassandra.config.CFMetaData@11dadaaf[cfId=e872f940-0077-11ec-b970-a592268d9693,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@640d74c4, 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-08-18 22:59:14,387 ColumnFamilyStore.java:427 - Initializing portal.spring_session
INFO  [Native-Transport-Requests-1] 2021-08-18 22:59:14,433 MigrationManager.java:368 - Create new table: org.apache.cassandra.config.CFMetaData@10c9c9b3[cfId=e88d3800-0077-11ec-b970-a592268d9693,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@640d74c4, 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-08-18 22:59:14,545 ColumnFamilyStore.java:427 - Initializing portal.spring_session_attributes
INFO  [Native-Transport-Requests-5] 2021-08-18 22:59:14,589 MigrationManager.java:368 - Create new table: org.apache.cassandra.config.CFMetaData@252f184b[cfId=e8a52cd0-0077-11ec-b970-a592268d9693,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@640d74c4, 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-08-18 22:59:14,678 ColumnFamilyStore.java:427 - Initializing portal.health_check
INFO  [Service Thread] 2021-08-18 23:15:52,045 GCInspector.java:285 - ParNew GC in 339ms.  CMS Old Gen: 0 -> 14114640; Par Eden Space: 671088640 -> 0; Par Survivor Space: 32593680 -> 33290800
INFO  [Service Thread] 2021-08-18 23:56:51,948 GCInspector.java:285 - ParNew GC in 227ms.  CMS Old Gen: 14114640 -> 28054016; Par Eden Space: 671088640 -> 0; Par Survivor Space: 33290800 -> 14079736
INFO  [IndexSummaryManager:1] 2021-08-18 23:58:59,772 IndexSummaryRedistribution.java:78 - Redistributing index summaries