文档首页/ MapReduce服务 MRS/ 常见问题/ 组件配置类/ Hue连接HiveServer报错“over max user connections”如何处理?
更新时间:2024-07-31 GMT+08:00
分享

Hue连接HiveServer报错“over max user connections”如何处理?

适用版本:MRS 3.1.0及之前的MRS 3.x版本。

  1. 修改所有Hue节点上的以下配置文件:

    /opt/Bigdata/FusionInsight_Porter_8.*/install/FusionInsight-Hue-*/hue/apps/beeswax/src/beeswax/models.py

  2. 修改文件中的396和404行的值。
    q = self.filter(owner=user, application=application).exclude(guid='').exclude(secret='')

    修改为:

    q = self.filter(owner=user, application=application).exclude(guid=None).exclude(secret=None)
    图1 修改Hue配置文件

相关文档