wForget commented on issue #6368: URL: https://github.com/apache/kyuubi/issues/6368#issuecomment-2124039244
> ``` > HADOOP_PROXY_USER=proxyUser > security.delegation.tokens.enabled=false > ``` After turning off `security.delegation.tokens.enabled`, it is difficult for us to pass delegation token updates of jobmanager to taskmanager. Based on the solution in https://github.com/apache/flink/pull/22009#issuecomment-2122226755, I will follow the steps: + Implement custom `KyuubiDelegationTokenProvider` and `KyuubiDelegationTokenReceiver` + Add the following options ``` HADOOP_PROXY_USER=proxyUser security.module.factory.classes=org.apache.flink.runtime.security.modules.JaasModuleFactory,org.apache.flink.runtime.security.modules.ZookeeperModuleFactory security.delegation.token.provider.hadoopfs.enabled=false security.delegation.token.provider.s3-hadoop.enabled=false security.delegation.token.provider.s3-presto.enabled=false security.delegation.token.provider.HiveServer2.enabled=false security.delegation.token.provider.hbase.enabled=false ``` -- 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: notifications-unsubscr...@kyuubi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org For additional commands, e-mail: notifications-h...@kyuubi.apache.org