首页 > 其他分享 >Archery 平台执行DDL error:Threads_connected exceeds its critical threshold

Archery 平台执行DDL error:Threads_connected exceeds its critical threshold

时间:2024-05-23 13:56:53浏览次数:28  
标签:Archery thread ... inception critical Threads threshold connected

在数据库管理平台Archery上定时任务执行DDL操作,第二天发现报错,报错信息如下:

Error copying rows from `DB`.`TABLE_NAME` to `DB`.`_TABLE_NAME_new`: Threads_connected=1358 exceeds its critical threshold 1300

登录查看Threads_connected信息,Threads_connected 一直处于大于1300个连接:

mysql> show status like '%thread%';
+------------------------------------------+----------+
| Variable_name                            | Value    |
+------------------------------------------+----------+
| Com_show_thread_statistics               | 0        |
| Delayed_insert_threads                   | 0        |
| Innodb_master_thread_active_loops        | 30810790 |
| Innodb_master_thread_idle_loops          | 45       |
| Performance_schema_thread_classes_lost   | 0        |
| Performance_schema_thread_instances_lost | 0        |
| Slow_launch_threads                      | 0        |
| Threadpool_idle_threads                  | 92       |
| Threadpool_threads                       | 99       |
| Threads_cached                           | 0        |
| Threads_connected                        | 1368     |
| Threads_created                          | 2283216  |
| Threads_running                          | 8        |
+------------------------------------------+----------+

查看inception中变量值设置:

[root@hankyoon ~]# mysql -h127.0.0.1 -uroot -P6669

mysql> inception get variables ;
...
...
...
| inception_osc_critical_thread_connected  | 1300                                      |
...
...
...

修改inception_osc_critical_thread_connected值,为1800

mysql> inception set inception_osc_max_thread_connected = 1800;

在Archery平台重新提交DDL SQL即可.

标签:Archery,thread,...,inception,critical,Threads,threshold,connected
From: https://www.cnblogs.com/hankyoon/p/18208310

相关文章

  • A Critical Study on Data Leakage in Recommender System Offline Evaluation
    目录概主要内容数据集统计信息Top-NRecommendationListRecommendationAccuracy理想的切分方式代码JiY.,SunA.,ZhangJ.andLiC.Acriticalstudyondataleakageinrecommendersystemofflineevaluation.TOIS,2022.概本文讨论了现在的推荐系统评价方式(如L......
  • 基于 “CRITICAL_SECTION“ 的同步方法
    CRITICAL_SECTION 在Windows操作系统中通常用于同步多个线程,确保一次只有一个线程可以访问特定的代码段或资源。这对于防止数据竞争和不一致至关重要。以下是使用 CRITICAL_SECTION 的基本步骤:声明和初始化:首先,你需要声明一个 CRITICAL_SECTION 类型的变量。然后,使用......
  • IDEA启动报错 Internal error.Please refer to http://jb.ge/ide/critical-startup-er
    1.问题描述启动IDEA遇到报错Internalerror.Pleaserefertohttp://jb.ge/ide/critical-startup-errors2.问题原因java.net.BindException:地址已在使用中:也就是idea启动时需要占用一些端口,但是已经被其它打开的软件占用了。IDE正在本地主机上启动服务器,它将尝试在6942和......
  • Archery SQL 审核查询平台
     ArcherySQL审核查询平台 archer Archery项目是基于archer二次开发而来goInception 一个集审核、执行、备份及生成回滚语句于一身的MySQL运维工具JetBrainsOpenSource 为项目提供免费的IDE授权......
  • 数据库审计-archery-v1.10.0-docker部署安装
    安装docker1.安装依赖包yuminstall-yyum-utilsdevice-mapper-persistent-datalvm22.添加阿里镜像仓库yum-config-manager--add-repohttp://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo3.安装dockeryum-yinstalldocker-ce安装dockercomposecurl......
  • IDEA、Pycharm等所有JetBrains产品同时报错:Internal error. Please refer to https://
    IDEA、Pycharm等所有JetBrains产品同时报错:Internalerror.Pleaserefertohttps://jb.gg/ide/critical-startup-errors错误Internalerror.Pleaserefertohttps://jb.gg/ide/critical-startup-errorscom.intellij.ide.plugins.StartupAbortedException:Cannotstartap......
  • SharePoint Online Lookup column threshold
    前言最近,一个开发的同时碰到这样一个问题,来问自己,相信很多人也碰到过类似的问题,就分享下。正文1.错误描述SomethingwentwrongThequerycannotbecompletedbecausethenumberoflookupcolumnsitcontainsexceedsthelookupcolumnthreshold.......
  • Halcon threshold_sub_pix (Operator)
    read_image(Image,'fabrik')threshold_sub_pix(Image,Border,35)dev_display(Border)Image是输入的原始图像,Threshold是设定的阈值,Width和Height是像素值计算区域的大小,ThresholdedRegion是经过分割后得到的二值化结果。在对图像进行二值化处理时,threshold_sub_pix函数会对每个像......
  • 如何解决 Critical dependency: the request of a dependency is an expression ?
    更多ruoyi-nbcio功能请看演示系统gitee源代码地址前后端代码:ruoyi-nbcio:nbcio-boot的若依版本,基于ruoyi-flowable-plus和flowable6.7.2,目前处于开发功能完善阶段,目标是打造一个最好的若依平台上flowable流程管理系统开源版本,后续也增加一个仿钉钉流程设计,希望有需要的同仁一起......
  • iOS开发 重要通知(critical-alerts)
    重要警报(critical-alerts)是iOS12和watchOS5.0中的一种新型选择加入通知,允许绕过“请勿打扰”和静音开关。他的本意是出现紧急情况,需要用户立即关注的关键事件。一、适用程序苹果不允许通过重要通知来推送营销信息,因此,此类通知仅限于医疗或健康相关应用程序、公共安全......