pyhs2连接超时问题

  1. 启动hiveserver2:
    cd $HIVE_HOME bin/hiveserver2(默认是10000端口)
    sudo netstat -anp|grep 10000
  2. pyhs2连接hive,报错如下:
    raise Pyhs2Exception(res.status.errorCode, res.status.errorMessage) Pyhs2Exception: “Error while compiling statement: FAILED: SemanticException Unable to fetch table tbl_card_log. javax.jdo.JDODataStoreException: The last packet successfully received from the server was 2,450,497 milliseconds ago. The last packet sent successfully to the server was 2,450,497 milliseconds ago. is longer than the server configured value of ‘wait_timeout’. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property ‘autoReconnect=true’ to avoid this problem
    增加hiveserver2的客户端超时时间,修改hive-site.xml
    <name>hive.server.read.socket.timeout</name><value>3600s</value>
    <name>hive.server2.async.exec.shutdown.timeout</name><value>3600s</value>
    另外,设置pyhs2.connect的timeout参数
    原文作者:薇薇一笑vv
    原文地址: https://www.jianshu.com/p/5f7661958bb5
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞