You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Aleksandr Salatich (JIRA)" <ji...@apache.org> on 2019/02/22 09:53:00 UTC

[jira] [Updated] (FLINK-9685) Flink should support hostname-substitution for security.kerberos.login.principal

     [ https://issues.apache.org/jira/browse/FLINK-9685?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Aleksandr Salatich updated FLINK-9685:
--------------------------------------
    Labels: pull-request-available  (was: )

> Flink should support hostname-substitution for security.kerberos.login.principal
> --------------------------------------------------------------------------------
>
>                 Key: FLINK-9685
>                 URL: https://issues.apache.org/jira/browse/FLINK-9685
>             Project: Flink
>          Issue Type: Improvement
>            Reporter: Ethan Li
>            Priority: Major
>              Labels: pull-request-available
>
> [https://github.com/apache/flink/blob/master/flink-runtime/src/main/java/org/apache/flink/runtime/security/SecurityConfiguration.java#L83]
>  
> We can have something like this
> {code:java}
> String rawPrincipal = flinkConf.getString(SecurityOptions.KERBEROS_LOGIN_PRINCIPAL);
> if (rawPrincipal != null) {
>    try {
>       rawPrincipal = rawPrincipal.replace("HOSTNAME", InetAddress.getLocalHost().getCanonicalHostName());
>    } catch (UnknownHostException e) {
>       LOG.error("Failed to replace HOSTNAME with localhost because {}", e);
>    }
> }
> this.principal = rawPrincipal;
> {code}
> So it will be easier to deploy flink to cluster. Instead of setting different principal on every node, we can have the same principal headless_user/HOSTNAME@DOMAIN .



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)