Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When adding new node to an existing cluster, the new node gets deployed by K8s but stays at 1/2 forever #1610

Open
chandapukiran opened this issue Jun 8, 2023 · 17 comments
Labels
bug Something isn't working help-wanted Extra attention is needed

Comments

@chandapukiran
Copy link

What happened?

I have followed the document to scale the k8ssandra cluster up from 3 node to 4 node cluster, the new pods gets scheduled in k8s but the status stays at 1/2

NAME READY STATUS RESTARTS AGE
pod/kiran1-cassandra-int-cass-operator-6d987f86c8-6wsht 1/1 Running 0 55m
pod/kiran1-cassandra-int-dc1-default-sts-0 2/2 Running 0 17m
pod/kiran1-cassandra-int-dc1-default-sts-1 2/2 Running 0 18m
pod/kiran1-cassandra-int-dc1-default-sts-2 2/2 Running 0 19m
pod/kiran1-cassandra-int-dc1-default-sts-3 1/2 Running 0 7m50s

Describing pod returns

Warning Unhealthy 3m7s (x32 over 7m43s) kubelet Readiness probe failed: HTTP probe failed with statuscode: 500

I don't see any error in cass-operator

2023-06-08T06:49:50.769Z INFO controllers.CassandraDatacenter.cassandradatacenter_controller.controller.cassandradatacenter-controller Created PodDisruptionBudget dc1-pdb {"reconciler group": "cassandra.datastax.com", "reconciler kind": "CassandraDatacenter", "name": "dc1", "namespace": "kiran1-cassandra-int", "reason": "CreatedResource", "eventType": "Normal"} 2023-06-08T06:49:50.769Z INFO controllers.CassandraDatacenter.cassandradatacenter_controller.controller.cassandradatacenter-controller starting CheckRackPodTemplate() {"reconciler group": "cassandra.datastax.com", "reconciler kind": "CassandraDatacenter", "name": "dc1", "namespace": "kiran1-cassandra-int", "namespace": "kiran1-cassandra-int", "datacenterName": "dc1", "clusterName": "kiran1-cassandra-int"} 2023-06-08T06:49:50.769Z DEBUG events Normal {"object": {"kind":"CassandraDatacenter","namespace":"kiran1-cassandra-int","name":"dc1","uid":"fdc43783-1c3a-42c8-a2af-3e29b2375d0d","apiVersion":"cassandra.datastax.com/v1beta1","resourceVersion":"8006192120"}, "reason": "CreatedResource", "message": "Created PodDisruptionBudget dc1-pdb"} 2023-06-08T06:49:50.769Z INFO controllers.CassandraDatacenter.cassandradatacenter_controller.controller.cassandradatacenter-controller statefulset needs an update {"reconciler group": "cassandra.datastax.com", "reconciler kind": "CassandraDatacenter", "name": "dc1", "namespace": "kiran1-cassandra-int", "namespace": "kiran1-cassandra-int", "datacenterName": "dc1", "clusterName": "kiran1-cassandra-int", "rackName": "default"} 2023-06-08T06:49:50.769Z INFO controllers.CassandraDatacenter.cassandradatacenter_controller.controller.cassandradatacenter-controller Updating rack default {"reconciler group": "cassandra.datastax.com", "reconciler kind": "CassandraDatacenter", "name": "dc1", "namespace": "kiran1-cassandra-int", "reason": "UpdatingRack", "eventType": "Normal"} 2023-06-08T06:49:50.769Z DEBUG events Normal {"object": {"kind":"CassandraDatacenter","namespace":"kiran1-cassandra-int","name":"dc1","uid":"fdc43783-1c3a-42c8-a2af-3e29b2375d0d","apiVersion":"cassandra.datastax.com/v1beta1","resourceVersion":"8006192120"}, "reason": "UpdatingRack", "message": "Updating rack default"} 2023-06-08T06:49:50.790Z INFO controllers.CassandraDatacenter.cassandradatacenter_controller.controller.cassandradatacenter-controller Updating statefulset pod specs {"reconciler group": "cassandra.datastax.com", "reconciler kind": "CassandraDatacenter", "name": "dc1", "namespace": "kiran1-cassandra-int", "namespace": "kiran1-cassandra-int", "datacenterName": "dc1", "clusterName": "kiran1-cassandra-int", "statefulSet": {"namespace": "kiran1-cassandra-int", "name": "kiran1-cassandra-int-dc1-default-sts"}} 2023-06-08T06:49:50.840Z INFO controllers.CassandraDatacenter Reconcile loop completed {"cassandradatacenter": "kiran1-cassandra-int/dc1", "requestNamespace": "kiran1-cassandra-int", "requestName": "dc1", "loopID": "1bd1d375-64d2-4e09-bc51-29e1a1d933cc", "duration": 0.185828658}

STS stays at 3/4

NAME READY AGE
statefulset.apps/kiran1-cassandra-int-dc1-default-sts 3/4 24m

When i tried to run the Cassandra script from the new container /opt/cassandra/bin/cassandra, it throws below error

cassandra@kiran1-cassandra-int-dc1-default-sts-3:/$ INFO [Messaging-EventLoop-3-15] 2023-06-08 07:05:58,589 NoSpamLogger.java:92 - /100.124.109.40:7000->/100.124.109.22:7000-URGENT_MESSAGES-[no-channel] failed to connect io.netty.channel.ConnectTimeoutException: connection timed out: /100.124.109.22:7000 at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe$2.run(AbstractEpollChannel.java:576) at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98) at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:170) at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:164) at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:472) at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:384) at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) at java.base/java.lang.Thread.run(Thread.java:829) cassandra@kiran1-cassandra-int-dc1-default-sts-3:/$ INFO [main] 2023-06-08 07:06:01,414 Gossiper.java:2245 - No gossip backlog; proceeding INFO [main] 2023-06-08 07:06:01,418 AuthCache.java:215 - (Re)initializing CredentialsCache (validity period/update interval/max entries) (3600000/3600000/1000)

What did you expect to happen?

The new pod should be up and healthy

How can we reproduce it (as minimally and precisely as possible)?

Step 1. Create a 3 node cluster
Step 2. Update the size to 4 in cassdc
Step 3. Wait until a new pod gets created
Step 4. Notice that the new pod stays at 1/2

cass-operator version

Version: 0.35.0 Type: application AppVersion: 1.10.0

Kubernetes version

22

Method of installation

Helm

Anything else we need to know?

No response

@chandapukiran chandapukiran added the bug Something isn't working label Jun 8, 2023
@burmanm
Copy link
Contributor

burmanm commented Jun 8, 2023

What is the reason why the Pod isn't getting ready? What does kubectl describe pod/kiran1-cassandra-int-dc1-default-sts-3 show?

@burmanm
Copy link
Contributor

burmanm commented Jun 8, 2023

Also, the logs of pod can be seen with: kubectl logs pod/kiran1-cassandra-int-dc1-default-sts-3 -c cassandra. The cass-operator in question is also quite old (intended for Kubernetes 1.21 and older), is there a reason for it? Current Helm chart version is 0.41.1

@chandapukiran
Copy link
Author

kubectl logs pod/kiran1-cassandra-int-dc1-default-sts-3 -c cassandra

INFO [nioEventLoopGroup-2-1] 2023-06-08 07:31:23,434 Cli.java:617 - address=/172.31.174.206:33014 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-12] 2023-06-08 07:31:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-1] 2023-06-08 07:31:33,434 Cli.java:617 - address=/172.31.174.206:32956 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-2-2] 2023-06-08 07:31:33,434 Cli.java:617 - address=/172.31.174.206:32958 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-13] 2023-06-08 07:31:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:31:43,434 Cli.java:617 - address=/172.31.174.206:33798 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-2-1] 2023-06-08 07:31:48,434 Cli.java:617 - address=/172.31.174.206:48754 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-3-15] 2023-06-08 07:31:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:31:53,435 Cli.java:617 - address=/172.31.174.206:48762 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-2] 2023-06-08 07:32:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:03,434 Cli.java:617 - address=/172.31.174.206:40110 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-2-2] 2023-06-08 07:32:03,435 Cli.java:617 - address=/172.31.174.206:40108 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-1] 2023-06-08 07:32:13,168 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:13,169 Cli.java:617 - address=/172.31.174.206:35738 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-3] 2023-06-08 07:32:13,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:32:13,435 Cli.java:617 - address=/172.31.174.206:35754 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:18,434 Cli.java:617 - address=/172.31.174.206:44438 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-3-5] 2023-06-08 07:32:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:32:23,435 Cli.java:617 - address=/172.31.174.206:44444 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-7] 2023-06-08 07:32:33,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:33,435 Cli.java:617 - address=/172.31.174.206:49856 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-2-2] 2023-06-08 07:32:33,435 Cli.java:617 - address=/172.31.174.206:49864 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-8] 2023-06-08 07:32:43,433 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:43,434 Cli.java:617 - address=/172.31.174.206:53614 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-2-2] 2023-06-08 07:32:48,435 Cli.java:617 - address=/172.31.174.206:48328 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-3-10] 2023-06-08 07:32:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:53,435 Cli.java:617 - address=/172.31.174.206:48340 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-11] 2023-06-08 07:33:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:03,435 Cli.java:617 - address=/172.31.174.206:38970 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-2-1] 2023-06-08 07:33:03,435 Cli.java:617 - address=/172.31.174.206:38968 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-13] 2023-06-08 07:33:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:13,435 Cli.java:617 - address=/172.31.174.206:34816 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-14] 2023-06-08 07:33:14,170 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-1] 2023-06-08 07:33:14,171 Cli.java:617 - address=/172.31.174.206:34824 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:18,434 Cli.java:617 - address=/172.31.174.206:36900 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-3-16] 2023-06-08 07:33:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-1] 2023-06-08 07:33:23,434 Cli.java:617 - address=/172.31.174.206:36902 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-1] 2023-06-08 07:33:33,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:33,435 Cli.java:617 - address=/172.31.174.206:58690 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-2-1] 2023-06-08 07:33:33,435 Cli.java:617 - address=/172.31.174.206:58686 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-3] 2023-06-08 07:33:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:43,435 Cli.java:617 - address=/172.31.174.206:51128 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-2-1] 2023-06-08 07:33:48,434 Cli.java:617 - address=/172.31.174.206:36420 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-3-5] 2023-06-08 07:33:53,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:53,435 Cli.java:617 - address=/172.31.174.206:36436 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-6] 2023-06-08 07:34:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:34:03,434 Cli.java:617 - address=/172.31.174.206:48470 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-2-1] 2023-06-08 07:34:03,435 Cli.java:617 - address=/172.31.174.206:48466 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-8] 2023-06-08 07:34:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-1] 2023-06-08 07:34:13,434 Cli.java:617 - address=/172.31.174.206:45916 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-2-2] 2023-06-08 07:34:18,435 Cli.java:617 - address=/172.31.174.206:37754 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-3-10] 2023-06-08 07:34:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-1] 2023-06-08 07:34:23,435 Cli.java:617 - address=/172.31.174.206:37756 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-11] 2023-06-08 07:34:27,169 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:34:27,169 Cli.java:617 - address=/172.31.174.206:56038 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-12] 2023-06-08 07:34:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-2] 2023-06-08 07:34:33,434 Cli.java:617 - address=/172.31.174.206:56054 url=/api/v0/probes/liveness status=200 OK INFO [nioEventLoopGroup-2-1] 2023-06-08 07:34:33,435 Cli.java:617 - address=/172.31.174.206:56052 url=/api/v0/probes/readiness status=500 Internal Server Error INFO [nioEventLoopGroup-3-14] 2023-06-08 07:34:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock INFO [nioEventLoopGroup-2-1] 2023-06-08 07:34:43,434 Cli.java:617 - address=/172.31.174.206:58852 url=/api/v0/probes/readiness status=500 Internal Server Error

@chandapukiran
Copy link
Author

What is the reason why the Pod isn't getting ready? What does kubectl describe pod/kiran1-cassandra-int-dc1-default-sts-3 show?

Normal Created 42m kubelet Created container server-system-logger Normal Started 42m kubelet Started container server-system-logger Warning Unhealthy 2m36s (x270 over 42m) kubelet Readiness probe failed: HTTP probe failed with statuscode: 500

@chandapukiran
Copy link
Author

Yes, the operator is very old and we will be upgrading it in some time and a small correction - we are running k8s 1.24

@burmanm
Copy link
Contributor

burmanm commented Jun 8, 2023

kubectl logs pod/kiran1-cassandra-int-dc1-default-sts-3 -c cassandra

Sorry, I made a typo here.. -c server-system-logger was the intended command.

@burmanm
Copy link
Contributor

burmanm commented Jun 8, 2023

What is the reason why the Pod isn't getting ready? What does kubectl describe pod/kiran1-cassandra-int-dc1-default-sts-3 show?

@burmanm burmanm closed this as completed Jun 8, 2023
@adejanovski adejanovski added the done Issues in the state 'done' label Jun 8, 2023
@burmanm burmanm reopened this Jun 8, 2023
@adejanovski adejanovski removed the done Issues in the state 'done' label Jun 8, 2023
@chandapukiran
Copy link
Author

server-system-logger

`INFO [nioEventLoopGroup-2-1] 2023-06-08 07:11:53,434 Cli.java:617 - address=/172.31.174.206:52158 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-10] 2023-06-08 07:12:03,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:12:03,435 Cli.java:617 - address=/172.31.174.206:50784 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:12:03,435 Cli.java:617 - address=/172.31.174.206:50790 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-11] 2023-06-08 07:12:13,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:12:13,436 Cli.java:617 - address=/172.31.174.206:41604 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:12:18,434 Cli.java:617 - address=/172.31.174.206:32934 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-13] 2023-06-08 07:12:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:12:23,435 Cli.java:617 - address=/172.31.174.206:32940 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:12:33,435 Cli.java:617 - address=/172.31.174.206:44968 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-15] 2023-06-08 07:12:33,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:12:33,435 Cli.java:617 - address=/172.31.174.206:44952 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-16] 2023-06-08 07:12:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:12:43,435 Cli.java:617 - address=/172.31.174.206:55182 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:12:48,434 Cli.java:617 - address=/172.31.174.206:53200 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-1] 2023-06-08 07:12:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:12:53,434 Cli.java:617 - address=/172.31.174.206:53208 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-3] 2023-06-08 07:13:03,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:13:03,435 Cli.java:617 - address=/172.31.174.206:60390 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:13:03,435 Cli.java:617 - address=/172.31.174.206:60378 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-5] 2023-06-08 07:13:12,170 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:13:12,170 Cli.java:617 - address=/172.31.174.206:36914 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-6] 2023-06-08 07:13:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:13:13,449 Cli.java:617 - address=/172.31.174.206:36926 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:13:18,435 Cli.java:617 - address=/172.31.174.206:49478 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-8] 2023-06-08 07:13:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:13:23,435 Cli.java:617 - address=/172.31.174.206:49492 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-9] 2023-06-08 07:13:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:13:33,435 Cli.java:617 - address=/172.31.174.206:60340 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:13:33,435 Cli.java:617 - address=/172.31.174.206:60346 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-11] 2023-06-08 07:13:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:13:43,435 Cli.java:617 - address=/172.31.174.206:40750 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:13:48,434 Cli.java:617 - address=/172.31.174.206:35922 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-13] 2023-06-08 07:13:53,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:13:53,436 Cli.java:617 - address=/172.31.174.206:35936 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:14:03,435 Cli.java:617 - address=/172.31.174.206:38476 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-15] 2023-06-08 07:14:03,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:14:03,435 Cli.java:617 - address=/172.31.174.206:38460 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-16] 2023-06-08 07:14:13,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:14:13,435 Cli.java:617 - address=/172.31.174.206:36630 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:14:18,436 Cli.java:617 - address=/172.31.174.206:46456 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-1] 2023-06-08 07:14:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:14:23,435 Cli.java:617 - address=/172.31.174.206:46466 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-4] 2023-06-08 07:14:33,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:14:33,435 Cli.java:617 - address=/172.31.174.206:35606 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:14:33,435 Cli.java:617 - address=/172.31.174.206:35604 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-5] 2023-06-08 07:14:40,169 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:14:40,169 Cli.java:617 - address=/172.31.174.206:53692 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-6] 2023-06-08 07:14:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:14:43,435 Cli.java:617 - address=/172.31.174.206:53704 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:14:48,435 Cli.java:617 - address=/172.31.174.206:49150 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-8] 2023-06-08 07:14:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:14:53,435 Cli.java:617 - address=/172.31.174.206:49152 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-9] 2023-06-08 07:15:03,437 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:15:03,438 Cli.java:617 - address=/172.31.174.206:50782 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:15:03,438 Cli.java:617 - address=/172.31.174.206:50788 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-11] 2023-06-08 07:15:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:15:13,435 Cli.java:617 - address=/172.31.174.206:55794 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:15:18,435 Cli.java:617 - address=/172.31.174.206:53104 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-13] 2023-06-08 07:15:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:15:23,435 Cli.java:617 - address=/172.31.174.206:53120 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-14] 2023-06-08 07:15:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:15:33,434 Cli.java:617 - address=/172.31.174.206:48760 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:15:33,435 Cli.java:617 - address=/172.31.174.206:48770 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-16] 2023-06-08 07:15:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:15:43,435 Cli.java:617 - address=/172.31.174.206:34992 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-2] 2023-06-08 07:15:48,169 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:15:48,170 Cli.java:617 - address=/172.31.174.206:47636 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:15:48,434 Cli.java:617 - address=/172.31.174.206:47644 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-3] 2023-06-08 07:15:53,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:15:53,436 Cli.java:617 - address=/172.31.174.206:47650 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-4] 2023-06-08 07:16:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:16:03,434 Cli.java:617 - address=/172.31.174.206:49078 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:16:03,435 Cli.java:617 - address=/172.31.174.206:49084 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-6] 2023-06-08 07:16:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:16:13,435 Cli.java:617 - address=/172.31.174.206:46362 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:16:18,436 Cli.java:617 - address=/172.31.174.206:53872 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-8] 2023-06-08 07:16:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:16:23,434 Cli.java:617 - address=/172.31.174.206:53884 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-9] 2023-06-08 07:16:33,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:16:33,435 Cli.java:617 - address=/172.31.174.206:53642 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:16:33,435 Cli.java:617 - address=/172.31.174.206:53646 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-11] 2023-06-08 07:16:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:16:43,435 Cli.java:617 - address=/172.31.174.206:33674 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:16:48,434 Cli.java:617 - address=/172.31.174.206:60850 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-13] 2023-06-08 07:16:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:16:53,434 Cli.java:617 - address=/172.31.174.206:60852 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-15] 2023-06-08 07:17:03,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:17:03,435 Cli.java:617 - address=/172.31.174.206:36636 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:17:03,435 Cli.java:617 - address=/172.31.174.206:36644 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-16] 2023-06-08 07:17:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:17:13,434 Cli.java:617 - address=/172.31.174.206:58312 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-2] 2023-06-08 07:17:15,169 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:17:15,170 Cli.java:617 - address=/172.31.174.206:58324 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:17:18,434 Cli.java:617 - address=/172.31.174.206:60502 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-3] 2023-06-08 07:17:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:17:23,434 Cli.java:617 - address=/172.31.174.206:60506 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-4] 2023-06-08 07:17:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:17:33,435 Cli.java:617 - address=/172.31.174.206:38272 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:17:33,435 Cli.java:617 - address=/172.31.174.206:38276 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-6] 2023-06-08 07:17:43,433 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:17:43,434 Cli.java:617 - address=/172.31.174.206:41886 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:17:48,434 Cli.java:617 - address=/172.31.174.206:60596 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-8] 2023-06-08 07:17:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:17:53,434 Cli.java:617 - address=/172.31.174.206:60602 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-10] 2023-06-08 07:18:03,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:18:03,435 Cli.java:617 - address=/172.31.174.206:40356 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:18:03,435 Cli.java:617 - address=/172.31.174.206:40358 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-11] 2023-06-08 07:18:13,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:18:13,435 Cli.java:617 - address=/172.31.174.206:46276 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:18:18,435 Cli.java:617 - address=/172.31.174.206:40458 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-13] 2023-06-08 07:18:23,169 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:18:23,169 Cli.java:617 - address=/172.31.174.206:40470 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-14] 2023-06-08 07:18:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:18:23,435 Cli.java:617 - address=/172.31.174.206:40480 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-16] 2023-06-08 07:18:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:18:33,434 Cli.java:617 - address=/172.31.174.206:41856 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:18:33,435 Cli.java:617 - address=/172.31.174.206:41846 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-2] 2023-06-08 07:18:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:18:43,435 Cli.java:617 - address=/172.31.174.206:46746 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:18:48,434 Cli.java:617 - address=/172.31.174.206:40168 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-3] 2023-06-08 07:18:53,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:18:53,436 Cli.java:617 - address=/172.31.174.206:40176 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:19:03,434 Cli.java:617 - address=/172.31.174.206:45926 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-5] 2023-06-08 07:19:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:19:03,435 Cli.java:617 - address=/172.31.174.206:45934 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-6] 2023-06-08 07:19:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:19:13,435 Cli.java:617 - address=/172.31.174.206:37756 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:19:18,435 Cli.java:617 - address=/172.31.174.206:37136 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-8] 2023-06-08 07:19:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:19:23,434 Cli.java:617 - address=/172.31.174.206:37138 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-10] 2023-06-08 07:19:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:19:33,435 Cli.java:617 - address=/172.31.174.206:56408 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:19:33,435 Cli.java:617 - address=/172.31.174.206:56392 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-11] 2023-06-08 07:19:38,170 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:19:38,170 Cli.java:617 - address=/172.31.174.206:37946 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-12] 2023-06-08 07:19:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:19:43,434 Cli.java:617 - address=/172.31.174.206:37948 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:19:48,434 Cli.java:617 - address=/172.31.174.206:50928 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-14] 2023-06-08 07:19:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:19:53,435 Cli.java:617 - address=/172.31.174.206:50934 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-15] 2023-06-08 07:20:03,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:20:03,435 Cli.java:617 - address=/172.31.174.206:48638 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:20:03,436 Cli.java:617 - address=/172.31.174.206:48636 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-2] 2023-06-08 07:20:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:20:13,435 Cli.java:617 - address=/172.31.174.206:50168 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:20:18,434 Cli.java:617 - address=/172.31.174.206:33402 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-3] 2023-06-08 07:20:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:20:23,435 Cli.java:617 - address=/172.31.174.206:33404 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:20:33,434 Cli.java:617 - address=/172.31.174.206:58472 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-5] 2023-06-08 07:20:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:20:33,437 Cli.java:617 - address=/172.31.174.206:58476 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-6] 2023-06-08 07:20:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:20:43,435 Cli.java:617 - address=/172.31.174.206:40242 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-7] 2023-06-08 07:20:45,169 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:20:45,170 Cli.java:617 - address=/172.31.174.206:40252 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:20:48,434 Cli.java:617 - address=/172.31.174.206:55466 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-9] 2023-06-08 07:20:53,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:20:53,435 Cli.java:617 - address=/172.31.174.206:55470 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-10] 2023-06-08 07:21:03,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:21:03,435 Cli.java:617 - address=/172.31.174.206:42042 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:21:03,435 Cli.java:617 - address=/172.31.174.206:42044 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-12] 2023-06-08 07:21:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:21:13,435 Cli.java:617 - address=/172.31.174.206:37936 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:21:18,435 Cli.java:617 - address=/172.31.174.206:57548 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-14] 2023-06-08 07:21:23,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:21:23,435 Cli.java:617 - address=/172.31.174.206:57554 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-15] 2023-06-08 07:21:33,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:21:33,435 Cli.java:617 - address=/172.31.174.206:57182 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:21:33,435 Cli.java:617 - address=/172.31.174.206:57178 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-2] 2023-06-08 07:21:43,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:21:43,435 Cli.java:617 - address=/172.31.174.206:38838 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:21:48,434 Cli.java:617 - address=/172.31.174.206:36698 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-3] 2023-06-08 07:21:51,169 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:21:51,169 Cli.java:617 - address=/172.31.174.206:36712 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-4] 2023-06-08 07:21:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:21:53,435 Cli.java:617 - address=/172.31.174.206:36718 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-5] 2023-06-08 07:22:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:22:03,434 Cli.java:617 - address=/172.31.174.206:35654 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:22:03,435 Cli.java:617 - address=/172.31.174.206:35668 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-7] 2023-06-08 07:22:13,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:22:13,435 Cli.java:617 - address=/172.31.174.206:47514 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:22:18,434 Cli.java:617 - address=/172.31.174.206:33266 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-9] 2023-06-08 07:22:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:22:23,435 Cli.java:617 - address=/172.31.174.206:33276 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-11] 2023-06-08 07:22:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:22:33,434 Cli.java:617 - address=/172.31.174.206:36562 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:22:33,435 Cli.java:617 - address=/172.31.174.206:36566 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-12] 2023-06-08 07:22:43,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:22:43,435 Cli.java:617 - address=/172.31.174.206:47260 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:22:48,435 Cli.java:617 - address=/172.31.174.206:37100 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-14] 2023-06-08 07:22:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:22:53,435 Cli.java:617 - address=/172.31.174.206:37114 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-16] 2023-06-08 07:23:03,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:23:03,435 Cli.java:617 - address=/172.31.174.206:40790 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:23:03,435 Cli.java:617 - address=/172.31.174.206:40792 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-2] 2023-06-08 07:23:07,169 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:23:07,170 Cli.java:617 - address=/172.31.174.206:53074 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-1] 2023-06-08 07:23:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:23:13,435 Cli.java:617 - address=/172.31.174.206:53080 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:23:18,435 Cli.java:617 - address=/172.31.174.206:49952 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-4] 2023-06-08 07:23:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:23:23,434 Cli.java:617 - address=/172.31.174.206:49968 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-6] 2023-06-08 07:23:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:23:33,435 Cli.java:617 - address=/172.31.174.206:50546 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:23:33,435 Cli.java:617 - address=/172.31.174.206:50556 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-7] 2023-06-08 07:23:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:23:43,434 Cli.java:617 - address=/172.31.174.206:46670 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:23:48,435 Cli.java:617 - address=/172.31.174.206:59534 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-9] 2023-06-08 07:23:53,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:23:53,435 Cli.java:617 - address=/172.31.174.206:59542 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-10] 2023-06-08 07:24:03,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:24:03,435 Cli.java:617 - address=/172.31.174.206:44796 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:24:03,435 Cli.java:617 - address=/172.31.174.206:44780 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-12] 2023-06-08 07:24:13,433 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:24:13,434 Cli.java:617 - address=/172.31.174.206:33744 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:24:18,435 Cli.java:617 - address=/172.31.174.206:58806 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-14] 2023-06-08 07:24:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:24:23,435 Cli.java:617 - address=/172.31.174.206:58820 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-16] 2023-06-08 07:24:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:24:33,434 Cli.java:617 - address=/172.31.174.206:57862 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:24:33,434 Cli.java:617 - address=/172.31.174.206:57860 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-2] 2023-06-08 07:24:35,169 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:24:35,170 Cli.java:617 - address=/172.31.174.206:57872 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-1] 2023-06-08 07:24:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:24:43,434 Cli.java:617 - address=/172.31.174.206:36044 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:24:48,434 Cli.java:617 - address=/172.31.174.206:46974 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-4] 2023-06-08 07:24:53,433 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:24:53,434 Cli.java:617 - address=/172.31.174.206:46980 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:25:03,434 Cli.java:617 - address=/172.31.174.206:44370 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-6] 2023-06-08 07:25:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:25:03,435 Cli.java:617 - address=/172.31.174.206:44360 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-7] 2023-06-08 07:25:13,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:25:13,435 Cli.java:617 - address=/172.31.174.206:39338 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:25:18,434 Cli.java:617 - address=/172.31.174.206:32768 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-9] 2023-06-08 07:25:23,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:25:23,436 Cli.java:617 - address=/172.31.174.206:32774 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:25:33,434 Cli.java:617 - address=/172.31.174.206:36532 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-11] 2023-06-08 07:25:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:25:33,435 Cli.java:617 - address=/172.31.174.206:36526 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-12] 2023-06-08 07:25:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:25:43,435 Cli.java:617 - address=/172.31.174.206:34500 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:25:48,435 Cli.java:617 - address=/172.31.174.206:39008 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-14] 2023-06-08 07:25:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:25:53,435 Cli.java:617 - address=/172.31.174.206:39012 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-15] 2023-06-08 07:26:00,171 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:26:00,171 Cli.java:617 - address=/172.31.174.206:51038 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-16] 2023-06-08 07:26:03,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:26:03,435 Cli.java:617 - address=/172.31.174.206:51048 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:26:03,435 Cli.java:617 - address=/172.31.174.206:51046 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-1] 2023-06-08 07:26:13,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:26:13,435 Cli.java:617 - address=/172.31.174.206:43198 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:26:18,434 Cli.java:617 - address=/172.31.174.206:54770 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-4] 2023-06-08 07:26:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:26:23,435 Cli.java:617 - address=/172.31.174.206:54774 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:26:33,434 Cli.java:617 - address=/172.31.174.206:51574 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-5] 2023-06-08 07:26:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:26:33,435 Cli.java:617 - address=/172.31.174.206:51584 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-7] 2023-06-08 07:26:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:26:43,435 Cli.java:617 - address=/172.31.174.206:58386 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:26:48,434 Cli.java:617 - address=/172.31.174.206:34324 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-9] 2023-06-08 07:26:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:26:53,435 Cli.java:617 - address=/172.31.174.206:34340 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-10] 2023-06-08 07:27:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:27:03,435 Cli.java:617 - address=/172.31.174.206:57644 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:27:03,435 Cli.java:617 - address=/172.31.174.206:57646 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-12] 2023-06-08 07:27:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:27:13,434 Cli.java:617 - address=/172.31.174.206:36470 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:27:18,435 Cli.java:617 - address=/172.31.174.206:54016 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-14] 2023-06-08 07:27:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:27:23,435 Cli.java:617 - address=/172.31.174.206:54030 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-15] 2023-06-08 07:27:29,168 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:27:29,169 Cli.java:617 - address=/172.31.174.206:43744 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-16] 2023-06-08 07:27:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:27:33,435 Cli.java:617 - address=/172.31.174.206:43762 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:27:33,435 Cli.java:617 - address=/172.31.174.206:43752 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-1] 2023-06-08 07:27:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:27:43,434 Cli.java:617 - address=/172.31.174.206:54288 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:27:48,434 Cli.java:617 - address=/172.31.174.206:35322 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-4] 2023-06-08 07:27:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:27:53,434 Cli.java:617 - address=/172.31.174.206:35336 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-5] 2023-06-08 07:28:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:28:03,435 Cli.java:617 - address=/172.31.174.206:34844 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:28:03,436 Cli.java:617 - address=/172.31.174.206:34830 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-7] 2023-06-08 07:28:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:28:13,434 Cli.java:617 - address=/172.31.174.206:40646 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:28:18,433 Cli.java:617 - address=/172.31.174.206:45454 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-9] 2023-06-08 07:28:23,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:28:23,435 Cli.java:617 - address=/172.31.174.206:45460 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-11] 2023-06-08 07:28:33,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:28:33,435 Cli.java:617 - address=/172.31.174.206:39232 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:28:33,435 Cli.java:617 - address=/172.31.174.206:39230 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-12] 2023-06-08 07:28:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:28:43,434 Cli.java:617 - address=/172.31.174.206:45858 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:28:48,434 Cli.java:617 - address=/172.31.174.206:53866 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-14] 2023-06-08 07:28:50,168 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:28:50,168 Cli.java:617 - address=/172.31.174.206:53872 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-15] 2023-06-08 07:28:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:28:53,434 Cli.java:617 - address=/172.31.174.206:53880 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:29:03,434 Cli.java:617 - address=/172.31.174.206:35042 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-2] 2023-06-08 07:29:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:29:03,435 Cli.java:617 - address=/172.31.174.206:35040 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-1] 2023-06-08 07:29:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:29:13,434 Cli.java:617 - address=/172.31.174.206:33966 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:29:18,435 Cli.java:617 - address=/172.31.174.206:50002 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-4] 2023-06-08 07:29:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:29:23,435 Cli.java:617 - address=/172.31.174.206:50014 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-5] 2023-06-08 07:29:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:29:33,434 Cli.java:617 - address=/172.31.174.206:57412 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:29:33,435 Cli.java:617 - address=/172.31.174.206:57414 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-7] 2023-06-08 07:29:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:29:43,434 Cli.java:617 - address=/172.31.174.206:54920 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:29:48,434 Cli.java:617 - address=/172.31.174.206:54742 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-9] 2023-06-08 07:29:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:29:53,434 Cli.java:617 - address=/172.31.174.206:54750 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-10] 2023-06-08 07:30:00,168 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:30:00,169 Cli.java:617 - address=/172.31.174.206:34526 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-12] 2023-06-08 07:30:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:30:03,435 Cli.java:617 - address=/172.31.174.206:34540 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:30:03,435 Cli.java:617 - address=/172.31.174.206:34538 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-13] 2023-06-08 07:30:13,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:30:13,435 Cli.java:617 - address=/172.31.174.206:36176 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:30:18,434 Cli.java:617 - address=/172.31.174.206:43070 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-15] 2023-06-08 07:30:23,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:30:23,436 Cli.java:617 - address=/172.31.174.206:43086 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-2] 2023-06-08 07:30:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:30:33,434 Cli.java:617 - address=/172.31.174.206:47718 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:30:33,434 Cli.java:617 - address=/172.31.174.206:47734 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-1] 2023-06-08 07:30:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:30:43,434 Cli.java:617 - address=/172.31.174.206:37670 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:30:48,434 Cli.java:617 - address=/172.31.174.206:54570 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-4] 2023-06-08 07:30:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:30:53,434 Cli.java:617 - address=/172.31.174.206:54576 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-5] 2023-06-08 07:31:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:31:03,435 Cli.java:617 - address=/172.31.174.206:57166 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:31:03,435 Cli.java:617 - address=/172.31.174.206:57160 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-7] 2023-06-08 07:31:12,169 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:31:12,169 Cli.java:617 - address=/172.31.174.206:57198 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-8] 2023-06-08 07:31:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:31:13,434 Cli.java:617 - address=/172.31.174.206:57210 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:31:18,434 Cli.java:617 - address=/172.31.174.206:33000 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-10] 2023-06-08 07:31:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:31:23,434 Cli.java:617 - address=/172.31.174.206:33014 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-12] 2023-06-08 07:31:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:31:33,434 Cli.java:617 - address=/172.31.174.206:32956 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:31:33,434 Cli.java:617 - address=/172.31.174.206:32958 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-13] 2023-06-08 07:31:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:31:43,434 Cli.java:617 - address=/172.31.174.206:33798 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:31:48,434 Cli.java:617 - address=/172.31.174.206:48754 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-15] 2023-06-08 07:31:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:31:53,435 Cli.java:617 - address=/172.31.174.206:48762 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-2] 2023-06-08 07:32:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:03,434 Cli.java:617 - address=/172.31.174.206:40110 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:32:03,435 Cli.java:617 - address=/172.31.174.206:40108 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-1] 2023-06-08 07:32:13,168 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:13,169 Cli.java:617 - address=/172.31.174.206:35738 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-3] 2023-06-08 07:32:13,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:32:13,435 Cli.java:617 - address=/172.31.174.206:35754 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:18,434 Cli.java:617 - address=/172.31.174.206:44438 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-5] 2023-06-08 07:32:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:32:23,435 Cli.java:617 - address=/172.31.174.206:44444 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-7] 2023-06-08 07:32:33,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:33,435 Cli.java:617 - address=/172.31.174.206:49856 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:32:33,435 Cli.java:617 - address=/172.31.174.206:49864 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-8] 2023-06-08 07:32:43,433 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:43,434 Cli.java:617 - address=/172.31.174.206:53614 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:32:48,435 Cli.java:617 - address=/172.31.174.206:48328 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-10] 2023-06-08 07:32:53,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:32:53,435 Cli.java:617 - address=/172.31.174.206:48340 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-11] 2023-06-08 07:33:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:03,435 Cli.java:617 - address=/172.31.174.206:38970 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:33:03,435 Cli.java:617 - address=/172.31.174.206:38968 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-13] 2023-06-08 07:33:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:13,435 Cli.java:617 - address=/172.31.174.206:34816 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-14] 2023-06-08 07:33:14,170 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:33:14,171 Cli.java:617 - address=/172.31.174.206:34824 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:18,434 Cli.java:617 - address=/172.31.174.206:36900 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-16] 2023-06-08 07:33:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:33:23,434 Cli.java:617 - address=/172.31.174.206:36902 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-1] 2023-06-08 07:33:33,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:33,435 Cli.java:617 - address=/172.31.174.206:58690 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:33:33,435 Cli.java:617 - address=/172.31.174.206:58686 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-3] 2023-06-08 07:33:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:43,435 Cli.java:617 - address=/172.31.174.206:51128 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:33:48,434 Cli.java:617 - address=/172.31.174.206:36420 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-5] 2023-06-08 07:33:53,435 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:33:53,435 Cli.java:617 - address=/172.31.174.206:36436 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-6] 2023-06-08 07:34:03,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:34:03,434 Cli.java:617 - address=/172.31.174.206:48470 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:34:03,435 Cli.java:617 - address=/172.31.174.206:48466 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-8] 2023-06-08 07:34:13,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:34:13,434 Cli.java:617 - address=/172.31.174.206:45916 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:34:18,435 Cli.java:617 - address=/172.31.174.206:37754 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-3-10] 2023-06-08 07:34:23,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:34:23,435 Cli.java:617 - address=/172.31.174.206:37756 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-11] 2023-06-08 07:34:27,169 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:34:27,169 Cli.java:617 - address=/172.31.174.206:56038 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-12] 2023-06-08 07:34:33,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-2] 2023-06-08 07:34:33,434 Cli.java:617 - address=/172.31.174.206:56054 url=/api/v0/probes/liveness status=200 OK
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:34:33,435 Cli.java:617 - address=/172.31.174.206:56052 url=/api/v0/probes/readiness status=500 Internal Server Error
INFO [nioEventLoopGroup-3-14] 2023-06-08 07:34:43,434 UnixSocketCQLAccess.java:88 - Cannot create Driver CQLSession as the driver socket has not been created. This should resolve once Cassandra has started and created the socket at /tmp/cassandra.sock
INFO [nioEventLoopGroup-2-1] 2023-06-08 07:34:43,434 Cli.java:617 - address=/172.31.174.206:58852 url=/api/v0/probes/readiness status=500 Internal Server Error
(⎈|chandapukiran.kumar-yukon:kiran1-cassandra-int)chandapukiran.kumar@VPM7F27M66 script %
(⎈|chandapukiran.kumar-yukon:kiran1-cassandra-int)chandapukiran.kumar@VPM7F27M66 script %
(⎈|chandapukiran.kumar-yukon:kiran1-cassandra-int)chandapukiran.kumar@VPM7F27M66 script %
(⎈|chandapukiran.kumar-yukon:kiran1-cassandra-int)chandapukiran.kumar@VPM7F27M66 script % kubectl logs pod/kiran1-cassandra-int-dc1-default-sts-3 -c server-system-logger
tail: cannot open '/var/log/cassandra/system.log' for reading: No such file or directory
tail: '/var/log/cassandra/system.log' has appeared; following new file
INFO [main] 2023-06-08 07:05:47,546 SystemDistributedReplicationInterceptor.java:138 - Using override for distributed system keyspaces: {dc1=3, class=NetworkTopologyStrategy}
INFO [main] 2023-06-08 07:05:48,035 YamlConfigurationLoader.java:97 - Configuration location: file:/etc/cassandra/cassandra.yaml
INFO [main] 2023-06-08 07:05:48,572 Config.java:706 - Node configuration:[allocate_tokens_for_keyspace=null; allocate_tokens_for_local_replication_factor=3; allow_extra_insecure_udfs=false; allow_insecure_udfs=false; audit_logging_options=AuditLogOptions{enabled=false, logger='BinAuditLogger{}', included_keyspaces='', excluded_keyspaces='system,system_schema,system_virtual_schema', included_categories='', excluded_categories='', included_users='', excluded_users='', audit_logs_dir='/opt/cassandra/logs/audit/', archive_command='', roll_cycle='HOURLY', block=true, max_queue_weight=268435456, max_log_size=17179869184}; authenticator=PasswordAuthenticator; authorizer=CassandraAuthorizer; auto_bootstrap=true; auto_optimise_full_repair_streams=false; auto_optimise_inc_repair_streams=false; auto_optimise_preview_repair_streams=false; auto_snapshot=true; autocompaction_on_startup_enabled=true; automatic_sstable_upgrade=false; back_pressure_enabled=false; back_pressure_strategy=null; batch_size_fail_threshold_in_kb=640; batch_size_warn_threshold_in_kb=64; batchlog_replay_throttle_in_kb=1024; block_for_peers_in_remote_dcs=false; block_for_peers_timeout_in_secs=10; broadcast_address=null; broadcast_rpc_address=100.124.109.40; buffer_pool_use_heap_if_exhausted=false; cache_load_timeout_seconds=30; cas_contention_timeout_in_ms=1000; cdc_enabled=false; cdc_free_space_check_interval_ms=250; cdc_raw_directory=null; 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=kiran1-cassandra-int; column_index_cache_size_in_kb=2; column_index_size_in_kb=64; commit_failure_policy=stop; commitlog_compression=null; commitlog_directory=null; 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_group_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=640; concurrent_compactors=null; concurrent_counter_writes=32; concurrent_materialized_view_builders=1; concurrent_materialized_view_writes=32; concurrent_reads=32; concurrent_replicates=null; concurrent_validations=0; concurrent_writes=32; consecutive_message_errors_threshold=1; corrupted_tombstone_strategy=disabled; 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=3600000; credentials_validity_in_ms=3600000; cross_node_timeout=false; data_file_directories=[Ljava.lang.String;@7dffda8b; diagnostic_events_enabled=false; 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_drop_compact_storage=false; enable_materialized_views=true; enable_sasi_indexes=true; enable_scripted_user_defined_functions=false; enable_transient_replication=false; enable_user_defined_functions=false; enable_user_defined_functions_threads=true; endpoint_snitch=GossipingPropertyFileSnitch; file_cache_enabled=false; file_cache_round_up=null; file_cache_size_in_mb=null; flush_compression=fast; force_new_prepared_statement_behaviour=false; full_query_logging_options=FullQueryLoggerOptions{log_dir='', archive_command='', roll_cycle='HOURLY', block=true, max_queue_weight=268435456, max_log_size=17179869184}; 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=null; hints_flush_period_in_ms=10000; ideal_consistency_level=null; incremental_backups=false; index_summary_capacity_in_mb=null; index_summary_resize_interval_in_minutes=60; initial_range_tombstone_list_allocation_size=1; initial_token=null; inter_dc_stream_throughput_outbound_megabits_per_sec=200; inter_dc_tcp_nodelay=false; internode_application_receive_queue_capacity_in_bytes=4194304; internode_application_receive_queue_reserve_endpoint_capacity_in_bytes=134217728; internode_application_receive_queue_reserve_global_capacity_in_bytes=536870912; internode_application_send_queue_capacity_in_bytes=4194304; internode_application_send_queue_reserve_endpoint_capacity_in_bytes=134217728; internode_application_send_queue_reserve_global_capacity_in_bytes=536870912; internode_authenticator=null; internode_compression=dc; internode_max_message_size_in_bytes=null; internode_socket_receive_buffer_size_in_bytes=0; internode_socket_send_buffer_size_in_bytes=0; internode_streaming_tcp_user_timeout_in_ms=300000; internode_tcp_connect_timeout_in_ms=2000; internode_tcp_user_timeout_in_ms=30000; key_cache_keys_to_save=2147483647; key_cache_migrate_during_compaction=true; key_cache_save_period=14400; key_cache_size_in_mb=512; keyspace_count_warn_threshold=40; listen_address=100.124.109.40; listen_interface=null; listen_interface_prefer_ipv6=false; listen_on_broadcast_address=false; local_system_data_file_directory=null; max_concurrent_automatic_sstable_upgrades=1; 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_allow_older_protocols=true; native_transport_flush_in_batches_legacy=false; native_transport_idle_timeout_in_ms=0; 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=null; native_transport_max_threads=128; native_transport_port=9042; native_transport_port_ssl=null; native_transport_receive_queue_capacity_in_bytes=1048576; network_authorizer=null; networking_cache_size_in_mb=null; num_tokens=16; 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; periodic_commitlog_sync_lag_block_in_ms=null; permissions_cache_max_entries=1000; permissions_update_interval_in_ms=3600000; permissions_validity_in_ms=3600000; phi_convict_threshold=8.0; prepared_statements_cache_size_mb=null; range_request_timeout_in_ms=10000; range_tombstone_list_growth_factor=1.5; read_request_timeout_in_ms=5000; reject_repair_compaction_threshold=2147483647; repair_command_pool_full_strategy=queue; repair_command_pool_size=0; repair_session_max_tree_depth=null; repair_session_space_in_mb=null; repaired_data_tracking_for_partition_reads_enabled=false; repaired_data_tracking_for_range_reads_enabled=false; report_unconfirmed_repaired_data_mismatches=false; request_timeout_in_ms=10000; role_manager=CassandraRoleManager; roles_cache_max_entries=1000; roles_update_interval_in_ms=3600000; roles_validity_in_ms=3600000; 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=512; rpc_address=0.0.0.0; rpc_interface=null; rpc_interface_prefer_ipv6=false; rpc_keepalive=true; saved_caches_directory=null; seed_provider=org.apache.cassandra.locator.K8SeedProvider{seeds=kiran1-cassandra-int-seed-service,kiran1-cassandra-int-dc1-additional-seed-service}; server_encryption_options=; slow_query_log_timeout_in_ms=500; snapshot_before_compaction=false; snapshot_links_per_second=0; snapshot_on_duplicate_row_detection=false; snapshot_on_repaired_data_mismatch=false; ssl_storage_port=7001; sstable_preemptive_open_interval_in_mb=50; start_native_transport=true; storage_port=7000; stream_entire_sstables=true; stream_throughput_outbound_megabits_per_sec=200; streaming_connections_per_host=1; streaming_keep_alive_period_in_secs=300; table_count_warn_threshold=150; 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@3d1f558a; trickle_fsync=true; trickle_fsync_interval_in_kb=10240; truncate_request_timeout_in_ms=60000; unlogged_batch_across_partitions_warn_threshold=10; use_offheap_merkle_trees=true; user_defined_function_fail_timeout=1500; user_defined_function_warn_timeout=500; user_function_timeout_policy=die; validation_preview_purge_head_start_in_sec=3600; windows_timer_interval=1; write_request_timeout_in_ms=2000]
INFO [main] 2023-06-08 07:05:48,575 DatabaseDescriptor.java:416 - DiskAccessMode 'auto' determined to be mmap, indexAccessMode is mmap
INFO [main] 2023-06-08 07:05:48,575 DatabaseDescriptor.java:477 - Global memtable on-heap threshold is enabled at 256MB
INFO [main] 2023-06-08 07:05:48,575 DatabaseDescriptor.java:481 - Global memtable off-heap threshold is enabled at 256MB
WARN [main] 2023-06-08 07:05:48,591 DatabaseDescriptor.java:628 - Only 34.914GiB free across all data volumes. Consider adding more capacity to your cluster or removing obsolete snapshots
INFO [main] 2023-06-08 07:05:48,723 GossipingPropertyFileSnitch.java:63 - Loaded cassandra-topology.properties for compatibility
WARN [main] 2023-06-08 07:05:48,751 K8SeedProvider4x.java:58 - Seed provider couldn't lookup host kiran1-cassandra-int-dc1-additional-seed-service
INFO [main] 2023-06-08 07:05:48,915 SSLFactory.java:521 - Native transport enabled TLS protocols: TLSv1.2
INFO [main] 2023-06-08 07:05:48,916 SSLFactory.java:524 - Native transport enabled cipher suites: TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_256_GCM_SHA384, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_PSK_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_PSK_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_3DES_EDE_CBC_SHA
INFO [main] 2023-06-08 07:05:49,012 JMXServerUtils.java:271 - Configured JMX server at: service:jmx:rmi://127.0.0.1/jndi/rmi://127.0.0.1:7199/jmxrmi
INFO [main] 2023-06-08 07:05:49,018 CassandraDaemon.java:625 - Hostname: kiran1-cassandra-int-dc1-default-sts-3:7000:7001
INFO [main] 2023-06-08 07:05:49,018 CassandraDaemon.java:632 - JVM vendor/version: OpenJDK 64-Bit Server VM/11.0.19
INFO [main] 2023-06-08 07:05:49,018 CassandraDaemon.java:633 - Heap size: 1.000GiB/1.000GiB
INFO [main] 2023-06-08 07:05:49,020 CassandraDaemon.java:638 - CodeHeap 'non-nmethods' Non-heap memory: init = 2555904(2496K) used = 3732480(3645K) committed = 3801088(3712K) max = 8773632(8568K)
INFO [main] 2023-06-08 07:05:49,028 CassandraDaemon.java:638 - Metaspace Non-heap memory: init = 0(0K) used = 29194184(28509K) committed = 30064640(29360K) max = -1(-1K)
INFO [main] 2023-06-08 07:05:49,028 CassandraDaemon.java:638 - CodeHeap 'profiled nmethods' Non-heap memory: init = 2555904(2496K) used = 10219904(9980K) committed = 10223616(9984K) max = 121442304(118596K)
INFO [main] 2023-06-08 07:05:49,028 CassandraDaemon.java:638 - Compressed Class Space Non-heap memory: init = 0(0K) used = 3670936(3584K) committed = 3932160(3840K) max = 1073741824(1048576K)
INFO [main] 2023-06-08 07:05:49,028 CassandraDaemon.java:638 - G1 Eden Space Heap memory: init = 70254592(68608K) used = 202375168(197632K) committed = 667942912(652288K) max = -1(-1K)
INFO [main] 2023-06-08 07:05:49,028 CassandraDaemon.java:638 - G1 Old Gen Heap memory: init = 1003487232(979968K) used = 2790976(2725K) committed = 1003487232(979968K) max = 1073741824(1048576K)
INFO [main] 2023-06-08 07:05:49,028 CassandraDaemon.java:638 - G1 Survivor Space Heap memory: init = 0(0K) used = 10485760(10240K) committed = 10485760(10240K) max = -1(-1K)
INFO [main] 2023-06-08 07:05:49,028 CassandraDaemon.java:638 - CodeHeap 'non-profiled nmethods' Non-heap memory: init = 2555904(2496K) used = 3899008(3807K) committed = 3932160(3840K) max = 121442304(118596K)
INFO [main] 2023-06-08 07:05:49,028 CassandraDaemon.java:640 - Classpath: /opt/cassandra/conf:/opt/cassandra/lib/HdrHistogram-2.1.9.jar:/opt/cassandra/lib/ST4-4.0.8.jar:/opt/cassandra/lib/airline-0.8.jar:/opt/cassandra/lib/antlr-runtime-3.5.2.jar:/opt/cassandra/lib/apache-cassandra-4.0.3.jar:/opt/cassandra/lib/asm-7.1.jar:/opt/cassandra/lib/caffeine-2.5.6.jar:/opt/cassandra/lib/cassandra-driver-core-3.11.0-shaded.jar:/opt/cassandra/lib/chronicle-bytes-2.20.111.jar:/opt/cassandra/lib/chronicle-core-2.20.126.jar:/opt/cassandra/lib/chronicle-queue-5.20.123.jar:/opt/cassandra/lib/chronicle-threads-2.20.111.jar:/opt/cassandra/lib/chronicle-wire-2.20.117.jar:/opt/cassandra/lib/commons-cli-1.1.jar:/opt/cassandra/lib/commons-codec-1.9.jar:/opt/cassandra/lib/commons-lang3-3.11.jar:/opt/cassandra/lib/commons-math3-3.2.jar:/opt/cassandra/lib/concurrent-trees-2.4.0.jar:/opt/cassandra/lib/ecj-4.6.1.jar:/opt/cassandra/lib/guava-27.0-jre.jar:/opt/cassandra/lib/high-scale-lib-1.0.6.jar:/opt/cassandra/lib/hppc-0.8.1.jar:/opt/cassandra/lib/j2objc-annotations-1.3.jar:/opt/cassandra/lib/jackson-annotations-2.12.5.jar:/opt/cassandra/lib/jackson-core-2.12.5.jar:/opt/cassandra/lib/jackson-databind-2.12.5.jar:/opt/cassandra/lib/jamm-0.3.2.jar:/opt/cassandra/lib/java-cup-runtime-11b-20160615.jar:/opt/cassandra/lib/javax.inject-1.jar:/opt/cassandra/lib/jbcrypt-0.4.jar:/opt/cassandra/lib/jcl-over-slf4j-1.7.25.jar:/opt/cassandra/lib/jcommander-1.30.jar:/opt/cassandra/lib/jctools-core-3.1.0.jar:/opt/cassandra/lib/jflex-1.8.2.jar:/opt/cassandra/lib/jna-5.6.0.jar:/opt/cassandra/lib/json-simple-1.1.jar:/opt/cassandra/lib/jvm-attach-api-1.5.jar:/opt/cassandra/lib/log4j-over-slf4j-1.7.25.jar:/opt/cassandra/lib/logback-classic-1.2.9.jar:/opt/cassandra/lib/logback-core-1.2.9.jar:/opt/cassandra/lib/lz4-java-1.8.0.jar:/opt/cassandra/lib/metrics-core-3.1.5.jar:/opt/cassandra/lib/metrics-jvm-3.1.5.jar:/opt/cassandra/lib/metrics-logback-3.1.5.jar:/opt/cassandra/lib/mxdump-0.14.jar:/opt/cassandra/lib/netty-all-4.1.58.Final.jar:/opt/cassandra/lib/netty-tcnative-boringssl-static-2.0.36.Final.jar:/opt/cassandra/lib/ohc-core-0.5.1.jar:/opt/cassandra/lib/ohc-core-j8-0.5.1.jar:/opt/cassandra/lib/psjava-0.1.19.jar:/opt/cassandra/lib/reporter-config-base-3.0.3.jar:/opt/cassandra/lib/reporter-config3-3.0.3.jar:/opt/cassandra/lib/sigar-1.6.4.jar:/opt/cassandra/lib/sjk-cli-0.14.jar:/opt/cassandra/lib/sjk-core-0.14.jar:/opt/cassandra/lib/sjk-json-0.14.jar:/opt/cassandra/lib/sjk-stacktrace-0.14.jar:/opt/cassandra/lib/slf4j-api-1.7.25.jar:/opt/cassandra/lib/snakeyaml-1.26.jar:/opt/cassandra/lib/snappy-java-1.1.2.6.jar:/opt/cassandra/lib/snowball-stemmer-1.3.0.581.1.jar:/opt/cassandra/lib/stream-2.5.2.jar:/opt/cassandra/lib/zstd-jni-1.5.0-4.jar:/opt/cassandra/lib/jsr223//.jar:
INFO [main] 2023-06-08 07:05:49,029 CassandraDaemon.java:642 - JVM Arguments: [-XX:+UnlockDiagnosticVMOptions, -XX:+AlwaysPreTouch, -Dcassandra.disable_auth_caches_remote_configuration=false, -Dcassandra.force_default_indexing_page_size=false, -Dcassandra.join_ring=true, -Dcassandra.load_ring_state=true, -Dcassandra.write_survey=false, -XX:+DebugNonSafepoints, -ea, -XX:GuaranteedSafepointInterval=300000, -XX:+HeapDumpOnOutOfMemoryError, -Xms1G, -Dio.netty.eventLoop.maxPendingTasks=65536, -Djava.net.preferIPv4Stack=true, -Djdk.nio.maxCachedBufferSize=1048576, -Xmx1G, -Dsun.nio.PageAlignDirectMemory=true, -Xss256k, -XX:+PerfDisableSharedMem, -XX:+PreserveFramePointer, -Dcassandra.printHeapHistogramOnOutOfMemoryError=false, -XX:+ResizeTLAB, -XX:-RestrictContended, -XX:StringTableSize=1000003, -XX:-UseBiasedLocking, -XX:+UseNUMA, -XX:+UseThreadPriorities, -XX:+UseTLAB, -Dcom.sun.management.jmxremote.authenticate=false, -Dcassandra.jmx.local.port=7199, -XX:G1RSetUpdatingPauseTimePercent=5, -XX:MaxGCPauseMillis=500, -XX:+UseG1GC, -XX:+ParallelRefProcEnabled, -Djdk.attach.allowAttachSelf=true, --add-exports=java.base/jdk.internal.misc=ALL-UNNAMED, --add-opens=java.base/jdk.internal.module=ALL-UNNAMED, --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED, --add-exports=java.base/jdk.internal.perf=ALL-UNNAMED, --add-exports=java.base/sun.nio.ch=ALL-UNNAMED, --add-exports=java.management.rmi/com.sun.jmx.remote.internal.rmi=ALL-UNNAMED, --add-exports=java.rmi/sun.rmi.registry=ALL-UNNAMED, --add-exports=java.rmi/sun.rmi.server=ALL-UNNAMED, --add-opens=jdk.management/com.sun.management.internal=ALL-UNNAMED, -Dio.netty.tryReflectionSetAccessible=true, -Dcassandra.system_distributed_replication_dc_names=dc1, -Dcassandra.system_distributed_replication_per_dc=3, -Dcassandra.allow_alter_rf_during_range_movement=true, -Xlog:gc=info,heap*=trace,age*=debug,safepoint=info,promotion*=trace:file=/opt/cassandra/logs/gc.log:time,uptime,pid,tid,level:filecount=10,filesize=10485760, -XX:CompileCommandFile=/opt/cassandra/conf/hotspot_compiler, -javaagent:/opt/cassandra/lib/jamm-0.3.2.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/cassandra/lib/sigar-bin, -javaagent:/opt/metrics-collector/lib/datastax-mcac-agent.jar, -javaagent:/opt/management-api/datastax-mgmtapi-agent-0.1.0-SNAPSHOT.jar, -XX:OnOutOfMemoryError=kill -9 %p, -Dlogback.configurationFile=logback.xml, -Dcassandra.logdir=/opt/cassandra/logs, -Dcassandra.storagedir=/opt/cassandra/data]
WARN [main] 2023-06-08 07:05:49,082 NativeLibrary.java:201 - 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.
INFO [main] 2023-06-08 07:05:49,131 MonotonicClock.java:202 - Scheduling approximate time conversion task with an interval of 10000 milliseconds
INFO [main] 2023-06-08 07:05:49,132 MonotonicClock.java:338 - Scheduling approximate time-check task with a precision of 2 milliseconds
WARN [main] 2023-06-08 07:05:49,132 StartupChecks.java:143 - jemalloc shared library could not be preloaded to speed up memory allocations
WARN [main] 2023-06-08 07:05:49,132 StartupChecks.java:187 - JMX is not enabled to receive remote connections. Please see cassandra-env.sh for more info.
INFO [main] 2023-06-08 07:05:49,134 SigarLibrary.java:44 - Initializing SIGAR library
INFO [main] 2023-06-08 07:05:49,142 SigarLibrary.java:53 - Could not initialize SIGAR library No such file or directory
INFO [main] 2023-06-08 07:05:49,142 SigarLibrary.java:185 - Sigar could not be initialized, test for checking degraded mode omitted.
WARN [main] 2023-06-08 07:05:49,142 StartupChecks.java:329 - Maximum number of memory map areas per process (vm.max_map_count) 262144 is too low, recommended value: 1048575, you can change it with sysctl.
INFO [main] 2023-06-08 07:05:49,559 Keyspace.java:386 - Creating replication strategy system params KeyspaceParams{durable_writes=true, replication=ReplicationParams{class=org.apache.cassandra.locator.LocalStrategy}}
INFO [main] 2023-06-08 07:05:49,624 ColumnFamilyStore.java:385 - Initializing system.IndexInfo
INFO [main] 2023-06-08 07:05:50,104 ColumnFamilyStore.java:385 - Initializing system.batches
INFO [main] 2023-06-08 07:05:50,108 ColumnFamilyStore.java:385 - Initializing system.paxos
INFO [main] 2023-06-08 07:05:50,115 ColumnFamilyStore.java:385 - Initializing system.local
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:50,157 BufferPools.java:49 - Global buffer pool limit is 256.000MiB for chunk-cache and 64.000MiB for networking
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:50,174 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-7-big (0.656KiB)
INFO [main] 2023-06-08 07:05:50,196 CacheService.java:103 - Initializing key cache with capacity of 512 MBs.
INFO [main] 2023-06-08 07:05:50,942 CacheService.java:125 - Initializing row cache with capacity of 512 MBs
INFO [main] 2023-06-08 07:05:50,954 Uns.java:164 - OHC using Java8 Unsafe API
INFO [main] 2023-06-08 07:05:50,954 Uns.java:193 - OHC using JNA OS native malloc/free
INFO [main] 2023-06-08 07:05:50,964 CacheService.java:154 - Initializing counter cache with capacity of 25 MBs
INFO [main] 2023-06-08 07:05:50,965 CacheService.java:165 - Scheduling counter cache save to every 7200 seconds (going to save all keys).
INFO [main] 2023-06-08 07:05:51,029 ColumnFamilyStore.java:385 - Initializing system.peers_v2
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,032 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system/peers_v2-c4325fbb8e5e3bafbd070f9250ed818e/nb-1-big (1.288KiB)
INFO [main] 2023-06-08 07:05:51,039 ColumnFamilyStore.java:385 - Initializing system.peers
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,042 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system/peers-37f71aca7dc2383ba70672528af04d4f/nb-1-big (1.273KiB)
INFO [main] 2023-06-08 07:05:51,048 ColumnFamilyStore.java:385 - Initializing system.peer_events_v2
INFO [main] 2023-06-08 07:05:51,052 ColumnFamilyStore.java:385 - Initializing system.peer_events
INFO [main] 2023-06-08 07:05:51,057 ColumnFamilyStore.java:385 - Initializing system.compaction_history
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,060 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system/compaction_history-b4dbb7b4dc493fb5b3bfce6e434832ca/nb-1-big (0.098KiB)
INFO [main] 2023-06-08 07:05:51,067 ColumnFamilyStore.java:385 - Initializing system.sstable_activity
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,070 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system/sstable_activity-5a1ff267ace03f128563cfae6103c65e/nb-1-big (0.100KiB)
INFO [main] 2023-06-08 07:05:51,077 ColumnFamilyStore.java:385 - Initializing system.size_estimates
INFO [main] 2023-06-08 07:05:51,080 ColumnFamilyStore.java:385 - Initializing system.table_estimates
INFO [main] 2023-06-08 07:05:51,084 ColumnFamilyStore.java:385 - Initializing system.available_ranges_v2
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,087 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system/available_ranges_v2-4224a0882ac93d0c889dfbb5f0facda0/nb-1-big (1.654KiB)
INFO [main] 2023-06-08 07:05:51,094 ColumnFamilyStore.java:385 - Initializing system.available_ranges
INFO [main] 2023-06-08 07:05:51,097 ColumnFamilyStore.java:385 - Initializing system.transferred_ranges_v2
INFO [main] 2023-06-08 07:05:51,100 ColumnFamilyStore.java:385 - Initializing system.transferred_ranges
INFO [main] 2023-06-08 07:05:51,104 ColumnFamilyStore.java:385 - Initializing system.view_builds_in_progress
INFO [main] 2023-06-08 07:05:51,107 ColumnFamilyStore.java:385 - Initializing system.built_views
INFO [main] 2023-06-08 07:05:51,110 ColumnFamilyStore.java:385 - Initializing system.prepared_statements
INFO [main] 2023-06-08 07:05:51,113 ColumnFamilyStore.java:385 - Initializing system.repairs
INFO [main] 2023-06-08 07:05:51,157 QueryProcessor.java:115 - Initialized prepared statement caches with 10 MB
INFO [main] 2023-06-08 07:05:51,314 Keyspace.java:386 - Creating replication strategy system_schema params KeyspaceParams{durable_writes=true, replication=ReplicationParams{class=org.apache.cassandra.locator.LocalStrategy}}
INFO [main] 2023-06-08 07:05:51,316 ColumnFamilyStore.java:385 - Initializing system_schema.keyspaces
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,320 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_schema/keyspaces-abac5682dea631c5b535b3d6cffd0fb6/nb-1-big (0.233KiB)
INFO [main] 2023-06-08 07:05:51,326 ColumnFamilyStore.java:385 - Initializing system_schema.tables
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,329 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_schema/tables-afddfb9dbc1e30688056eed6c302ba09/nb-1-big (3.242KiB)
INFO [main] 2023-06-08 07:05:51,335 ColumnFamilyStore.java:385 - Initializing system_schema.columns
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,338 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_schema/columns-24101c25a2ae3af787c1b40ee1aca33f/nb-1-big (6.778KiB)
INFO [main] 2023-06-08 07:05:51,343 ColumnFamilyStore.java:385 - Initializing system_schema.triggers
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,347 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_schema/triggers-4df70b666b05325195a132b54005fd48/nb-1-big (0.050KiB)
INFO [main] 2023-06-08 07:05:51,354 ColumnFamilyStore.java:385 - Initializing system_schema.dropped_columns
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,356 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_schema/dropped_columns-5e7583b5f3f43af19a39b7e1d6f5f11f/nb-1-big (0.096KiB)
INFO [main] 2023-06-08 07:05:51,362 ColumnFamilyStore.java:385 - Initializing system_schema.views
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,365 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_schema/views-9786ac1cdd583201a7cdad556410c985/nb-1-big (0.050KiB)
INFO [main] 2023-06-08 07:05:51,372 ColumnFamilyStore.java:385 - Initializing system_schema.types
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,375 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_schema/types-5a8b1ca866023f77a0459273d308917a/nb-1-big (0.050KiB)
INFO [main] 2023-06-08 07:05:51,381 ColumnFamilyStore.java:385 - Initializing system_schema.functions
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,384 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_schema/functions-96489b7980be3e14a70166a0b9159450/nb-1-big (0.050KiB)
INFO [main] 2023-06-08 07:05:51,391 ColumnFamilyStore.java:385 - Initializing system_schema.aggregates
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,394 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_schema/aggregates-924c55872e3a345bb10c12f37c1ba895/nb-1-big (0.050KiB)
INFO [main] 2023-06-08 07:05:51,400 ColumnFamilyStore.java:385 - Initializing system_schema.indexes
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,403 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_schema/indexes-0feb57ac311f382fba6d9024d305702f/nb-1-big (0.050KiB)
INFO [main] 2023-06-08 07:05:51,452 SystemKeyspaceMigrator40.java:129 - system.peer_events_v2 table was empty, migrating legacy system.peer_events to system.peer_events_v2
INFO [main] 2023-06-08 07:05:51,462 SystemKeyspaceMigrator40.java:152 - Migrated 0 rows from legacy system.peer_events to system.peer_events_v2
INFO [main] 2023-06-08 07:05:51,462 SystemKeyspaceMigrator40.java:162 - system.transferred_ranges_v2 table was empty, migrating legacy system.transferred_ranges to system.transferred_ranges_v2
INFO [main] 2023-06-08 07:05:51,464 SystemKeyspaceMigrator40.java:190 - Migrated 0 rows from legacy system.transferred_ranges to system.transferred_ranges_v2
INFO [main] 2023-06-08 07:05:51,464 StorageService.java:837 - Populating token metadata from system tables
INFO [main] 2023-06-08 07:05:51,501 StorageService.java:831 - Token metadata: Normal Tokens:
/100.96.118.90:7000:[-8941284778233163419, -8276776076055905344, -7614644569753664108, -6552292170083312568, -5414165630693417576, -3582249901738334892, -2867954437340673899, -1750715986468976306, 1321007738220589833, 2953488702224853884, 3586472525697988007, 4564363382091476671, 5711687090447153379, 6378617839368094215, 7436174524058142773, 8678612838738274926]
/100.119.214.64:7000:[-7996355661445742154, -6924855045105709341, -5907003640363282325, -5089331707750931531, -4013575826525351991, -3277660133814458350, -2198287326366856693, -954767320686264720, 12596922392270778, 1602601474906169416, 3221624770603212713, 4199770223119326789, 5978404523942913917, 7074446424177852206, 8165743534870064465, 9010120182361226223]
/100.124.97.107:7000:[-8636795220687195110, -7378374629543542076, -6314033639770478679, -4494029338790532280, -2616965009277546251, -1448010086098531872, -398886285769340784, 537026887022174635, 952664546593814515, 2164344893265795660, 2561667745614508451, 3820088461559951539, 4854389108235355906, 5280675609516485296, 6630877436091163179, 7688253953020121396]
/100.124.109.40:7000:[-8789039999460179265, -7151614837324625709, -5660584635528349951, -4791680523270731906, -3797912864131843442, -2407626167822201472, -1201388703392398296, -193144681688535003, 274811904707222706, 1136836142407202174, 1883473184085982538, 2363006319440152055, 4382066802605401730, 5067532358875920601, 5845045807195033648, 8422178186804169695]

INFO [main] 2023-06-08 07:05:51,592 Keyspace.java:386 - Creating replication strategy system_auth params KeyspaceParams{durable_writes=true, replication=ReplicationParams{class=org.apache.cassandra.locator.NetworkTopologyStrategy, dc1=3}}
INFO [main] 2023-06-08 07:05:51,593 NetworkTopologyStrategy.java:88 - Configured datacenter replicas are dc1:rf(3)
INFO [main] 2023-06-08 07:05:51,595 ColumnFamilyStore.java:385 - Initializing system_auth.network_permissions
INFO [main] 2023-06-08 07:05:51,607 ColumnFamilyStore.java:385 - Initializing system_auth.resource_role_permissons_index
INFO [main] 2023-06-08 07:05:51,612 ColumnFamilyStore.java:385 - Initializing system_auth.role_members
INFO [main] 2023-06-08 07:05:51,617 ColumnFamilyStore.java:385 - Initializing system_auth.role_permissions
INFO [main] 2023-06-08 07:05:51,621 ColumnFamilyStore.java:385 - Initializing system_auth.roles
INFO [SSTableBatchOpen:2] 2023-06-08 07:05:51,624 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_auth/roles-5bc52802de2535edaeab188eecebb090/nb-1-big (0.039KiB)
INFO [SSTableBatchOpen:1] 2023-06-08 07:05:51,624 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_auth/roles-5bc52802de2535edaeab188eecebb090/nb-2-big (0.124KiB)
INFO [SSTableBatchOpen:3] 2023-06-08 07:05:51,624 SSTableReaderBuilder.java:351 - Opening /var/lib/cassandra/data/system_auth/roles-5bc52802de2535edaeab188eecebb090/nb-3-big (0.124KiB)
INFO [main] 2023-06-08 07:05:51,632 Keyspace.java:386 - Creating replication strategy system_distributed params KeyspaceParams{durable_writes=true, replication=ReplicationParams{class=org.apache.cassandra.locator.NetworkTopologyStrategy, dc1=3}}
INFO [main] 2023-06-08 07:05:51,632 NetworkTopologyStrategy.java:88 - Configured datacenter replicas are dc1:rf(3)
INFO [main] 2023-06-08 07:05:51,633 ColumnFamilyStore.java:385 - Initializing system_distributed.parent_repair_history
INFO [main] 2023-06-08 07:05:51,637 ColumnFamilyStore.java:385 - Initializing system_distributed.repair_history
INFO [main] 2023-06-08 07:05:51,641 ColumnFamilyStore.java:385 - Initializing system_distributed.view_build_status
INFO [main] 2023-06-08 07:05:51,643 Keyspace.java:386 - Creating replication strategy system_traces params KeyspaceParams{durable_writes=true, replication=ReplicationParams{class=org.apache.cassandra.locator.NetworkTopologyStrategy, dc1=3}}
INFO [main] 2023-06-08 07:05:51,643 NetworkTopologyStrategy.java:88 - Configured datacenter replicas are dc1:rf(3)
INFO [main] 2023-06-08 07:05:51,644 ColumnFamilyStore.java:385 - Initializing system_traces.events
INFO [main] 2023-06-08 07:05:51,647 ColumnFamilyStore.java:385 - Initializing system_traces.sessions
INFO [main] 2023-06-08 07:05:51,658 AutoSavingCache.java:177 - Completed loading (8 ms; 10 keys) KeyCache cache
INFO [main] 2023-06-08 07:05:51,675 CommitLog.java:173 - Replaying /opt/cassandra/data/commitlog/CommitLog-7-1686206905512.log
WARN [main] 2023-06-08 07:05:51,685 CommitLogReplayer.java:305 - Origin of 3 sstables is unknown or doesn't match the local node; commitLogIntervals for them were ignored
INFO [main] 2023-06-08 07:05:51,693 CommitLogReader.java:256 - Finished reading /opt/cassandra/data/commitlog/CommitLog-7-1686206905512.log
INFO [main] 2023-06-08 07:05:51,696 CommitLog.java:175 - Log replay complete, 0 replayed mutations
INFO [main] 2023-06-08 07:05:51,696 StorageService.java:837 - Populating token metadata from system tables
INFO [main] 2023-06-08 07:05:51,701 StorageService.java:831 - Token metadata: Normal Tokens:
/100.96.118.90:7000:[-8941284778233163419, -8276776076055905344, -7614644569753664108, -6552292170083312568, -5414165630693417576, -3582249901738334892, -2867954437340673899, -1750715986468976306, 1321007738220589833, 2953488702224853884, 3586472525697988007, 4564363382091476671, 5711687090447153379, 6378617839368094215, 7436174524058142773, 8678612838738274926]
/100.119.214.64:7000:[-7996355661445742154, -6924855045105709341, -5907003640363282325, -5089331707750931531, -4013575826525351991, -3277660133814458350, -2198287326366856693, -954767320686264720, 12596922392270778, 1602601474906169416, 3221624770603212713, 4199770223119326789, 5978404523942913917, 7074446424177852206, 8165743534870064465, 9010120182361226223]
/100.124.97.107:7000:[-8636795220687195110, -7378374629543542076, -6314033639770478679, -4494029338790532280, -2616965009277546251, -1448010086098531872, -398886285769340784, 537026887022174635, 952664546593814515, 2164344893265795660, 2561667745614508451, 3820088461559951539, 4854389108235355906, 5280675609516485296, 6630877436091163179, 7688253953020121396]
/100.124.109.40:7000:[-8789039999460179265, -7151614837324625709, -5660584635528349951, -4791680523270731906, -3797912864131843442, -2407626167822201472, -1201388703392398296, -193144681688535003, 274811904707222706, 1136836142407202174, 1883473184085982538, 2363006319440152055, 4382066802605401730, 5067532358875920601, 5845045807195033648, 8422178186804169695]

INFO [main] 2023-06-08 07:05:51,761 ColumnFamilyStore.java:2252 - Truncating system.size_estimates
INFO [main] 2023-06-08 07:05:51,790 ColumnFamilyStore.java:2289 - Truncating system.size_estimates with truncatedAt=1686207951768
INFO [main] 2023-06-08 07:05:51,798 ColumnFamilyStore.java:878 - Enqueuing flush of local: 2.205KiB (0%) on-heap, 0.000KiB (0%) off-heap
INFO [PerDiskMemtableFlushWriter_0:1] 2023-06-08 07:05:51,831 Memtable.java:469 - Writing Memtable-local@2040137849(0.431KiB serialized bytes, 3 ops, 0%/0% of on/off-heap limit), flushed range = (min(-9223372036854775808), max(9223372036854775807)]
INFO [PerDiskMemtableFlushWriter_0:1] 2023-06-08 07:05:51,832 Memtable.java:498 - Completed flushing /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-8-big-Data.db (0.226KiB) for commitlog position CommitLogPosition(segmentId=1686207949124, position=31193)
INFO [MemtableFlushWriter:2] 2023-06-08 07:05:51,860 LogTransaction.java:240 - Unfinished transaction log, deleting /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb_txn_flush_e7598380-05ca-11ee-89ed-bd5ee214825f.log
INFO [main] 2023-06-08 07:05:51,886 ColumnFamilyStore.java:2316 - Truncate of system.size_estimates is complete
INFO [main] 2023-06-08 07:05:51,886 ColumnFamilyStore.java:2252 - Truncating system.table_estimates
INFO [main] 2023-06-08 07:05:51,887 ColumnFamilyStore.java:2289 - Truncating system.table_estimates with truncatedAt=1686207951887
INFO [main] 2023-06-08 07:05:51,889 ColumnFamilyStore.java:878 - Enqueuing flush of local: 0.576KiB (0%) on-heap, 0.000KiB (0%) off-heap
INFO [PerDiskMemtableFlushWriter_0:2] 2023-06-08 07:05:51,894 Memtable.java:469 - Writing Memtable-local@1583644326(0.091KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (min(-9223372036854775808), max(9223372036854775807)]
INFO [PerDiskMemtableFlushWriter_0:2] 2023-06-08 07:05:51,895 Memtable.java:498 - Completed flushing /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-9-big-Data.db (0.063KiB) for commitlog position CommitLogPosition(segmentId=1686207949124, position=31304)
INFO [MemtableFlushWriter:2] 2023-06-08 07:05:51,908 LogTransaction.java:240 - Unfinished transaction log, deleting /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb_txn_flush_e7671810-05ca-11ee-89ed-bd5ee214825f.log
INFO [main] 2023-06-08 07:05:51,914 ColumnFamilyStore.java:2316 - Truncate of system.table_estimates is complete
INFO [main] 2023-06-08 07:05:51,917 QueryProcessor.java:167 - Preloaded 0 prepared statements
INFO [main] 2023-06-08 07:05:51,917 StorageService.java:735 - Cassandra version: 4.0.3
INFO [main] 2023-06-08 07:05:51,917 StorageService.java:736 - CQL version: 3.4.5
INFO [main] 2023-06-08 07:05:51,917 StorageService.java:737 - Native protocol supported versions: 3/v3, 4/v4, 5/v5, 6/v6-beta (default: 5/v5)
INFO [main] 2023-06-08 07:05:51,945 IndexSummaryManager.java:84 - Initializing index summary manager with a memory pool size of 51 MB and a resize interval of 60 minutes
INFO [main] 2023-06-08 07:05:51,946 StorageService.java:754 - Loading persisted ring state
INFO [main] 2023-06-08 07:05:51,946 StorageService.java:837 - Populating token metadata from system tables
INFO [GossipStage:1] 2023-06-08 07:05:51,957 Gossiper.java:1969 - Adding /100.124.97.107:7000 as there was no previous epState; new state is EndpointState: HeartBeatState = HeartBeat: generation = 0, version = -1, AppStateMap = {}
INFO [GossipStage:1] 2023-06-08 07:05:51,958 Gossiper.java:1969 - Adding /100.96.118.90:7000 as there was no previous epState; new state is EndpointState: HeartBeatState = HeartBeat: generation = 0, version = -1, AppStateMap = {}
INFO [GossipStage:1] 2023-06-08 07:05:51,958 Gossiper.java:1969 - Adding /100.119.214.64:7000 as there was no previous epState; new state is EndpointState: HeartBeatState = HeartBeat: generation = 0, version = -1, AppStateMap = {}
INFO [main] 2023-06-08 07:05:52,216 InboundConnectionInitiator.java:127 - Listening on address: (/100.124.109.40:7000), nic: eth0, encryption: unencrypted
WARN [main] 2023-06-08 07:05:52,282 K8SeedProvider4x.java:58 - Seed provider couldn't lookup host kiran1-cassandra-int-dc1-additional-seed-service
WARN [main] 2023-06-08 07:05:52,286 K8SeedProvider4x.java:58 - Seed provider couldn't lookup host kiran1-cassandra-int-dc1-additional-seed-service
INFO [Messaging-EventLoop-3-6] 2023-06-08 07:05:52,372 OutboundConnection.java:1150 - /100.124.109.40:7000(/100.124.109.40:39114)->kiran1-cassandra-int-seed-service/100.119.214.64:7000-URGENT_MESSAGES-9123e845 successfully connected, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-3] 2023-06-08 07:05:52,372 OutboundConnection.java:1150 - /100.124.109.40:7000(/100.124.109.40:47448)->kiran1-cassandra-int-seed-service/100.96.118.90:7000-URGENT_MESSAGES-c0033dbb successfully connected, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-9] 2023-06-08 07:05:52,372 OutboundConnection.java:1150 - /100.124.109.40:7000(/100.124.109.40:42090)->kiran1-cassandra-int-seed-service/100.124.97.107:7000-URGENT_MESSAGES-fc30b92f successfully connected, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-12] 2023-06-08 07:05:52,402 InboundConnectionInitiator.java:464 - /100.96.118.90:7000(/100.96.118.90:39790)->/100.124.109.40:7000-URGENT_MESSAGES-3afba79c messaging connection established, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-11] 2023-06-08 07:05:52,402 InboundConnectionInitiator.java:464 - /100.119.214.64:7000(/100.119.214.64:52276)->/100.124.109.40:7000-URGENT_MESSAGES-7ef8a76c messaging connection established, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-10] 2023-06-08 07:05:52,402 InboundConnectionInitiator.java:464 - /100.124.97.107:7000(/100.124.97.107:36300)->/100.124.109.40:7000-URGENT_MESSAGES-5f76972e messaging connection established, version = 12, framing = LZ4, encryption = unencrypted
INFO [main] 2023-06-08 07:05:53,325 StorageService.java:959 - Starting up server gossip
INFO [main] 2023-06-08 07:05:53,329 ColumnFamilyStore.java:878 - Enqueuing flush of local: 0.459KiB (0%) on-heap, 0.000KiB (0%) off-heap
INFO [PerDiskMemtableFlushWriter_0:1] 2023-06-08 07:05:53,335 Memtable.java:469 - Writing Memtable-local@1375811256(0.048KiB serialized bytes, 1 ops, 0%/0% of on/off-heap limit), flushed range = (min(-9223372036854775808), max(9223372036854775807)]
INFO [PerDiskMemtableFlushWriter_0:1] 2023-06-08 07:05:53,335 Memtable.java:498 - Completed flushing /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-10-big-Data.db (0.028KiB) for commitlog position CommitLogPosition(segmentId=1686207949124, position=31385)
INFO [MemtableFlushWriter:1] 2023-06-08 07:05:53,350 LogTransaction.java:240 - Unfinished transaction log, deleting /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb_txn_flush_e842f920-05ca-11ee-89ed-bd5ee214825f.log
WARN [main] 2023-06-08 07:05:53,356 K8SeedProvider4x.java:58 - Seed provider couldn't lookup host kiran1-cassandra-int-dc1-additional-seed-service
INFO [main] 2023-06-08 07:05:53,359 TokenMetadata.java:511 - Updating topology for /100.124.109.40:7000
INFO [main] 2023-06-08 07:05:53,359 TokenMetadata.java:511 - Updating topology for /100.124.109.40:7000
WARN [main] 2023-06-08 07:05:53,377 K8SeedProvider4x.java:58 - Seed provider couldn't lookup host kiran1-cassandra-int-dc1-additional-seed-service
INFO [main] 2023-06-08 07:05:53,379 StorageService.java:1071 - Using saved tokens [-1201388703392398296, -193144681688535003, -2407626167822201472, -3797912864131843442, -4791680523270731906, -5660584635528349951, -7151614837324625709, -8789039999460179265, 1136836142407202174, 1883473184085982538, 2363006319440152055, 274811904707222706, 4382066802605401730, 5067532358875920601, 5845045807195033648, 8422178186804169695]
INFO [main] 2023-06-08 07:05:53,404 StorageService.java:1633 - JOINING: Finish joining ring
INFO [main] 2023-06-08 07:05:53,409 StorageService.java:2784 - Node /100.124.109.40:7000 state jump to NORMAL
INFO [main] 2023-06-08 07:05:53,412 StorageService.java:2784 - Node /100.124.109.40:7000 state jump to NORMAL
INFO [main] 2023-06-08 07:05:53,413 Gossiper.java:2214 - Waiting for gossip to settle...
INFO [ScheduledTasks:1] 2023-06-08 07:05:53,724 TokenMetadata.java:531 - Updating topology for all endpoints that have changed
INFO [GossipStage:1] 2023-06-08 07:05:54,365 Gossiper.java:1362 - Node /100.96.118.90:7000 has restarted, now UP
INFO [GossipStage:1] 2023-06-08 07:05:54,366 StorageService.java:2784 - Node /100.96.118.90:7000 state jump to NORMAL
INFO [GossipStage:1] 2023-06-08 07:05:54,378 TokenMetadata.java:511 - Updating topology for /100.96.118.90:7000
INFO [GossipStage:1] 2023-06-08 07:05:54,379 TokenMetadata.java:511 - Updating topology for /100.96.118.90:7000
INFO [GossipStage:1] 2023-06-08 07:05:54,382 Gossiper.java:1362 - Node /100.124.97.107:7000 has restarted, now UP
INFO [GossipStage:1] 2023-06-08 07:05:54,382 StorageService.java:2784 - Node /100.124.97.107:7000 state jump to NORMAL
INFO [GossipStage:1] 2023-06-08 07:05:54,387 TokenMetadata.java:511 - Updating topology for /100.124.97.107:7000
INFO [GossipStage:1] 2023-06-08 07:05:54,388 TokenMetadata.java:511 - Updating topology for /100.124.97.107:7000
INFO [GossipStage:1] 2023-06-08 07:05:54,391 Gossiper.java:1362 - Node /100.119.214.64:7000 has restarted, now UP
INFO [GossipStage:1] 2023-06-08 07:05:54,392 StorageService.java:2784 - Node /100.119.214.64:7000 state jump to NORMAL
INFO [GossipStage:1] 2023-06-08 07:05:54,396 TokenMetadata.java:511 - Updating topology for /100.119.214.64:7000
INFO [GossipStage:1] 2023-06-08 07:05:54,397 TokenMetadata.java:511 - Updating topology for /100.119.214.64:7000
INFO [GossipStage:1] 2023-06-08 07:05:54,403 Gossiper.java:1312 - InetAddress /100.96.118.90:7000 is now UP
INFO [GossipStage:1] 2023-06-08 07:05:54,403 Gossiper.java:1312 - InetAddress /100.124.97.107:7000 is now UP
INFO [GossipStage:1] 2023-06-08 07:05:54,403 Gossiper.java:1312 - InetAddress /100.119.214.64:7000 is now UP
INFO [GossipStage:1] 2023-06-08 07:05:54,404 Gossiper.java:1312 - InetAddress /100.96.118.90:7000 is now UP
INFO [GossipStage:1] 2023-06-08 07:05:54,404 Gossiper.java:1312 - InetAddress /100.119.214.64:7000 is now UP
INFO [GossipStage:1] 2023-06-08 07:05:54,432 Gossiper.java:1312 - InetAddress /100.124.97.107:7000 is now UP
INFO [GossipStage:1] 2023-06-08 07:05:56,581 Gossiper.java:1364 - Node /100.124.109.22:7000 is now part of the cluster
WARN [GossipStage:1] 2023-06-08 07:05:56,586 StorageService.java:2824 - Not updating host ID 1c137489-ed6f-4400-adb4-31435832d8d4 for /100.124.109.22:7000 because it's mine
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -1201388703392398296. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -193144681688535003. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -2407626167822201472. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -3797912864131843442. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -4791680523270731906. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -5660584635528349951. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -7151614837324625709. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -8789039999460179265. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 1136836142407202174. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 1883473184085982538. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 2363006319440152055. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 274811904707222706. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 4382066802605401730. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 5067532358875920601. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 5845045807195033648. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,587 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 8422178186804169695. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,591 ColumnFamilyStore.java:878 - Enqueuing flush of peers: 12.971KiB (0%) on-heap, 0.000KiB (0%) off-heap
INFO [GossipStage:1] 2023-06-08 07:05:56,592 ColumnFamilyStore.java:878 - Enqueuing flush of peers_v2: 13.193KiB (0%) on-heap, 0.000KiB (0%) off-heap
INFO [PerDiskMemtableFlushWriter_0:2] 2023-06-08 07:05:56,599 Memtable.java:469 - Writing Memtable-peers@1352895258(2.380KiB serialized bytes, 47 ops, 0%/0% of on/off-heap limit), flushed range = (min(-9223372036854775808), max(9223372036854775807)]
INFO [PerDiskMemtableFlushWriter_0:2] 2023-06-08 07:05:56,600 Memtable.java:498 - Completed flushing /var/lib/cassandra/data/system/peers-37f71aca7dc2383ba70672528af04d4f/nb-2-big-Data.db (1.451KiB) for commitlog position CommitLogPosition(segmentId=1686207949124, position=40452)
INFO [PerDiskMemtableFlushWriter_0:1] 2023-06-08 07:05:56,600 Memtable.java:469 - Writing Memtable-peers_v2@964924550(2.311KiB serialized bytes, 47 ops, 0%/0% of on/off-heap limit), flushed range = (min(-9223372036854775808), max(9223372036854775807)]
INFO [PerDiskMemtableFlushWriter_0:1] 2023-06-08 07:05:56,601 Memtable.java:498 - Completed flushing /var/lib/cassandra/data/system/peers_v2-c4325fbb8e5e3bafbd070f9250ed818e/nb-2-big-Data.db (1.495KiB) for commitlog position CommitLogPosition(segmentId=1686207949124, position=40452)
INFO [MemtableFlushWriter:2] 2023-06-08 07:05:56,623 LogTransaction.java:240 - Unfinished transaction log, deleting /var/lib/cassandra/data/system/peers-37f71aca7dc2383ba70672528af04d4f/nb_txn_flush_ea34b700-05ca-11ee-89ed-bd5ee214825f.log
INFO [MemtableFlushWriter:1] 2023-06-08 07:05:56,624 LogTransaction.java:240 - Unfinished transaction log, deleting /var/lib/cassandra/data/system/peers_v2-c4325fbb8e5e3bafbd070f9250ed818e/nb_txn_flush_ea34de10-05ca-11ee-89ed-bd5ee214825f.log
INFO [GossipStage:1] 2023-06-08 07:05:56,626 Gossiper.java:1328 - InetAddress /100.124.109.22:7000 is now DOWN
WARN [GossipStage:1] 2023-06-08 07:05:56,630 StorageService.java:2824 - Not updating host ID 1c137489-ed6f-4400-adb4-31435832d8d4 for /100.124.109.22:7000 because it's mine
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -1201388703392398296. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -193144681688535003. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -2407626167822201472. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -3797912864131843442. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -4791680523270731906. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -5660584635528349951. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -7151614837324625709. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token -8789039999460179265. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 1136836142407202174. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 1883473184085982538. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 2363006319440152055. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 274811904707222706. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 4382066802605401730. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 5067532358875920601. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 5845045807195033648. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 8422178186804169695. Ignoring /100.124.109.22:7000
INFO [GossipStage:1] 2023-06-08 07:05:56,633 ColumnFamilyStore.java:878 - Enqueuing flush of peers: 1.140KiB (0%) on-heap, 0.000KiB (0%) off-heap
INFO [GossipStage:1] 2023-06-08 07:05:56,633 ColumnFamilyStore.java:878 - Enqueuing flush of peers_v2: 0.663KiB (0%) on-heap, 0.000KiB (0%) off-heap
INFO [PerDiskMemtableFlushWriter_0:2] 2023-06-08 07:05:56,639 Memtable.java:469 - Writing Memtable-peers@1419515350(0.172KiB serialized bytes, 7 ops, 0%/0% of on/off-heap limit), flushed range = (min(-9223372036854775808), max(9223372036854775807)]
INFO [PerDiskMemtableFlushWriter_0:2] 2023-06-08 07:05:56,639 Memtable.java:498 - Completed flushing /var/lib/cassandra/data/system/peers-37f71aca7dc2383ba70672528af04d4f/nb-3-big-Data.db (0.019KiB) for commitlog position CommitLogPosition(segmentId=1686207949124, position=41458)
INFO [PerDiskMemtableFlushWriter_0:1] 2023-06-08 07:05:56,640 Memtable.java:469 - Writing Memtable-peers_v2@1480539200(0.032KiB serialized bytes, 7 ops, 0%/0% of on/off-heap limit), flushed range = (min(-9223372036854775808), max(9223372036854775807)]
INFO [PerDiskMemtableFlushWriter_0:1] 2023-06-08 07:05:56,640 Memtable.java:498 - Completed flushing /var/lib/cassandra/data/system/peers_v2-c4325fbb8e5e3bafbd070f9250ed818e/nb-3-big-Data.db (0.030KiB) for commitlog position CommitLogPosition(segmentId=1686207949124, position=41458)
INFO [MemtableFlushWriter:2] 2023-06-08 07:05:56,653 LogTransaction.java:240 - Unfinished transaction log, deleting /var/lib/cassandra/data/system/peers-37f71aca7dc2383ba70672528af04d4f/nb_txn_flush_ea3af890-05ca-11ee-89ed-bd5ee214825f.log
INFO [MemtableFlushWriter:1] 2023-06-08 07:05:56,656 LogTransaction.java:240 - Unfinished transaction log, deleting /var/lib/cassandra/data/system/peers_v2-c4325fbb8e5e3bafbd070f9250ed818e/nb_txn_flush_ea3b1fa0-05ca-11ee-89ed-bd5ee214825f.log
INFO [Messaging-EventLoop-3-15] 2023-06-08 07:05:58,589 NoSpamLogger.java:92 - /100.124.109.40:7000->/100.124.109.22:7000-URGENT_MESSAGES-[no-channel] failed to connect
io.netty.channel.ConnectTimeoutException: connection timed out: /100.124.109.22:7000
at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe$2.run(AbstractEpollChannel.java:576)
at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98)
at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:170)
at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:164)
at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:472)
at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:384)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:829)
INFO [main] 2023-06-08 07:06:01,414 Gossiper.java:2245 - No gossip backlog; proceeding
INFO [main] 2023-06-08 07:06:01,418 AuthCache.java:215 - (Re)initializing CredentialsCache (validity period/update interval/max entries) (3600000/3600000/1000)
INFO [main] 2023-06-08 07:06:01,428 StartupClusterConnectivityChecker.java:111 - Blocking coordination until only a single peer is DOWN in the local datacenter, timeout=10s
INFO [Messaging-EventLoop-3-8] 2023-06-08 07:06:01,436 OutboundConnection.java:1150 - /100.124.109.40:7000(/100.124.109.40:44272)->kiran1-cassandra-int-seed-service/100.124.97.107:7000-LARGE_MESSAGES-ee77aa8b successfully connected, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-7] 2023-06-08 07:06:01,436 OutboundConnection.java:1150 - /100.124.109.40:7000(/100.124.109.40:44268)->kiran1-cassandra-int-seed-service/100.124.97.107:7000-SMALL_MESSAGES-cec8964c successfully connected, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-4] 2023-06-08 07:06:01,436 OutboundConnection.java:1150 - /100.124.109.40:7000(/100.124.109.40:45584)->kiran1-cassandra-int-seed-service/100.119.214.64:7000-SMALL_MESSAGES-57f0d6a5 successfully connected, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-2] 2023-06-08 07:06:01,436 OutboundConnection.java:1150 - /100.124.109.40:7000(/100.124.109.40:40952)->kiran1-cassandra-int-seed-service/100.96.118.90:7000-LARGE_MESSAGES-748da860 successfully connected, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-1] 2023-06-08 07:06:01,436 OutboundConnection.java:1150 - /100.124.109.40:7000(/100.124.109.40:40942)->kiran1-cassandra-int-seed-service/100.96.118.90:7000-SMALL_MESSAGES-7be8429f successfully connected, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-5] 2023-06-08 07:06:01,437 OutboundConnection.java:1150 - /100.124.109.40:7000(/100.124.109.40:45600)->kiran1-cassandra-int-seed-service/100.119.214.64:7000-LARGE_MESSAGES-8f49d233 successfully connected, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-16] 2023-06-08 07:06:01,439 InboundConnectionInitiator.java:464 - /100.124.97.107:7000(/100.124.97.107:42850)->/100.124.109.40:7000-SMALL_MESSAGES-e246d8e4 messaging connection established, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-17] 2023-06-08 07:06:01,439 InboundConnectionInitiator.java:464 - /100.119.214.64:7000(/100.119.214.64:55940)->/100.124.109.40:7000-SMALL_MESSAGES-d0ed7bb9 messaging connection established, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-18] 2023-06-08 07:06:01,440 InboundConnectionInitiator.java:464 - /100.96.118.90:7000(/100.96.118.90:35392)->/100.124.109.40:7000-SMALL_MESSAGES-ec557cc4 messaging connection established, version = 12, framing = LZ4, encryption = unencrypted
INFO [CompactionExecutor:2] 2023-06-08 07:06:01,441 CompactionTask.java:150 - Compacting (ed178ba0-05ca-11ee-89ed-bd5ee214825f) [/var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-7-big-Data.db:level=0, /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-8-big-Data.db:level=0, /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-9-big-Data.db:level=0, /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-10-big-Data.db:level=0, ]
INFO [Messaging-EventLoop-3-19] 2023-06-08 07:06:01,442 InboundConnectionInitiator.java:464 - /100.124.97.107:7000(/100.124.97.107:42858)->/100.124.109.40:7000-LARGE_MESSAGES-75039b82 messaging connection established, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-21] 2023-06-08 07:06:01,445 InboundConnectionInitiator.java:464 - /100.96.118.90:7000(/100.96.118.90:35400)->/100.124.109.40:7000-LARGE_MESSAGES-68a51da5 messaging connection established, version = 12, framing = LZ4, encryption = unencrypted
INFO [Messaging-EventLoop-3-20] 2023-06-08 07:06:01,445 InboundConnectionInitiator.java:464 - /100.119.214.64:7000(/100.119.214.64:55952)->/100.124.109.40:7000-LARGE_MESSAGES-a1403a5f messaging connection established, version = 12, framing = LZ4, encryption = unencrypted
INFO [main] 2023-06-08 07:06:01,446 StartupClusterConnectivityChecker.java:166 - Ensured sufficient healthy connections with [dc1] after 15 milliseconds
INFO [main] 2023-06-08 07:06:01,458 NativeTransportService.java:130 - Using Netty Version: [netty-buffer=netty-buffer-4.1.58.Final.10b03e6, netty-codec=netty-codec-4.1.58.Final.10b03e6, netty-codec-dns=netty-codec-dns-4.1.58.Final.10b03e6, netty-codec-haproxy=netty-codec-haproxy-4.1.58.Final.10b03e6, netty-codec-http=netty-codec-http-4.1.58.Final.10b03e6, netty-codec-http2=netty-codec-http2-4.1.58.Final.10b03e6, netty-codec-memcache=netty-codec-memcache-4.1.58.Final.10b03e6, netty-codec-mqtt=netty-codec-mqtt-4.1.58.Final.10b03e6, netty-codec-redis=netty-codec-redis-4.1.58.Final.10b03e6, netty-codec-smtp=netty-codec-smtp-4.1.58.Final.10b03e6, netty-codec-socks=netty-codec-socks-4.1.58.Final.10b03e6, netty-codec-stomp=netty-codec-stomp-4.1.58.Final.10b03e6, netty-codec-xml=netty-codec-xml-4.1.58.Final.10b03e6, netty-common=netty-common-4.1.58.Final.10b03e6, netty-handler=netty-handler-4.1.60.Final.eef26e8 (repository: dirty), netty-handler-proxy=netty-handler-proxy-4.1.58.Final.10b03e6, netty-resolver=netty-resolver-4.1.58.Final.10b03e6, netty-resolver-dns=netty-resolver-dns-4.1.58.Final.10b03e6, netty-resolver-dns-native-macos=netty-resolver-dns-native-macos-4.1.58.Final.10b03e65f1, netty-transport=netty-transport-4.1.58.Final.10b03e6, netty-transport-native-epoll=netty-transport-native-epoll-4.1.58.Final.10b03e6, netty-transport-native-kqueue=netty-transport-native-kqueue-4.1.58.Final.10b03e65f1, netty-transport-native-unix-common=netty-transport-native-unix-common-4.1.58.Final.10b03e6, netty-transport-rxtx=netty-transport-rxtx-4.1.58.Final.10b03e6, netty-transport-sctp=netty-transport-sctp-4.1.58.Final.10b03e6, netty-transport-udt=netty-transport-udt-4.1.58.Final.10b03e6]
INFO [main] 2023-06-08 07:06:01,516 NativeTransportService.java:68 - Netty using native Epoll event loop
INFO [CompactionExecutor:2] 2023-06-08 07:06:01,529 CompactionTask.java:241 - Compacted (ed178ba0-05ca-11ee-89ed-bd5ee214825f) 4 sstables to [/var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-11-big,] to level=0. 0.974KiB to 0.671KiB (~68% of original) in 85ms. Read Throughput = 11.397KiB/s, Write Throughput = 7.854KiB/s, Row Throughput = ~2/s. 4 total partitions merged to 1. Partition merge counts were {4:1, }
INFO [NonPeriodicTasks:1] 2023-06-08 07:06:01,530 SSTable.java:111 - Deleting sstable: /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-7-big
INFO [NonPeriodicTasks:1] 2023-06-08 07:06:01,531 SSTable.java:111 - Deleting sstable: /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-8-big
INFO [NonPeriodicTasks:1] 2023-06-08 07:06:01,532 SSTable.java:111 - Deleting sstable: /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-9-big
INFO [NonPeriodicTasks:1] 2023-06-08 07:06:01,533 SSTable.java:111 - Deleting sstable: /var/lib/cassandra/data/system/local-7ad54392bcdd35a684174e047860b377/nb-10-big
INFO [main] 2023-06-08 07:06:01,543 PipelineConfigurator.java:124 - Using Netty Version: [netty-buffer=netty-buffer-4.1.58.Final.10b03e6, netty-codec=netty-codec-4.1.58.Final.10b03e6, netty-codec-dns=netty-codec-dns-4.1.58.Final.10b03e6, netty-codec-haproxy=netty-codec-haproxy-4.1.58.Final.10b03e6, netty-codec-http=netty-codec-http-4.1.58.Final.10b03e6, netty-codec-http2=netty-codec-http2-4.1.58.Final.10b03e6, netty-codec-memcache=netty-codec-memcache-4.1.58.Final.10b03e6, netty-codec-mqtt=netty-codec-mqtt-4.1.58.Final.10b03e6, netty-codec-redis=netty-codec-redis-4.1.58.Final.10b03e6, netty-codec-smtp=netty-codec-smtp-4.1.58.Final.10b03e6, netty-codec-socks=netty-codec-socks-4.1.58.Final.10b03e6, netty-codec-stomp=netty-codec-stomp-4.1.58.Final.10b03e6, netty-codec-xml=netty-codec-xml-4.1.58.Final.10b03e6, netty-common=netty-common-4.1.58.Final.10b03e6, netty-handler=netty-handler-4.1.60.Final.eef26e8 (repository: dirty), netty-handler-proxy=netty-handler-proxy-4.1.58.Final.10b03e6, netty-resolver=netty-resolver-4.1.58.Final.10b03e6, netty-resolver-dns=netty-resolver-dns-4.1.58.Final.10b03e6, netty-resolver-dns-native-macos=netty-resolver-dns-native-macos-4.1.58.Final.10b03e65f1, netty-transport=netty-transport-4.1.58.Final.10b03e6, netty-transport-native-epoll=netty-transport-native-epoll-4.1.58.Final.10b03e6, netty-transport-native-kqueue=netty-transport-native-kqueue-4.1.58.Final.10b03e65f1, netty-transport-native-unix-common=netty-transport-native-unix-common-4.1.58.Final.10b03e6, netty-transport-rxtx=netty-transport-rxtx-4.1.58.Final.10b03e6, netty-transport-sctp=netty-transport-sctp-4.1.58.Final.10b03e6, netty-transport-udt=netty-transport-udt-4.1.58.Final.10b03e6]
INFO [main] 2023-06-08 07:06:01,543 PipelineConfigurator.java:125 - Starting listening for CQL clients on /0.0.0.0:9042 (optionally encrypted)...
INFO [main] 2023-06-08 07:06:01,556 CassandraDaemonInterceptor.java:59 - Starting DataStax Metric Collector for Apache Cassandra 0.3.0

INFO [main] 2023-06-08 07:06:01,564 ConfigurationLoader.java:62 - Configuration location: file:/opt/metrics-collector/config/metric-collector.yaml
INFO [main] 2023-06-08 07:06:01,635 CollectdController.java:469 - /opt/metrics-collector/config/collectd.conf.tmpl
INFO [main] 2023-06-08 07:06:01,694 UnixSocketClient.java:381 - Connection to collectd established
INFO [main] 2023-06-08 07:06:02,064 UnixSocketClient.java:579 - Starting metric reporting with 30 sec interval
INFO [main] 2023-06-08 07:06:02,414 CassandraDaemonInterceptor.java:62 - Starting DataStax Management API Agent for Apache Cassandra v0.1
WARN [main] 2023-06-08 07:06:02,476 CassandraDaemonInterceptor.java:101 - Problem starting DataStax Management API for Apache Cassandra
java.lang.NullPointerException: null
at java.base/sun.nio.fs.UnixPath.normalizeAndCheck(UnixPath.java:75)
at java.base/sun.nio.fs.UnixPath.(UnixPath.java:69)
at java.base/sun.nio.fs.UnixFileSystem.getPath(UnixFileSystem.java:279)
at java.base/java.nio.file.Path.of(Path.java:147)
at java.base/java.nio.file.Paths.get(Paths.java:69)
at com.datastax.mgmtapi.interceptors.CassandraDaemonInterceptor.intercept(CassandraDaemonInterceptor.java:70)
at org.apache.cassandra.service.CassandraDaemon.start(CassandraDaemon.java)
at org.apache.cassandra.service.CassandraDaemon.activate(CassandraDaemon.java:780)
at org.apache.cassandra.service.CassandraDaemon.main(CassandraDaemon.java:889)
INFO [main] 2023-06-08 07:06:02,476 CassandraDaemon.java:782 - Startup complete
WARN [Messaging-EventLoop-3-15] 2023-06-08 07:06:06,682 NoSpamLogger.java:95 - /100.124.109.40:7000->/100.124.109.22:7000-URGENT_MESSAGES-[no-channel] dropping message of type ECHO_REQ whose timeout expired before reaching the network
INFO [GossipTasks:1] 2023-06-08 07:06:58,445 Gossiper.java:1057 - FatClient /100.124.109.22:7000 has been silent for 30000ms, removing from gossip
INFO [Messaging-EventLoop-3-15] 2023-06-08 07:10:58,593 NoSpamLogger.java:92 - /100.124.109.40:7000->/100.124.109.22:7000-URGENT_MESSAGES-[no-channel] failed to connect
io.netty.channel.ConnectTimeoutException: connection timed out: /100.124.109.22:7000
at io.netty.channel.epoll.AbstractEpollChannel$AbstractEpollUnsafe$2.run(AbstractEpollChannel.java:576)
at io.netty.util.concurrent.PromiseTask.runTask(PromiseTask.java:98)
at io.netty.util.concurrent.ScheduledFutureTask.run(ScheduledFutureTask.java:170)
at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:164)
at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:472)
at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:384)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:829)`

@burmanm
Copy link
Contributor

burmanm commented Jun 8, 2023

INFO [GossipStage:1] 2023-06-08 07:05:56,631 StorageService.java:2722 - Nodes /100.124.109.22:7000 and /100.124.109.40:7000 have the same token 1883473184085982538. Ignoring /100.124.109.22:7000

That is a massive problem. Are you somehow sharing disks or something between nodes? Or how did the nodes get the same token?

@chandapukiran
Copy link
Author

We use EBS volumes and not sharing any disks with nodes. I can quickly recreate a new cluster and share the logs again

@chandapukiran
Copy link
Author

@burmanm i have created a new cluster and tested it, the result is the same when I use helm to update the size 4, however when I directly update the cassdc object then the process works as expected and within a few mins the pod 4 becomes healthy.

@burmanm
Copy link
Contributor

burmanm commented Jun 9, 2023

What's the helm command you use to update the size?

@chandapukiran
Copy link
Author

chandapukiran commented Jun 9, 2023

I use helm diff upgrade

helm diff upgrade kiran1-cassandra-int ./charts/k8ssandra --color --install -n kiran1-cassandra-int --values ./values/region/values.yaml --values ./values/region/env/values.yaml --values values/region/int/k8sname/values.yaml --values values/region/int/k8s/kiran1-cassandra-int/values.yaml

@burmanm burmanm transferred this issue from k8ssandra/cass-operator Jun 9, 2023
@adejanovski adejanovski added the to-groom Issues in the state 'to-groom' label Jun 9, 2023
@burmanm
Copy link
Contributor

burmanm commented Jun 9, 2023

Hmm, my helm doesn't have helm diff command (or helm upgrade diff) so I wonder what's that doing (would it be possible to get the dry-run to see the output what it modifies?). I transferred the ticket to k8ssandra/k8ssandra as apparently you're still using k8ssandra 1.x installation and not just the cass-operator helm chart.

@chandapukiran
Copy link
Author

chandapukiran commented Jun 9, 2023

the helm diff basically does the dry run and displays what would be changed using the upgrade command and basically, these are the values that have changed.

k8ssandra/templates/cassandra/cassdc.yaml

-   size: 3
-  +   size: 4

-  - "-Dcassandra.system_distributed_replication_per_dc=3"
+   - "-Dcassandra.system_distributed_replication_per_dc=4"

@burmanm
Copy link
Contributor

burmanm commented Jun 9, 2023

That seems to indicate a failure in your Cassandra cluster to get to the replication factor of 4 when you use the Helm command to update. That's to distribute the passwords for authentication purposes.

Difficult to say from Helm chart / operator point of view as the problem is not there, it's something in the cluster itself.

@chandapukiran
Copy link
Author

Thanks @burmanm , i have tried to restart cass-operator and that has restarted the PODs in statefulset fixed the issue

@adejanovski adejanovski added help-wanted Extra attention is needed and removed to-groom Issues in the state 'to-groom' labels Jan 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working help-wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

3 participants