上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 23 下一页
摘要: 0)安装snappy #apt install -y gdb ubuntu-snappy yum install -y gdb snappy 1)修改编译 修改编译配置Makefile第五行 OPT ?= -O0 -gdwarf-2 -g3 2)调试代码 参考https://blog.csdn.ne 阅读全文
posted @ 2022-03-27 10:21 stupidstan2019 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 【环境安装】 ubuntu20.04 1)编译leveldb 参考https://blog.csdn.net/weixin_29294975/article/details/116928909 #wget https://github.com/google/leveldb/archive/v1.19 阅读全文
posted @ 2022-03-27 00:31 stupidstan2019 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-03-20 22:14 stupidstan2019 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 【问题】 mysql> select * from mysql.tablespaces;ERROR 3554 (HY000): Access to data dictionary table 'mysql.tablespaces' is rejected. 【解决办法】 参考https://zhua 阅读全文
posted @ 2022-03-20 17:12 stupidstan2019 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 1)为什么引入extent 如果没有区只用页来管理,相邻的两个叶子节点可能离得非常远,全表扫描是从第一个叶开始,顺序扫描,导致随机io 为索引分配空间时候以区为单位,浪费空间换取时间 2)存储结构 3)rootPage内容 参考https://zhuanlan.zhihu.com/p/8639488 阅读全文
posted @ 2022-03-20 10:54 stupidstan2019 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 【参考】 https://cloud.tencent.com/developer/article/1799089 centos7.9 mysql8.0.22 gcc编译大概5个小时 【解决环境问题】 1)修改这几处代码 2)替换libstdc++.so.6.0.28 strings /usr/lib 阅读全文
posted @ 2022-03-20 10:48 stupidstan2019 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 参考 MySQL 8.0中没FRM文件了还怎么恢复表的DDL信息,https://blog.csdn.net/n88Lpo/article/details/95118434 sdi相关j接口,https://developer.aliyun.com/article/600183 1)8.0之前有t1 阅读全文
posted @ 2022-03-19 23:58 stupidstan2019 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-03-19 22:52 stupidstan2019 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 参考:https://zhuanlan.zhihu.com/p/459433088 【数据流】 1)用户线程写mtr.redo日志,拷贝到redoBuffer 2)log_write线程从redoBuffer写入ibd文件的pageCache 3)log_flush线程调用fsync写入ibd 其他 阅读全文
posted @ 2022-03-19 22:04 stupidstan2019 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 0)传文件 python -m SimpleHTTPServer wget 192.168.1.2:8000/Python-2.7.tgz wget https://www.python.org/ftp/python/2.7.16/Python-2.7.16.tgz 1)改代码 vi Objects 阅读全文
posted @ 2022-03-17 22:43 stupidstan2019 阅读(38) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 23 下一页