Hi,
I want to install self managed camunda 8 using helm and kubernetes.
I am using minikube and command helm install camunda8 camunda/camunda-platform -f values-minikube.yaml
to install camunda 8. Theese pods where added to kubernetes:
NAME READY STATUS RESTARTS AGE
camunda8-operate-74496fc668-9wcpc 1/1 Running 0 5m52s
camunda8-tasklist-7468b6554c-c9726 1/1 Running 0 5m52s
camunda8-zeebe-0 0/1 Running 0 5m52s
camunda8-zeebe-gateway-577944c78b-vc8pv 1/1 Running 0 5m52s
elasticsearch-master-0 1/1 Running 0 5m52s
After installing Camunda 8 to kubernetes I have issuse with zeebe pod. It ends with errors:
Readiness probe failed: Get “http://172.17.0.8:9600/ready”: dial tcp 172.17.0.8:9600: connect: connection refused
Readiness probe failed: HTTP probe failed with statuscode: 503
Can somebody help me?
I am adding logs descire of zeebe pod and values-minikube.yaml configuration file
values-minikube.yaml
global:
identity:
auth:
# Disable the Identity authentication for local development
# it will fall back to basic-auth: demo/demo as default user
enabled: false
zeebeClusterName: '{{ .Release.Name}}-zeebe'
zeebePort: 26500
# Disable identity as part of the camunda platform core
identity:
enabled: false
optimize:
enabled: false
# Reduce for Zeebe and Gateway the configured replicas and with that the required resources
# to get it running locally
zeebe:
clusterSize: 1
partitionCount: 1
replicationFactor: 1
pvcSize: 10Gi
livenessProbe:
initialDelaySeconds: 10
readinessProbe:
initialDelaySeconds: 10
zeebe-gateway:
replicas: 1
livenessProbe:
initialDelaySeconds: 10
readinessProbe:
initialDelaySeconds: 10
# Configure elastic search to make it running for local development
elasticsearch:
imageTag: 7.17.3
replicas: 1
minimumMasterNodes: 1
# Allow no backup for single node setups
# clusterHealthCheckParams: "wait_for_status=yellow&timeout=10s"
readinessProbe:
initialDelaySeconds: 10
# Allocate smaller chunks of memory per pod.
resources:
requests:
cpu: 1
memory: 1Gi
limits:
cpu: 2
memory: 2Gi
# Request smaller persistent volumes.
volumeClaimTemplate:
accessModes: [ "ReadWriteOnce" ]
storageClassName: "standard"
resources:
requests:
storage: 15Gi
describe
Name: camunda8-zeebe-0
Namespace: default
Priority: 0
Node: camunda8-test/10.50.4.131
Start Time: Wed, 29 Jun 2022 10:48:46 +0200
Labels: app=camunda-platform
app.kubernetes.io/component=zeebe-broker
app.kubernetes.io/instance=camunda8
app.kubernetes.io/managed-by=Helm
app.kubernetes.io/name=zeebe
app.kubernetes.io/part-of=camunda-platform
app.kubernetes.io/version=8.0.0
controller-revision-hash=camunda8-zeebe-66f8758566
helm.sh/chart=zeebe-8.0.11
statefulset.kubernetes.io/pod-name=camunda8-zeebe-0
Annotations: <none>
Status: Running
IP: 172.17.0.5
IPs:
IP: 172.17.0.5
Controlled By: StatefulSet/camunda8-zeebe
Containers:
zeebe:
Container ID: docker://58a7e44e433803060c286cf58d8c80b552bad1d067f66b54970c45b69a1be93d
Image: camunda/zeebe:8.0.0
Image ID: docker-pullable://camunda/zeebe@sha256:2f80bf31f5f11fa94a6c9980836ce68257750b26570347a41fbc3337fc21f1d9
Ports: 9600/TCP, 26501/TCP, 26502/TCP
Host Ports: 0/TCP, 0/TCP, 0/TCP
State: Running
Started: Wed, 29 Jun 2022 10:48:49 +0200
Ready: False
Restart Count: 0
Limits:
cpu: 960m
memory: 1920Mi
Requests:
cpu: 800m
memory: 1200Mi
Readiness: http-get http://:9600/ready delay=0s timeout=1s period=10s #success=1 #failure=3
Environment:
LC_ALL: C.UTF-8
K8S_NAME: camunda8-zeebe-0 (v1:metadata.name)
K8S_SERVICE_NAME: camunda8-zeebe
K8S_NAMESPACE: default (v1:metadata.namespace)
ZEEBE_BROKER_NETWORK_ADVERTISEDHOST: $(K8S_NAME).$(K8S_SERVICE_NAME).$(K8S_NAMESPACE).svc
ZEEBE_BROKER_CLUSTER_INITIALCONTACTPOINTS: $(K8S_SERVICE_NAME)-0.$(K8S_SERVICE_NAME).$(K8S_NAMESPACE).svc:26502,
ZEEBE_BROKER_CLUSTER_CLUSTERNAME: camunda8-zeebe
ZEEBE_LOG_LEVEL: info
ZEEBE_BROKER_CLUSTER_PARTITIONSCOUNT: 1
ZEEBE_BROKER_CLUSTER_CLUSTERSIZE: 1
ZEEBE_BROKER_CLUSTER_REPLICATIONFACTOR: 1
ZEEBE_BROKER_THREADS_CPUTHREADCOUNT: 3
ZEEBE_BROKER_THREADS_IOTHREADCOUNT: 3
ZEEBE_BROKER_GATEWAY_ENABLE: false
ZEEBE_BROKER_EXPORTERS_ELASTICSEARCH_CLASSNAME: io.camunda.zeebe.exporter.ElasticsearchExporter
ZEEBE_BROKER_EXPORTERS_ELASTICSEARCH_ARGS_URL: http://elasticsearch-master:9200
ZEEBE_BROKER_NETWORK_COMMANDAPI_PORT: 26501
ZEEBE_BROKER_NETWORK_INTERNALAPI_PORT: 26502
ZEEBE_BROKER_NETWORK_MONITORINGAPI_PORT: 9600
K8S_POD_NAME: camunda8-zeebe-0 (v1:metadata.name)
JAVA_TOOL_OPTIONS: -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/usr/local/zeebe/data -XX:ErrorFile=/usr/local/zeebe/data/zeebe_error%p.log -XX:+ExitOnOutOfMemoryError
ZEEBE_BROKER_DATA_SNAPSHOTPERIOD: 5m
ZEEBE_BROKER_DATA_DISKUSAGECOMMANDWATERMARK: 0.85
ZEEBE_BROKER_DATA_DISKUSAGEREPLICATIONWATERMARK: 0.87
Mounts:
/exporters from exporters (rw)
/usr/local/bin/startup.sh from config (rw,path="startup.sh")
/usr/local/zeebe/data from data (rw)
/var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-rr5wg (ro)
Conditions:
Type Status
Initialized True
Ready False
ContainersReady False
PodScheduled True
Volumes:
data:
Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace)
ClaimName: data-camunda8-zeebe-0
ReadOnly: false
config:
Type: ConfigMap (a volume populated by a ConfigMap)
Name: camunda8-zeebe
Optional: false
exporters:
Type: EmptyDir (a temporary directory that shares a pod's lifetime)
Medium:
SizeLimit: <unset>
kube-api-access-rr5wg:
Type: Projected (a volume that contains injected data from multiple sources)
TokenExpirationSeconds: 3607
ConfigMapName: kube-root-ca.crt
ConfigMapOptional: <nil>
DownwardAPI: true
QoS Class: Burstable
Node-Selectors: <none>
Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s
node.kubernetes.io/unreachable:NoExecute op=Exists for 300s
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal Scheduled 32s default-scheduler Successfully assigned default/camunda8-zeebe-0 to camunda8-test
Normal Pulled 29s kubelet Container image "camunda/zeebe:8.0.0" already present on machine
Normal Created 29s kubelet Created container zeebe
Normal Started 29s kubelet Started container zeebe
Warning Unhealthy 22s (x4 over 28s) kubelet Readiness probe failed: Get "http://172.17.0.5:9600/ready": dial tcp 172.17.0.5:9600: connect: connection refused
Warning Unhealthy 2s (x2 over 11s) kubelet Readiness probe failed: HTTP probe failed with statuscode: 503
logs
+ export ZEEBE_BROKER_CLUSTER_NODEID=0
+ ZEEBE_BROKER_CLUSTER_NODEID=0
++ ls -A /exporters/
+ '[' '' ']'
+ echo 'No exporters available.'
+ env
No exporters available.
+ exec /usr/local/zeebe/bin/broker
KUBERNETES_SERVICE_PORT_HTTPS=443
ZEEBE_LOG_LEVEL=info
KUBERNETES_SERVICE_PORT=443
ZEEBE_BROKER_NETWORK_MONITORINGAPI_PORT=9600
HOSTNAME=camunda8-zeebe-0
LANGUAGE=en_US:en
ELASTICSEARCH_MASTER_PORT_9300_TCP_PORT=9300
ZEEBE_BROKER_NETWORK_ADVERTISEDHOST=camunda8-zeebe-0.camunda8-zeebe.default.svc
CAMUNDA8_ZEEBE_GATEWAY_SERVICE_HOST=10.105.137.176
CAMUNDA8_OPERATE_PORT_80_TCP_PROTO=tcp
ZEEBE_BROKER_GATEWAY_ENABLE=false
JAVA_HOME=/opt/java/openjdk
ZEEBE_BROKER_EXPORTERS_ELASTICSEARCH_CLASSNAME=io.camunda.zeebe.exporter.ElasticsearchExporter
CAMUNDA8_ZEEBE_GATEWAY_SERVICE_PORT_GATEWAY=26500
CAMUNDA8_ZEEBE_GATEWAY_PORT_26500_TCP_PORT=26500
ZEEBE_BROKER_CLUSTER_NODEID=0
ZEEBE_BROKER_THREADS_IOTHREADCOUNT=3
ELASTICSEARCH_MASTER_SERVICE_PORT_TRANSPORT=9300
ZEEBE_BROKER_CLUSTER_CLUSTERNAME=camunda8-zeebe
PWD=/usr/local/zeebe
ELASTICSEARCH_MASTER_PORT_9200_TCP_PORT=9200
ZEEBE_BROKER_CLUSTER_INITIALCONTACTPOINTS=camunda8-zeebe-0.camunda8-zeebe.default.svc:26502,
CAMUNDA8_TASKLIST_SERVICE_PORT=80
CAMUNDA8_ZEEBE_GATEWAY_PORT_26500_TCP=tcp://10.105.137.176:26500
ELASTICSEARCH_MASTER_PORT_9300_TCP=tcp://10.107.224.10:9300
K8S_NAMESPACE=default
K8S_SERVICE_NAME=camunda8-zeebe
HOME=/root
CAMUNDA8_OPERATE_PORT_80_TCP_PORT=80
LANG=en_US.UTF-8
KUBERNETES_PORT_443_TCP=tcp://10.96.0.1:443
CAMUNDA8_TASKLIST_PORT=tcp://10.106.163.140:80
ZEEBE_BROKER_THREADS_CPUTHREADCOUNT=3
CAMUNDA8_OPERATE_SERVICE_PORT_HTTP=80
CAMUNDA8_ZEEBE_GATEWAY_PORT_9600_TCP_PROTO=tcp
ELASTICSEARCH_MASTER_SERVICE_PORT_HTTP=9200
ELASTICSEARCH_MASTER_PORT_9300_TCP_ADDR=10.107.224.10
CAMUNDA8_TASKLIST_SERVICE_PORT_HTTP=80
K8S_NAME=camunda8-zeebe-0
K8S_POD_NAME=camunda8-zeebe-0
ELASTICSEARCH_MASTER_PORT_9200_TCP_PROTO=tcp
ELASTICSEARCH_MASTER_SERVICE_PORT=9200
ELASTICSEARCH_MASTER_PORT_9200_TCP=tcp://10.107.224.10:9200
CAMUNDA8_TASKLIST_PORT_80_TCP_PROTO=tcp
ELASTICSEARCH_MASTER_PORT_9300_TCP_PROTO=tcp
ZEEBE_STANDALONE_GATEWAY=false
ZEEBE_BROKER_CLUSTER_PARTITIONSCOUNT=1
ZEEBE_BROKER_CLUSTER_CLUSTERSIZE=1
CAMUNDA8_OPERATE_SERVICE_HOST=10.100.77.77
CAMUNDA8_TASKLIST_PORT_80_TCP_PORT=80
CAMUNDA8_ZEEBE_GATEWAY_PORT_26500_TCP_PROTO=tcp
CAMUNDA8_ZEEBE_GATEWAY_PORT_26500_TCP_ADDR=10.105.137.176
CAMUNDA8_TASKLIST_SERVICE_HOST=10.106.163.140
ZEEBE_BROKER_CLUSTER_REPLICATIONFACTOR=1
JAVA_TOOL_OPTIONS=-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/usr/local/zeebe/data -XX:ErrorFile=/usr/local/zeebe/data/zeebe_error%p.log -XX:+ExitOnOutOfMemoryError
ZEEBE_BROKER_DATA_DISKUSAGEREPLICATIONWATERMARK=0.87
CAMUNDA8_ZEEBE_GATEWAY_PORT_9600_TCP=tcp://10.105.137.176:9600
CAMUNDA8_OPERATE_PORT=tcp://10.100.77.77:80
SHLVL=1
CAMUNDA8_ZEEBE_GATEWAY_SERVICE_PORT=9600
CAMUNDA8_ZEEBE_GATEWAY_SERVICE_PORT_HTTP=9600
ZEEBE_BROKER_NETWORK_COMMANDAPI_PORT=26501
KUBERNETES_PORT_443_TCP_PROTO=tcp
CAMUNDA8_OPERATE_SERVICE_PORT=80
KUBERNETES_PORT_443_TCP_ADDR=10.96.0.1
ELASTICSEARCH_MASTER_PORT_9200_TCP_ADDR=10.107.224.10
ZEEBE_BROKER_NETWORK_INTERNALAPI_PORT=26502
ELASTICSEARCH_MASTER_SERVICE_HOST=10.107.224.10
ZB_HOME=/usr/local/zeebe
CAMUNDA8_OPERATE_PORT_80_TCP=tcp://10.100.77.77:80
ELASTICSEARCH_MASTER_PORT=tcp://10.107.224.10:9200
KUBERNETES_SERVICE_HOST=10.96.0.1
CAMUNDA8_TASKLIST_PORT_80_TCP=tcp://10.106.163.140:80
CAMUNDA8_OPERATE_PORT_80_TCP_ADDR=10.100.77.77
LC_ALL=C.UTF-8
KUBERNETES_PORT=tcp://10.96.0.1:443
KUBERNETES_PORT_443_TCP_PORT=443
ZEEBE_BROKER_DATA_SNAPSHOTPERIOD=5m
ZEEBE_BROKER_EXPORTERS_ELASTICSEARCH_ARGS_URL=http://elasticsearch-master:9200
CAMUNDA8_TASKLIST_PORT_80_TCP_ADDR=10.106.163.140
PATH=/usr/local/zeebe/bin:/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
ZEEBE_BROKER_GATEWAY_NETWORK_HOST=0.0.0.0
CAMUNDA8_ZEEBE_GATEWAY_PORT=tcp://10.105.137.176:9600
CAMUNDA8_ZEEBE_GATEWAY_PORT_9600_TCP_PORT=9600
CAMUNDA8_ZEEBE_GATEWAY_PORT_9600_TCP_ADDR=10.105.137.176
ZEEBE_BROKER_DATA_DISKUSAGECOMMANDWATERMARK=0.85
JAVA_VERSION=jdk-17.0.2+8
_=/usr/bin/env
Picked up JAVA_TOOL_OPTIONS: -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/usr/local/zeebe/data -XX:ErrorFile=/usr/local/zeebe/data/zeebe_error%p.log -XX:+ExitOnOutOfMemoryError
______ ______ ______ ____ ______ ____ _____ ____ _ __ ______ _____
|___ / | ____| | ____| | _ \ | ____| | _ \ | __ \ / __ \ | |/ / | ____| | __ \
/ / | |__ | |__ | |_) | | |__ | |_) | | |__) | | | | | | ' / | |__ | |__) |
/ / | __| | __| | _ < | __| | _ < | _ / | | | | | < | __| | _ /
/ /__ | |____ | |____ | |_) | | |____ | |_) | | | \ \ | |__| | | . \ | |____ | | \ \
/_____| |______| |______| |____/ |______| |____/ |_| \_\ \____/ |_|\_\ |______| |_| \_\
2022-06-29 08:48:53.989 [] [main] INFO
io.camunda.zeebe.broker.StandaloneBroker - Starting StandaloneBroker v8.0.0 using Java 17.0.2 on camunda8-zeebe-0 with PID 7 (/usr/local/zeebe/lib/camunda-zeebe-8.0.0.jar started by root in /usr/local/zeebe)
2022-06-29 08:48:54.046 [] [main] INFO
io.camunda.zeebe.broker.StandaloneBroker - The following 1 profile is active: "broker"
2022-06-29 08:48:58.429 [] [main] INFO
org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat initialized with port(s): 9600 (http)
2022-06-29 08:48:58.495 [] [main] INFO
org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-0.0.0.0-9600"]
2022-06-29 08:48:58.497 [] [main] INFO
org.apache.catalina.core.StandardService - Starting service [Tomcat]
2022-06-29 08:48:58.498 [] [main] INFO
org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.60]
2022-06-29 08:48:58.825 [] [main] INFO
org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext
2022-06-29 08:48:58.825 [] [main] INFO
org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4515 ms
2022-06-29 08:49:02.114 [] [main] INFO
org.springframework.boot.actuate.endpoint.web.EndpointLinksResolver - Exposing 6 endpoint(s) beneath base path '/actuator'
2022-06-29 08:49:02.212 [] [main] INFO
org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-0.0.0.0-9600"]
2022-06-29 08:49:02.317 [] [main] INFO
org.springframework.boot.web.embedded.tomcat.TomcatWebServer - Tomcat started on port(s): 9600 (http) with context path ''
2022-06-29 08:49:02.339 [] [main] INFO
io.camunda.zeebe.broker.StandaloneBroker - Started StandaloneBroker in 9.732 seconds (JVM running for 12.516)
2022-06-29 08:49:02.798 [] [main] INFO
io.camunda.zeebe.broker.system - Version: 8.0.0
2022-06-29 08:49:02.922 [] [main] INFO
io.camunda.zeebe.broker.system - Starting broker 0 with configuration {
"network" : {
"host" : "0.0.0.0",
"portOffset" : 0,
"maxMessageSize" : "4MB",
"advertisedHost" : "camunda8-zeebe-0.camunda8-zeebe.default.svc",
"commandApi" : {
"host" : "0.0.0.0",
"port" : 26501,
"advertisedHost" : "camunda8-zeebe-0.camunda8-zeebe.default.svc",
"advertisedPort" : 26501,
"address" : "0.0.0.0:26501",
"advertisedAddress" : "camunda8-zeebe-0.camunda8-zeebe.default.svc:26501"
},
"internalApi" : {
"host" : "0.0.0.0",
"port" : 26502,
"advertisedHost" : "camunda8-zeebe-0.camunda8-zeebe.default.svc",
"advertisedPort" : 26502,
"address" : "0.0.0.0:26502",
"advertisedAddress" : "camunda8-zeebe-0.camunda8-zeebe.default.svc:26502"
},
"security" : {
"enabled" : false,
"certificateChainPath" : null,
"privateKeyPath" : null
},
"maxMessageSizeInBytes" : 4194304
},
"cluster" : {
"initialContactPoints" : [ "camunda8-zeebe-0.camunda8-zeebe.default.svc:26502" ],
"partitionIds" : [ 1 ],
"nodeId" : 0,
"partitionsCount" : 1,
"replicationFactor" : 1,
"clusterSize" : 1,
"clusterName" : "camunda8-zeebe",
"heartbeatInterval" : "PT0.25S",
"electionTimeout" : "PT2.5S",
"membership" : {
"broadcastUpdates" : false,
"broadcastDisputes" : true,
"notifySuspect" : false,
"gossipInterval" : "PT0.25S",
"gossipFanout" : 2,
"probeInterval" : "PT1S",
"probeTimeout" : "PT0.1S",
"suspectProbes" : 3,
"failureTimeout" : "PT10S",
"syncInterval" : "PT10S"
},
"raft" : {
"enablePriorityElection" : true
},
"messageCompression" : "NONE"
},
"threads" : {
"cpuThreadCount" : 3,
"ioThreadCount" : 3
},
"data" : {
"directory" : "/usr/local/zeebe/data",
"logSegmentSize" : "128MB",
"snapshotPeriod" : "PT5M",
"logIndexDensity" : 100,
"diskUsageMonitoringEnabled" : true,
"diskUsageReplicationWatermark" : 0.87,
"diskUsageCommandWatermark" : 0.85,
"diskUsageMonitoringInterval" : "PT1S",
"logSegmentSizeInBytes" : 134217728,
"freeDiskSpaceCommandWatermark" : 4267491533,
"freeDiskSpaceReplicationWatermark" : 3698492662
},
"exporters" : {
"elasticsearch" : {
"jarPath" : null,
"className" : "io.camunda.zeebe.exporter.ElasticsearchExporter",
"args" : {
"url" : "http://elasticsearch-master:9200"
},
"external" : false
}
},
"gateway" : {
"network" : {
"host" : "0.0.0.0",
"port" : 26500,
"minKeepAliveInterval" : "PT30S"
},
"cluster" : {
"contactPoint" : "0.0.0.0:26502",
"requestTimeout" : "PT15S",
"clusterName" : "zeebe-cluster",
"memberId" : "gateway",
"host" : "0.0.0.0",
"port" : 26502,
"membership" : {
"broadcastUpdates" : false,
"broadcastDisputes" : true,
"notifySuspect" : false,
"gossipInterval" : "PT0.25S",
"gossipFanout" : 2,
"probeInterval" : "PT1S",
"probeTimeout" : "PT0.1S",
"suspectProbes" : 3,
"failureTimeout" : "PT10S",
"syncInterval" : "PT10S"
},
"security" : {
"enabled" : false,
"certificateChainPath" : null,
"privateKeyPath" : null
},
"messageCompression" : "NONE"
},
"threads" : {
"managementThreads" : 1
},
"security" : {
"enabled" : false,
"certificateChainPath" : null,
"privateKeyPath" : null
},
"longPolling" : {
"enabled" : true
},
"interceptors" : [ ],
"initialized" : true,
"enable" : false
},
"backpressure" : {
"enabled" : true,
"algorithm" : "VEGAS",
"aimd" : {
"requestTimeout" : "PT1S",
"initialLimit" : 100,
"minLimit" : 1,
"maxLimit" : 1000,
"backoffRatio" : 0.9
},
"fixed" : {
"limit" : 20
},
"vegas" : {
"alpha" : 3,
"beta" : 6,
"initialLimit" : 20
},
"gradient" : {
"minLimit" : 10,
"initialLimit" : 20,
"rttTolerance" : 2.0
},
"gradient2" : {
"minLimit" : 10,
"initialLimit" : 20,
"rttTolerance" : 2.0,
"longWindow" : 600
}
},
"experimental" : {
"maxAppendsPerFollower" : 2,
"maxAppendBatchSize" : "32KB",
"disableExplicitRaftFlush" : false,
"rocksdb" : {
"columnFamilyOptions" : { },
"enableStatistics" : false,
"memoryLimit" : "512MB",
"maxOpenFiles" : -1,
"maxWriteBufferNumber" : 6,
"minWriteBufferNumberToMerge" : 3,
"ioRateBytesPerSecond" : 0,
"disableWal" : false
},
"raft" : {
"requestTimeout" : "PT5S",
"maxQuorumResponseTimeout" : "PT0S",
"minStepDownFailureCount" : 3,
"preferSnapshotReplicationThreshold" : 100
},
"partitioning" : {
"scheme" : "ROUND_ROBIN",
"fixed" : [ ]
},
"queryApi" : {
"enabled" : false
},
"consistencyChecks" : {
"enablePreconditions" : false,
"enableForeignKeyChecks" : false,
"settings" : {
"enablePreconditions" : false,
"enableForeignKeyChecks" : false
}
},
"maxAppendBatchSizeInBytes" : 32768
},
"executionMetricsExporterEnabled" : false
}
2022-06-29 08:49:02.928 [Broker-0-Startup] [Broker-0-zb-actors-2] INFO
io.camunda.zeebe.broker.system - Startup Disk Space Usage Monitor
2022-06-29 08:49:02.999 [Broker-0-Startup] [Broker-0-zb-actors-2] INFO
io.camunda.zeebe.broker.system - Startup Health Monitor
2022-06-29 08:49:03.002 [Broker-0-Startup] [Broker-0-zb-actors-2] INFO
io.camunda.zeebe.broker.system - Startup Broker Admin Interface
2022-06-29 08:49:03.005 [Broker-0-Startup] [Broker-0-zb-actors-2] INFO
io.camunda.zeebe.broker.system - Startup Cluster Services (Start)
2022-06-29 08:49:03.702 [] [netty-messaging-event-epoll-server-0] INFO
io.atomix.cluster.messaging.impl.NettyMessagingService - TCP server listening for connections on 0.0.0.0:26502
2022-06-29 08:49:03.709 [] [netty-messaging-event-epoll-server-0] INFO
io.atomix.cluster.messaging.impl.NettyMessagingService - Started messaging service bound to [0.0.0.0:26502], advertising camunda8-zeebe-0.camunda8-zeebe.default.svc:26502, and using plaintext
2022-06-29 08:49:03.733 [] [netty-unicast-event-nio-client-0] INFO
io.atomix.cluster.messaging.impl.NettyUnicastService - UDP server listening for connections on 0.0.0.0:26502
2022-06-29 08:49:03.734 [] [atomix-cluster-0] INFO
io.atomix.cluster.discovery.BootstrapDiscoveryProvider - Local node Node{id=0, address=camunda8-zeebe-0.camunda8-zeebe.default.svc:26502} joined the bootstrap service
2022-06-29 08:49:03.796 [] [atomix-cluster-0] INFO
io.atomix.cluster.protocol.SwimMembershipProtocol - Started
2022-06-29 08:49:03.797 [] [atomix-cluster-0] INFO
io.atomix.cluster.impl.DefaultClusterMembershipService - Started cluster membership service for member Member{id=0, address=camunda8-zeebe-0.camunda8-zeebe.default.svc:26502, properties={}}
2022-06-29 08:49:03.798 [] [atomix-cluster-0] INFO
io.atomix.cluster.messaging.impl.DefaultClusterCommunicationService - Started
2022-06-29 08:49:03.801 [] [atomix-cluster-0] INFO
io.atomix.cluster.messaging.impl.DefaultClusterEventService - Started
2022-06-29 08:49:03.802 [Broker-0-Startup] [Broker-0-zb-actors-0] INFO
io.camunda.zeebe.broker.system - Startup API Messaging Service
2022-06-29 08:49:03.807 [] [netty-messaging-event-epoll-server-0] INFO
io.atomix.cluster.messaging.impl.NettyMessagingService - TCP server listening for connections on 0.0.0.0:26501
2022-06-29 08:49:03.808 [] [netty-messaging-event-epoll-server-0] INFO
io.atomix.cluster.messaging.impl.NettyMessagingService - Started messaging service bound to [0.0.0.0:26501], advertising camunda8-zeebe-0.camunda8-zeebe.default.svc:26501, and using plaintext
2022-06-29 08:49:03.810 [Broker-0-Startup] [Broker-0-zb-actors-2] INFO
io.camunda.zeebe.broker.system - Startup Command API
2022-06-29 08:49:03.921 [Broker-0-Startup] [Broker-0-zb-actors-2] INFO
io.camunda.zeebe.broker.system - Startup Admin API
2022-06-29 08:49:03.924 [Broker-0-Startup] [Broker-0-zb-actors-2] INFO
io.camunda.zeebe.broker.system - Startup Subscription API
2022-06-29 08:49:04.004 [Broker-0-Startup] [Broker-0-zb-actors-2] INFO
io.camunda.zeebe.broker.system - Startup Leader Management Request Handler
2022-06-29 08:49:04.009 [Broker-0-Startup] [Broker-0-zb-actors-2] INFO
io.camunda.zeebe.broker.system - Startup Partition Manager
2022-06-29 08:49:04.105 [] [Thread-13] INFO
io.atomix.raft.partition.impl.RaftPartitionServer - RaftPartitionServer{raft-partition-partition-1} - Starting server for partition PartitionId{id=1, group=raft-partition}
2022-06-29 08:49:06.954 [] [http-nio-0.0.0.0-9600-exec-1] INFO
org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-06-29 08:49:06.954 [] [http-nio-0.0.0.0-9600-exec-1] INFO
org.springframework.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
2022-06-29 08:49:06.956 [] [http-nio-0.0.0.0-9600-exec-1] INFO
org.springframework.web.servlet.DispatcherServlet - Completed initialization in 2 ms