Pods httpfs-0 and s3g-0 Keep Restarting Due to Liveness Probe Failures in Ozone 2.0.0 Kubernetes Deployment #8659
-
|
Hello, I am testing Apache Ozone 2.0.0 using the official Kubernetes example, but encountering continuous restarts in the ObservationsPod:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Switching the liveness probe from |
Beta Was this translation helpful? Give feedback.
-
|
I believe I’ve found a solution for this issue. In ...
livenessProbe:
tcpSocket:
port: 9870
...Additionally, to resolve the impersonation issue in CORE-SITE.XML_hadoop.proxyuser.hadoop.groups: '*'
CORE-SITE.XML_hadoop.proxyuser.hadoop.hosts: '*' |
Beta Was this translation helpful? Give feedback.
I believe I’ve found a solution for this issue.
In
s3g-statefulset.yaml, we need to update thelivenessProbeby replacing thehttpGetcheck with atcpSocketcheck, like this:... livenessProbe: tcpSocket: port: 9870 ...Additionally, to resolve the impersonation issue in
httpfs, we should add the followingcore-site.xmlsettings inconfig-configmap.yamlto ensure they take effect: