MAPREDUCE服务 MRS-Hue连接HiveServer报错“over max user connections”如何处理?

时间:2024-08-01 09:41:11

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配置文件
support.huaweicloud.com/mrs_faq/mrs_03_1214.html