mysql exceeded the 'max_questions' resource 记录

Posted 梅里之巅

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql exceeded the 'max_questions' resource 记录相关的知识,希望对你有一定的参考价值。

最近Hive Meta的  mysql 常报错 ‘user‘ has exceeded the ‘max_questions‘ resource (current value: 10000)  

解决:调高 max_questions 设置,直接修改user 表,然后刷新权限 flush privileges.

 

探究:

max_questions/max_updates
每小时使用资源的时间限制,单位秒
 
max_connections:该用户每小时允许打开的session数
max_user_connections:该用户允许同时打开的session数
 
而要使这四项限制生效,需要在创建用户或者给用户授权的时候加上以下四种子句:
max_questions : WITH MAX_QUERIES_PER_HOUR n
max_updates : WITH MAX_UPDATES_PER_HOUR n
max_connections : WITH MAX_CONNECTIONS_PER_HOUR n
max_user_connections: MAX_USER_CONNECTIONS

以上是关于mysql exceeded the 'max_questions' resource 记录的主要内容,如果未能解决你的问题,请参考以下文章

MYSQL碰到The total number of locks exceeds the lock table size 问题解决记录

crucible-4.8.2更改mysql5.7数据库报错User ‘crucible‘ has exceeded the ‘max_questions‘ resource

吃鸡出现 the distribution exceeded the limit on requests per second啥意思

JSP???????????????????????? ??????is exceeding the 65535 bytes limit??????

FlinkFlink The rpc invocation size %d exceeds the maximum akka framesize

Hadoop HDFS: the directory item limit is exceed: limit=1048576问题的解决