摘要: MySQL的架构分成了server层和存储引擎层(storage engine),server层通过调用存储引擎层来返回数据。 1. Using index 表示查询的列被索引覆盖,因而无需回表查询,因而效率更高。2. Using index,Using where 表示查询的列被索引覆盖,且whe 阅读全文
posted @ 2024-12-19 14:41 __Yoon 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 按天查看表的增量数据:SELECT DATE(create_time) as date, COUNT(*) as daily_incrementFROM table_nameWHERE create_time >= '2024-01-01' AND create_time < '2024-12-16 阅读全文
posted @ 2024-12-19 11:27 __Yoon 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Let's go 阅读全文
posted @ 2024-11-13 14:34 __Yoon 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1、下载canal安装包 canal.adapter-1.1.7.tar.gz canal.deployer-1.1.7.tar.gz 2、修改涉及的文件 canal_deployer: /conf/canal.properties /conf/example/instance.properties 阅读全文
posted @ 2024-08-21 18:41 __Yoon 阅读(328) 评论(0) 推荐(0) 编辑
摘要: canal wiki地址:https://github.com/alibaba/canal/wiki/ canal 报错:Could not find first log file name in binary log index file 1、canal_deployer 日志报错: 2024-0 阅读全文
posted @ 2024-07-30 14:57 __Yoon 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 通过命令,导出数据: SELECT * FROM users INTO OUTFILE '/tmp/users_data.sql' FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n'; 通过脚本,转成insert语句: #!/bin/env pytho 阅读全文
posted @ 2024-07-18 19:04 __Yoon 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 在数据库管理平台Archery上定时任务执行DDL操作,第二天发现报错,报错信息如下: Error copying rows from `DB`.`TABLE_NAME` to `DB`.`_TABLE_NAME_new`: Threads_connected=1358 exceeds its cr 阅读全文
posted @ 2024-05-23 13:54 __Yoon 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 在Linux系统中有很多流行且经常使用的系统资源监控工具,例如:vmstat、netstat、iostat、ifstat和mpstat, 这些工具可用于监控不同系统组件的统计信息, 包括:虚拟内存、网络连接和接口、CPU、输入/输出设备等。 dool是一款功能强大且灵活的多功能命令行工具, 除了提供 阅读全文
posted @ 2024-05-03 17:28 __Yoon 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 系统版本: CentOS Linux release 7.6.1810 (Core) 编译安装Python3.8.4 [root@hankyoon ~]# tar -xvf Python-3.8.4.tgz [root@hankyoon ~]# cd Python-3.8.4/ [root@hank 阅读全文
posted @ 2024-04-25 15:10 __Yoon 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 电话告警故障:MySQL 从库异常宕机。 查看MySQL error日志: [ERROR] Slave SQL for channel '': ... The slave coordinator and worker threads are stopped, possibly leaving dat 阅读全文
posted @ 2024-04-24 18:39 __Yoon 阅读(281) 评论(0) 推荐(0) 编辑