摘要: 一、问题 拉取一个python3.10-slim镜像报错ERROR [internal] load metadata for docker.io/v1/xxx“的问题 二、编辑镜像源 vm /etc/docker/daemon.json添加registry-mirrors配置{ "registry- 阅读全文
posted @ 2024-12-09 20:37 代码诠释的世界 阅读(505) 评论(0) 推荐(0) 编辑
摘要: 一、作业 接入主要是为了跟踪接口调用链路和耗时,以便于定位相关功能和性能问题 二、使用工具 pip install jaeger-client 三、官网链接 https://github.com/jaegertracing/jaeger-client-python https://www.jaege 阅读全文
posted @ 2024-12-09 20:23 代码诠释的世界 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 一、需求 监控微服务的相关指标状态, 使用常用方案promethus+grafana 二、使用工具 pip install prometheus-client 三、官网 https://github.com/prometheus/client_python 四、接入方法 看参考链接和官方文档 参考链 阅读全文
posted @ 2024-12-09 20:13 代码诠释的世界 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 一、问题 电脑死机,强制关机重启之后就挂载不上了 二、解决 1、重启(不行) 2、安装ntfs-3g sudo apt install ntfs-3g -y 3、 修复 sudo ntfsfix /dev/sda2 4、尝试重新挂载 依旧失败 5、手动挂载 sudo mount /dev/sdb2 阅读全文
posted @ 2024-12-09 20:04 代码诠释的世界 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 一、官网 https://docs.docker.com/compose/install/ 二、命令介绍 $ docker-compose --help Define and run multi-container applications with Docker. Usage: docker-co 阅读全文
posted @ 2024-12-09 19:49 代码诠释的世界 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 一、场景 今年的实际业务中,出现了一次redis bigkeys导致的生产事故,导致业务1个小时收不到指令。 二、关于bigkeys查询方法 1、使用redis-cli加--bigkeys参数 $ redis-cli -h 192.168.3.74 -p 6379 --bigkeys $ redis 阅读全文
posted @ 2024-12-09 19:07 代码诠释的世界 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 一、场景 本地基于某个分支进行开发,想创建一个新的分支提交到远端 二、操作方法 1、创建新分支 git checkout -b <new_branch_name> 2、修改文件加入版本管理 git add . 3、提交本地修改到暂存区 git commit -m "feat: add some fe 阅读全文
posted @ 2024-12-05 17:44 代码诠释的世界 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 一、场景 命令行操作redis, 万一没有界面化软件可用 二、文档 https://redis.io/docs/latest/develop/tools/cli/ 三、安装 sudo apt-get update sudo apt-get install redis-tools 四、命令介绍 $ r 阅读全文
posted @ 2024-12-05 17:29 代码诠释的世界 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 一、场景 在进行功能开发或者测试的时候,有时候会遇到查询较慢的问题 二、explain命令介绍 https://dev.mysql.com/doc/refman/8.4/en/explain.html 三、使用 字段介绍 id: 查询的序列号 select_type: 查询的类型 table: 查询 阅读全文
posted @ 2024-12-05 16:26 代码诠释的世界 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 一、场景 实际业务中,可能需要模拟磁盘满可能导致的一些异常场景,便于优化代码的处理机制,保证健壮性。 二、模拟方法 1、 dd dd if=/dev/zero of=rumenz.img bs=2G count=1 使用过、相对会慢一些 2、truncate truncate -s 2G rumen 阅读全文
posted @ 2024-12-05 16:05 代码诠释的世界 阅读(8) 评论(0) 推荐(0) 编辑