更新时间:2024-07-31 GMT+08:00
Hue连接HiveServer报错“over max user connections”如何处理?
适用版本:MRS 3.1.0及之前的MRS 3.x版本。
- 修改所有Hue节点上的以下配置文件:
/opt/Bigdata/FusionInsight_Porter_8.*/install/FusionInsight-Hue-*/hue/apps/beeswax/src/beeswax/models.py
- 修改文件中的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配置文件
父主题: 组件配置类