You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2022/04/20 08:22:42 UTC

[GitHub] [incubator-doris] cnmrzhou opened a new issue, #9129: Hadoop high availability is currently not supported[Bug]

cnmrzhou opened a new issue, #9129:
URL: https://github.com/apache/incubator-doris/issues/9129

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues.
   
   
   ### Version
   
   1.0 
   
   ### What's Wrong?
   
   use hive external table on thrift ,but response message: ERROR 1105 (HY000): errCode = 2, detailMessage = connect failed. hdfs://nameservice2
   
   ### What You Expected?
   
   use hive external table on thrift ,but response message: ERROR 1105 (HY000): errCode = 2, detailMessage = connect failed. hdfs://nameservice2
   
   ### How to Reproduce?
   
   _No response_
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] 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@doris.apache.org.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [incubator-doris] Jibing-Li commented on issue #9129: Hadoop high availability is currently not supported[Bug]

Posted by GitBox <gi...@apache.org>.
Jibing-Li commented on issue #9129:
URL: https://github.com/apache/incubator-doris/issues/9129#issuecomment-1103704219

   The following hdfs ha related configuration items are missing.
   ```
           ("dfs.nameservices", "hacluster");
           ("dfs.ha.namenodes.hacluster", "3,4");
           ("dfs.namenode.rpc-address.hacluster.3", "192.168.0.93:8020");
           ("dfs.namenode.rpc-address.hacluster.4", "192.168.0.189:8020");
           ("dfs.client.failover.proxy.provider.hacluster", "org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider");
   ```
   Need to find a way to pass the above parameters to Doris hive external table. We will fix this very soon.


-- 
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@doris.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [incubator-doris] Jibing-Li commented on issue #9129: [Bug]Hadoop high availability is currently not supported[Bug]

Posted by GitBox <gi...@apache.org>.
Jibing-Li commented on issue #9129:
URL: https://github.com/apache/incubator-doris/issues/9129#issuecomment-1110683565

   https://github.com/apache/incubator-doris/pull/9151


-- 
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@doris.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [incubator-doris] wangmiao1002 commented on issue #9129: Hadoop high availability is currently not supported[Bug]

Posted by GitBox <gi...@apache.org>.
wangmiao1002 commented on issue #9129:
URL: https://github.com/apache/incubator-doris/issues/9129#issuecomment-1103844775

   > 以下hdfs ha相关配置项缺失。
   > 
   > ```
   >         ("dfs.nameservices", "hacluster");
   >         ("dfs.ha.namenodes.hacluster", "3,4");
   >         ("dfs.namenode.rpc-address.hacluster.3", "192.168.0.93:8020");
   >         ("dfs.namenode.rpc-address.hacluster.4", "192.168.0.189:8020");
   >         ("dfs.client.failover.proxy.provider.hacluster", "org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider");
   > ```
   > 
   > 需要想办法把上面的参数传给Doris hive外部表。我们将很快解决这个问题。
   
   To add the above configuration, but it still doesn't work. Please give some instructions on how to modify the above errors. The specific logs are as follows:
   org.apache.doris.common.UserException: errCode = 2, detailMessage = connect failed. hdfs://namesericve1
           at org.apache.doris.qe.Coordinator.getNext(Coordinator.java:806)
           at org.apache.doris.qe.StmtExecutor.handleQueryStmt(StmtExecutor.java:960)
           at org.apache.doris.qe.StmtExecutor.execute(StmtExecutor.java:383)
           at org.apache.doris.qe.StmtExecutor.execute(StmtExecutor.java:300)
           at org.apache.doris.qe.ConnectProcessor.handleQuery(ConnectProcessor.java:212)
           at org.apache.doris.qe.ConnectProcessor.dispatch(ConnectProcessor.java:349)
           at org.apache.doris.qe.ConnectProcessor.processOnce(ConnectProcessor.java:538)
           at org.apache.doris.mysql.nio.ReadListener.lambda$handleEvent$0(ReadListener.java:50)
           at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
           at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
           at java.lang.Thread.run(Thread.java:748)


-- 
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@doris.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org