You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by "dzygoon (via GitHub)" <gi...@apache.org> on 2024/02/22 02:33:23 UTC

[I] [Bug][Doc][Checkpoint storage kerberos]关于checkpoint-storage使用kerberos认证的文档部分描述有误 [seatunnel]

dzygoon opened a new issue, #6369:
URL: https://github.com/apache/seatunnel/issues/6369

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues.
   
   
   ### What happened
   
   文档中说明,当使用kerberos认证时,配置的一项属性为`kerberosKeytab`,实际在代码中的属性名为`kerberosKeytabFilePath`.
   
   
   
   ### SeaTunnel Version
   
   2.3.4
   
   ### SeaTunnel Config
   
   ```conf
   none.
   ```
   
   
   ### Running Command
   
   ```shell
   none.
   ```
   
   
   ### Error Exception
   
   ```log
   none.
   ```
   
   
   ### Zeta or Flink or Spark Version
   
   none.
   
   ### Java or Scala Version
   
   none.
   
   ### Screenshots
   
   ![image](https://github.com/apache/seatunnel/assets/96854451/bfec4907-5ba2-479e-b49d-badb259dfc70)
   ![1708569136486](https://github.com/apache/seatunnel/assets/96854451/eb958d14-8b8e-4cfc-8528-73a823012150)
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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: commits-unsubscribe@seatunnel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] [Bug][Doc][Checkpoint storage kerberos]关于checkpoint-storage使用kerberos认证的文档部分描述有误 [seatunnel]

Posted by "dzygoon (via GitHub)" <gi...@apache.org>.
dzygoon commented on issue #6369:
URL: https://github.com/apache/seatunnel/issues/6369#issuecomment-1968432850

   fix pr #6404


-- 
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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] [Bug][Doc][Checkpoint storage kerberos]关于checkpoint-storage使用kerberos认证的文档部分描述有误 [seatunnel]

Posted by "dzygoon (via GitHub)" <gi...@apache.org>.
dzygoon closed issue #6369: [Bug][Doc][Checkpoint storage kerberos]关于checkpoint-storage使用kerberos认证的文档部分描述有误
URL: https://github.com/apache/seatunnel/issues/6369


-- 
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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] [Bug][Doc][Checkpoint storage kerberos]关于checkpoint-storage使用kerberos认证的文档部分描述有误 [seatunnel]

Posted by "PINK97 (via GitHub)" <gi...@apache.org>.
PINK97 commented on issue #6369:
URL: https://github.com/apache/seatunnel/issues/6369#issuecomment-1968314259

   Is the namenode in your cluster in HA mode? If so, please give me your configuration information. I made an error during the configuration process.thx!!!


-- 
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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] [Bug][Doc][Checkpoint storage kerberos]关于checkpoint-storage使用kerberos认证的文档部分描述有误 [seatunnel]

Posted by "dzygoon (via GitHub)" <gi...@apache.org>.
dzygoon commented on issue #6369:
URL: https://github.com/apache/seatunnel/issues/6369#issuecomment-1968344308

   > Is the namenode in your cluster in HA mode? If so, please give me your configuration information. I made an error during the configuration process.thx!!!
   
   官方文档的描述是正确的,我得配置如下:
       fs.defaultFS: hdfs://hacluster
       seatunnel.hadoop.dfs.nameservices: hacluster
       seatunnel.hadoop.dfs.ha.namenodes.hacluster: 37,38
       seatunnel.hadoop.dfs.namenode.rpc-address.hacluster.37: rdqh-mrs-testnode02:25000
       seatunnel.hadoop.dfs.namenode.rpc-address.hacluster.38: rdqh-mrs-testnode03:25000
       seatunnel.hadoop.dfs.client.failover.proxy.provider.hacluster: org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider
   
   
   如果你需要使用kerberos认证,那么需要额外添加如下配置:
       kerberosPrincipal: rd_hdfs@HADOOP.COM
       kerberosKeytabFilePath: /wwdl/resource/huawei_kerberos/user.keytab
       seatunnel.hadoop.dfs.namenode.kerberos.principal: hdfs/hadoop.hadoop.com@HADOOP.COM
       seatunnel.hadoop.dfs.datanode.kerberos.principal: hdfs/hadoop.hadoop.com@HADOOP.COM
       seatunnel.hadoop.rpc.protection: authentication


-- 
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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] [Bug][Doc][Checkpoint storage kerberos]关于checkpoint-storage使用kerberos认证的文档部分描述有误 [seatunnel]

Posted by "PINK97 (via GitHub)" <gi...@apache.org>.
PINK97 commented on issue #6369:
URL: https://github.com/apache/seatunnel/issues/6369#issuecomment-1968663584

   thx!it works!


-- 
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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org