LittleWat commented on issue #7689:
URL: https://github.com/apache/hudi/issues/7689#issuecomment-1693306189
[FYI] In my case, I was using istio and could solve that error with the
following:
1. Add the Hudi timeline server config to the spark job property file
```property
hoodie.embed.timeline.server=true
hoodie.embed.timeline.server.port=39000
```
2. Set the istio annotation to ignore the traffic from the executor to the
timeline server hosted in the driver
```yaml
apiVersion: "sparkoperator.k8s.io/v1beta2"
kind: SparkApplication
metadata:
name: sp-app
spec:
driver:
annotations:
# This is necessary to allow the traffic from the executor to the Hudi
timeline server hosted in the driver
traffic.sidecar.istio.io/excludeInboundPorts: "39000"
...
executor:
annotations:
# This is necessary to allow the traffic from the executor to the Hudi
timeline server hosted in the driver
"traffic.sidecar.istio.io/excludeOutboundPorts": "39000"
...
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]