当前位置: 首页 > news >正文

网站的网站建设wordpress弹窗提示

网站的网站建设,wordpress弹窗提示,广东网站建设包括什么软件,用手机可以建设一个手机网站吗问题 最近遇到 2 个超大 sql 文件导入#xff0c;好一通折腾 文档在哪里 调优参数太多#xff0c;文档都看不过来 找到这些参数也费劲, ubuntu 在 /etc/mysql/mysql.conf.d/mysqld.cnf 中找到这个链接 ...... # # The MySQL Server configuration file. # # For explanat…问题 最近遇到 2 个超大 sql 文件导入好一通折腾 文档在哪里 调优参数太多文档都看不过来 找到这些参数也费劲, ubuntu 在 /etc/mysql/mysql.conf.d/mysqld.cnf 中找到这个链接 ...... # # The MySQL Server configuration file. # # For explanations see # http://dev.mysql.com/doc/mysql/en/server-system-variables.htmlcentos 7 在 /etc/my.cnf 中找到这个链接 # For advice on how to change settings please see# http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html官方调优文档 14.15 InnoDB Startup Options and System Variables 耐心去阅读文档中那么多参数需要勇气 最终我也是从这里 mysql使用多cpu抄来的 # wzh 20230814# Set the number of CPUs to be used by MySQL # # to half of the total available CPUsinnodb_thread_concurrency 2## Set the number of buffer pool instancesinnodb_buffer_pool_instances 2# # # Set the size of the query cachequery_cache_size 64M## wzh 20230814 bulk_insert_buffer_size 2Ginnodb_log_buffer_size 2Ginnodb_autoinc_lock_mode 2#调优后 三种导入方式对比 方式一: 使用 mysql source 命令直接导入一个大文件 (18G) 为了统计用时和绘画内部优化将实际mysqldump 文件包含到 all.sql # cat all.sqlSET GLOBAL innodb_lru_scan_depth256;set session sql_mode ALLOW_INVALID_DATES;SET autocommit0;SET unique_checks0;SET foreign_key_checks0;show global variables like innodb_lru_scan_depth;show variables like %sql_mode%; show variables like %autocommit;show variables like %unique_checks;show variables like %foreign_key_checks;select now();-- one file 18Gsource /home/XXXdata/20191230_135112.sql;show global variables like innodb_lru_scan_depth;show variables like %sql_mode%;show variables like %autocommit;show variables like %unique_checks;show variables like %foreign_key_checks;select now();导入过程 mysql tee out-20230816.txtmysql source /home/XXXdata/all.sql查看结果 # cat out-20230816.txt......| 2023-08-16 08:17:02 |......| 2023-08-16 14:26:40 |总共耗时 6 小时 方式2⃣️: 使用shell 命令行后台任务直接导入一个大文件 (18G) 为了统计用时和绘画内部优化将实际mysqldump 文件包含到 all.sql # cat all.sql 同前一个方式shell 后台任务 # nohup mysql -uroot -pPassword123 --default-character-setutf8 --force zXXX /home/zXXX/all.sql /home/out-20230817.txt 21 查看执行结果 # cat out-20230817.txt......2023-08-16 21:08:52......2023-08-17 01:43:14用时 大约5 小时 方式三SQLDumpSplitter切割 sql 文件 ( 每个 2G)使用 mysql source 命令 切割后的结果 # ls *.sql -l-rw-r--r--. 1 root root 2147482476 8月 10 14:13 20191230_135112_0.sql-rw-r--r--. 1 root root 2147482521 8月 10 14:15 20191230_135112_1.sql-rw-r--r--. 1 root root 2147482263 8月 10 14:17 20191230_135112_2.sql-rw-r--r--. 1 root root 2147482371 8月 10 14:19 20191230_135112_3.sql-rw-r--r--. 1 root root 2147481971 8月 10 14:21 20191230_135112_4.sql-rw-r--r--. 1 root root 2147481699 8月 10 14:24 20191230_135112_5.sql-rw-r--r--. 1 root root 2147482612 8月 10 14:25 20191230_135112_6.sql-rw-r--r--. 1 root root 2147482594 8月 10 14:27 20191230_135112_7.sql-rw-r--r--. 1 root root 959044232 8月 10 14:28 20191230_135112_8.sql-rw-r--r--. 1 root root 1096 8月 16 14:14 all.sqlall.sql # cat all.sql SELECT DATABASE();select now();SET GLOBAL innodb_lru_scan_depth256;set session sql_mode ALLOW_INVALID_DATES;SET autocommit0;SET unique_checks0;SET foreign_key_checks0;show global variables like innodb_lru_scan_depth;show variables like %sql_mode%; show variables like %autocommit;show variables like %unique_checks;show variables like %foreign_key_checks;-- 00source /home/XXXdata/20191230_135112_0.sql ;-- 01source /home/XXXdata/20191230_135112_1.sql ;-- 02source /home/XXXdata/20191230_135112_2.sql ;-- 03source /home/XXXdata/20191230_135112_3.sql ;-- 04source /home/XXXdata/20191230_135112_4.sql ;-- 05source /home/XXXdata/20191230_135112_5.sql ;-- 06source /home/XXXdata/20191230_135112_6.sql ;-- 07source /home/XXXdata/20191230_135112_7.sql ;-- 08source /home/XXXdata/20191230_135112_0.sql ;-- ALL OKshow global variables like innodb_lru_scan_depth;show variables like %sql_mode%;show variables like %autocommit;show variables like %unique_checks;show variables like %foreign_key_checks;SELECT DATABASE();select now();导入过程 mysql tee out-20230816.txtmysql source /home/XXXdata/all.sql查看结果 cat out-20230816.txt......| 2023-08-16 08:17:02 |......| 2023-08-16 13:15:21 | 总共耗时大约 5 小时 不调优使用shell 命令行后台任务直接导入一个大文件 (18G) 注释掉 my.cnf 中的调优 restart mysqld 服务 # cat /etc/my.cnf# wzh 20230814# Set the number of CPUs to be used by MySQL # # to half of the total available CPUs# innodb_thread_concurrency 2## Set the number of buffer pool instances#innodb_buffer_pool_instances 2# # Set the size of the query cache# query_cache_size 64M## wzh 20230814 # bulk_insert_buffer_size 2G# innodb_log_buffer_size 2G# innodb_autoinc_lock_mode 2# wzh 20230817# default-time-zoneAsia/Shanghaiexplicit_defaults_for_timestamptruelog_timestampsSYSTEM这就和安装完 mysql 5.7 之后全部使用缺省值一样了 shell 后台任务 nohup mysql -uroot -pPassword123 --default-character-setutf8 --force zXXX /home/zXXX/all.sql /home/out-20230817.txt 21 查看结果 cat /home/out-20230817.txt … 2023-08-18 14:50:11 … 2023-08-18 19:43:37 大约 5 小时对比前面调优没有多大改进 原因分析 决定实际完成快慢的是该进程的 CPU 占用时间 cputime 以下是中途记录的一段 # ps -eo pid,euid,euser,lstart,etime,cputime,cmd | grep mysql ...1877 0 root Fri Aug 18 08:22:21 2023 01:20:06 00:00:59 mysql -uroot -px xxxxxxxxxx --default-character-setutf8 --force zXXX ...可以看到本次运行时间 01:20:06 CPU 占用时间 00:00:59 说明效率很高 之前曾经有过运行一晚上实际 cputime 才 2 个小时效率太低了 总结 切割 SQL 文件并不能显著改善导入速度 也许我切割到 2G 还是太大了感觉应该 1G 使用 shell 命令行 和 mysql source 命令要快大约 20%-30% 使用多 CPU 和增加缓存等办法没有测出有明显效果 影响导入速度的还是导入过程中的错误忽略 sql_mode ‘ALLOW_INVALID_DATES’ 和 autocommit 等优化 shell 命令行 加上 --force 不要同时执行 2 个或以上大任务互相影响 提前判断好需要的硬盘空间不要等最后才知道 disk full 前功尽弃 查看磁盘空间 df -h 如果可以找到原始的数据库来源查看数据库文件大小 $ sudo du -sh /var/lib/mysql/zXXX 26G /var/lib/mysql/zXXX
http://www.zqtcl.cn/news/674222/

相关文章:

  • 网站建设推广话术wordpress 不显示缩略图
  • 企业电子商务网站建设和一般百拓公司做网站怎么样
  • 吉林网站建设司上海什么做网站的公司比较好
  • 吉安市建设规划局网站jsp wordpress
  • 建设银行贵金属网站微信小程序注册后怎么使用
  • 如何做律师网站河南建网站 优帮云
  • 云阳如何做网站网站建设旅游
  • 推荐一个简单的网站制作单位网站服务的建设及维护
  • tp5网站文档归档怎么做网站 信用卡支付接口
  • phpcms 企业网站网站建设中单页代码
  • 坑梓网站建设方案网络编程技术及应用
  • 电子商务网站建设 价格新媒体运营需要具备哪些能力
  • 做生存分析的网站电商网站运营建设的目标
  • 佛山 做网站邮箱官方网站注册
  • 生成flash的网站源码表白二维码制作网站
  • 定做专业营销型网站网站开发应用
  • 万盛建设局官方网站如何用群晖nas做网站
  • 建设装饰网站郑州惠济区建设局网站
  • 网站做标题有用吗网站优化多少钱
  • 婚庆设备租赁网站源码如何进行网站的建设和维护
  • 青岛做网站公wordpress文章付费阅读
  • 小灯具网站建设方案360优化大师
  • 开发公司与物业公司前期合同网站优化的推广
  • 汉堡云虚拟主机aso安卓优化公司
  • 医院 网站建设 新闻营销外包
  • 优秀网站网址郑州无痛人流哪家医院好
  • 备案网站能打开吗大良营销网站建设流程
  • 哪些网站可以做淘宝店招石油网站编辑怎么做
  • 网站出现建设中集团网站建设特点
  • asp网站开发 pdf企业展厅设计公司盛世笔特