有遇到过flink on yarn设置了跨域但是不生效的问题吗?
以下为热心网友提供的参考意见
是的,我了解到在Flink on YARN中设置跨域可能会遇到不生效的问题。这种情况可能是由于Flink Web UI的跨域配置有误或未正确配置所导致的。为了解决这个问题,您可以考虑以下步骤:
-
确保您的Flink集群已正确部署并运行在YARN上。您可以使用适当的命令提交Flink作业到YARN集群,例如:
./bin/flink run -m yarn-cluster
。 -
检查Flink的配置文件,确保跨域相关的配置项已正确设置。通常,您需要编辑
flink-conf.yaml
文件,并在其中添加或修改跨域配置,例如:webproxy.frontend.domain: "*" webproxy.frontend.http-port: 8081 webproxy.frontend.https-port: 8443 webproxy.frontend.crossdomain.enabled: "true" webproxy.frontend.crossdomain.allowedOrigins: "http://localhost:8080"
-
保存对配置文件的更改,并重新启动Flink集群以使更改生效。
-
确保您的应用程序在访问Flink Web UI时使用了正确的URL和端口。您可以使用以下格式的URL来访问Flink Web UI:
http://<resourcemanager-host:resourcemanager-port/proxy/application_id/flink-dashboard
。
本文来自投稿,不代表新手站长_郑州云淘科技有限公司立场,如若转载,请注明出处:https://www.cnzhanzhang.com/13653.html