搜索结果: "performance"

共找到 62 个页面

MySQL 性能调优 — 慢查询 / 锁分析 / 死锁排查 / 索引失效 / 深度分页 / 缓冲池 / 配置模板

tags: [mysql, database, performance, monitoring, production, deadlock, lock]

- raw/articles/fullstack-performance-troubleshooting.md

**performance_schema 最细粒度:**

FROM performance_schema.events_statements_summary_by_digest

SELECT * FROM performance_schema.data_lock_waits;

运维自动化脚本 5 件套 — 健康巡检/日志告警/MySQL备份/批量执行/服务守护

> 参见 [[server-performance-four-dimensions]] — 全面的五维性能排查方法论和告警阈值

> 参见 [[mysql-performance-config]] — MySQL 性能调优与配置

| [[server-performance-four-dimensions]] | 五维排查框架 + 告警阈值(脚本 1 健康巡检的深度参考) |

| [[mysql-performance-config]] | MySQL 性能调优(脚本 3 备份的上下文) |

| [[fullstack-performance-troubleshooting]] | 全栈性能排障入口(脚本 1-5 的排障背景) |

服务器性能五维排查 — CPU/内存/磁盘/网络/文件系统深度解析

tags: [linux, troubleshooting, performance, monitoring, production, debugging, networking, mysql, filesystem]

- raw/articles/server-performance-four-dimensions.md

- raw/articles/linux-server-performance-all-in-one.md

- 高 IO 场景开启 CPU `performance` 频率调节器

| [[fullstack-performance-troubleshooting]] | 应用层性能排障方法论(Nginx→DB) |

Wiki Index

- [[fullstack-performance-troubleshooting]] — 全栈性能排障:Nginx → 应用 → 数据库 → 服务器

- [[linux-api-performance-tuning-case-study]] — Linux 系统调优实战:接口 500ms→100ms 全复盘(CPU/内存/磁盘/网络/JVM/Docker)

- [[mysql-performance-config]] — MySQL 性能调优:慢查询 / 锁分析 / 死锁 / 索引失效 / 深度分页 / 缓冲池 / 配置模板

- [[nginx-production-performance-optimization]] — 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream 代理/K8s 云原生全链路优化

- [[server-performance-four-dimensions]] — 服务器性能五维排查:CPU/内存/磁盘/网络/文件系统深度解析

Wiki Log

- Created raw: raw/articles/fullstack-performance-troubleshooting.md

- Created concepts: fullstack-performance-troubleshooting, mysql-performance-config

- Updated concepts: fullstack-performance-troubleshooting, mysql-performance-config(交叉引用)

- Created raw: raw/articles/server-performance-four-dimensions.md

- Created concepts: server-performance-four-dimensions

线上故障排查清单 — CPU/磁盘/内存/GC/网络 四维速查

tags: [troubleshooting, performance, linux, debugging, production, monitoring]

整体性能排查框架参见 [[server-performance-four-dimensions]](五维排查方法论)和 [[fullstack-performance-troubleshooting]](全栈视角)。

| [[server-performance-four-dimensions]] | 五维排查框架(含决策树) |

| [[fullstack-performance-troubleshooting]] | Nginx→应用→数据库→服务器全链路 |

Linux Load Average 完全解读 — 内核原理 / 排查方法论 / 容器环境实战

tags: [linux, performance, monitoring, troubleshooting, debugging, production]

- raw/articles/server-performance-four-dimensions.md

| [[server-performance-four-dimensions]] | 服务器五维排查总纲 |

| [[fullstack-performance-troubleshooting]] | 全栈性能排障第一环 |

MySQL 慢查询排查案例复盘 — 从发现到根治的完整链路

tags: [mysql, database, performance, troubleshooting, case-study]

| [[mysql-performance-config]] | MySQL 性能调优总纲(慢查询/索引失效/深度分页/锁分析/配置模板) |

| [[fullstack-performance-troubleshooting]] | 全栈排障方法论(Nginx→应用→数据库→服务器) |

全栈性能排障方法论 — Nginx → 应用 → 数据库 → 服务器

sources: [raw/articles/fullstack-performance-troubleshooting.md]

详见 [[mysql-performance-config]]。

| [[server-performance-four-dimensions]] | 五维排查框架与告警阈值 |

高并发四大手段:缓存 / 限流 / 削峰 / 幂等 — 各自解决什么问题?

tags: [architecture, microservices, performance, database]

- [[fullstack-performance-troubleshooting]] — 全栈性能排障(高并发问题从应用到数据库的全局视角)

- [[server-performance-four-dimensions]] — 服务器性能五维排查(高并发下的系统资源瓶颈分析方法论)

运维工程师面试 50 题 — 经典 Linux/网络/数据库基础全覆盖

参见 [[mysql-slow-query-case-study]](4.7s→23ms 优化案例)和 [[mysql-performance-config]](性能调优配置)。

参见 [[server-performance-four-dimensions]](五维排查)和 [[online-troubleshooting-checklist]](四维速查清单)。

| [[server-performance-four-dimensions]] | 五维性能排查框架 |

JVM 容器 OOM 排障指南 — 堆外内存视角

tags: [kubernetes, java, troubleshooting, memory, container, performance]

- [[server-performance-four-dimensions]] — 服务器性能排查四维法(含 Java 内存提示)

- [[linux-api-performance-tuning-case-study]] — JVM 容器 cgroup 内存调优案例

K8s 下 Java 内存调优完整指南 — 预算模型、生产配置与治理体系

tags: [kubernetes, java, jvm, memory, performance, troubleshooting, architecture]

- [[server-performance-four-dimensions]] — 服务器性能排查(含 Java 内存提示)

- [[linux-api-performance-tuning-case-study]] — JVM 容器 cgroup 调优案例

CPU 飙高三命令排查法 — top → strace → /proc/PID/fd/ 实战

tags: [linux, performance, troubleshooting, case-study, debugging]

> 对于更复杂的 CPU 性能问题(死循环、锁竞争、GC 频繁等),配合 [[server-performance-four-dimensions]] 中的 `pidstat`、`top -Hp`、`jstack` 等工具做深度分析。

| [[server-performance-four-dimensions]] | 服务器性能五维排查总纲(CPU/内存/磁盘/网络/文件系统) |

Linux 服务器 CPU 飙高排查 — 完整方法论 + 应急响应实战

tags: [linux, performance, monitoring, debugging, production]

| [[server-performance-four-dimensions]] | 服务器五维排查(CPU/内存/磁盘/网络/文件系统) |

| [[linux-api-performance-tuning-case-study]] | Linux 系统调优实战案例(CPU→JVM→网络全栈) |

Linux 系统调优实战 — 接口响应从 500ms 降到 100ms 全复盘

tags: [linux, performance, troubleshooting, case-study, production]

| [[server-performance-four-dimensions]] | 五维排查总纲(CPU/内存/磁盘/网络) |

| [[fullstack-performance-troubleshooting]] | 全栈性能排障方法论 |

Linux 运维工程师 30 个高频命令速查手册

tags: [linux, tools, troubleshooting, performance, automation]

> 关联:[[server-performance-four-dimensions]] — 内存维度完整解读

- [[server-performance-four-dimensions]] — 服务器五维排查总纲(CPU/内存/磁盘/网络/文件系统)

Linux 高并发内核优化手册 — 文件句柄/网络/内存/调度/I/O/安全七维调优

tags: [linux, performance, networking, security, tcp, memory, scheduling]

- [[server-performance-four-dimensions]] — 服务器性能五维排查

- [[nginx-production-performance-optimization]] — 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream

生产环境 Linux 内核参数调优 — 6 个必调参数

保存到 `/etc/sysctl.d/99-performance.conf`:

sudo sysctl -p /etc/sysctl.d/99-performance.conf

- [[server-performance-four-dimensions]] — 服务器五维排查总纲

Linux 服务器性能排查实战手册 — 三板斧/案例/阈值/参数速查

tags: [linux, troubleshooting, performance, monitoring, nginx, mysql]

> 详细的多维排查方案参见 [[server-performance-four-dimensions]](CPU/内存/磁盘/网络/文件系统五维深度解析)。

- [[server-performance-four-dimensions]] — 服务器性能五维排查(深度综合版)

服务器负载过高排查 — 案例实战 / Netflix 60 秒法 / 常见根因

tags: [linux, troubleshooting, performance, production, debugging, case-study]

| [[server-performance-four-dimensions]] | 五维排查总纲与决策树 |

| [[fullstack-performance-troubleshooting]] | 应用层性能排障方法论 |

Nginx 502/504/Connection Reset 深度排查指南

tags: [nginx, troubleshooting, networking, production, debugging, performance]

| [[fullstack-performance-troubleshooting]] | 全栈性能排障入口 |

| [[nginx-production-performance-optimization]] | 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream |

Nginx 负载均衡策略选择实战指南

tags: [nginx, networking, performance, troubleshooting, architecture, load-balancing]

- [[nginx-production-performance-optimization]] — 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream

- [[fullstack-performance-troubleshooting]] — 全栈性能排障

MySQL 主从复制指南 — 原理 / GTID / 架构 / 故障排查 / 监控

- [[mysql-performance-config]] — MySQL 性能调优与死锁排查

- [[fullstack-performance-troubleshooting]] — 全栈性能排障(MySQL 在其中)

Redis 内存优化完全指南 — 数据结构/TTL/淘汰策略/Bigkey/碎片治理

tags: [redis, database, memory, production, performance, debugging]

| [[server-performance-four-dimensions]] | 系统级内存监控 |

服务器网络排障方法论 — 分层定位七步法

| 应用性能慢 / 接口超时 | 网络排障 → 全栈性能排障 | [[fullstack-performance-troubleshooting]] |

| [[wifi-router-performance-switches]] — Wi-Fi 6/7 路由器性能开关(TxBeamforming/OFDMA/MU-MIMO/MRU/TWT),无线网络性能调优参考

Wi-Fi 6/7 路由器五个性能开关 — TxBeamforming / OFDMA / MU-MIMO / MRU / TWT 全解析

tags: [wifi, networking, performance]

- [[fullstack-performance-troubleshooting]] — 全栈性能排障(网络层是其中一环)

Java 应用 CPU 100% 排查实战 — 从告警到代码行的四步法

tags: [linux, java, performance, troubleshooting, case-study, jvm]

- [[fullstack-performance-troubleshooting]] — 全栈性能排查(含 JVM GC 深度分析)

生产级 Linux 磁盘 IO 调优 — 从核心概念到实战落地

tags: [linux, performance, storage, production, monitoring, debugging]

| [[server-performance-four-dimensions]] | 服务器五维排查(含磁盘 IO 快速判断) |

Linux 硬件信息查询与软件管理命令速查 — CPU/内存/磁盘/网络/主板全覆盖

tags: [linux, command, performance, monitoring, disk, networking, troubleshooting, architecture]

- [[server-performance-four-dimensions]] — 服务器性能四维分析(CPU/内存/磁盘/网络)

Linux Load 高但 CPU 低的排查思路 — 系统化诊断流程

tags: [linux, troubleshooting, performance, debugging]

- [[server-performance-four-dimensions]] — 服务器性能五维排查

Linux 内存管理深潜 — Buffer/Cache/Page Cache/Slab/回收/OOM 全链路

tags: [linux, memory, performance, troubleshooting, monitoring, debugging]

- [[server-performance-four-dimensions]] — 服务器五维排查总纲(内存为其中一维)

NFS 故障排查 SOP — 7 步法 / 6 类故障 / 实战案例

tags: [linux, troubleshooting, nfs, storage, networking, performance, monitoring, security]

- [[server-performance-four-dimensions]] — 服务器性能五维排查

Nginx 日志分析与监控体系构建指南

tags: [nginx, monitoring, performance, troubleshooting, automation, security]

- [[fullstack-performance-troubleshooting]] — 全栈性能排障

Wiki Schema

- performance: 性能分析与优化

亚马逊运营完全指南 — 广告投放 + 推新流程 + 定价体系

- [[server-performance-four-dimensions]] — 服务器性能优化方法论(广告投放与系统运维的"调优"思维共通)

Amazon Listing 优化全流程 — 标题、五点、描述、A+ 页面

tags: [amazon, ecommerce, performance]

Redis 连接管理与熔断治理 — 连接数打满 / 僵尸连接 / 雪崩防护

| [[server-performance-four-dimensions]] | 系统级 fd/memory 监控 |

接口限流 5 种算法详解:计数器 / 滑动窗口 / 令牌桶 / 漏桶 / Redis+Lua

tags: [performance, architecture, microservices, java]

容器网络排障 6 层模型 — K8s/Docker/containerd 统一排查体系

tags: [kubernetes, networking, troubleshooting, docker, debugging, performance, container]

数据库上 K8s 架构选型 — 收益与风险权衡

- [[mysql-performance-config]] — 数据库性能调优(无论是否在 K8s 上都需要)

Jenkins 多 Master 架构部署方案 — K8S + Gateway API

推荐导入 [Jenkins Performance Dashboard](https://grafana.com/grafana/dashboards/9965-jenkins-performance-monitoring/) 或自行创建看板,重点关注:

K8s 容量规划、Pod QoS 与成本优化实战指南

tags: [kubernetes, architecture, performance, monitoring, java, golang, messaging, tcp]

Kubernetes 负载均衡深度实践:Service 数据面到生产级流量治理全链路

tags: [kubernetes, networking, production, troubleshooting, performance]

K8s 滚动更新无损发布误区 — RollingUpdate 真相与真正无感发布体系

tags: [kubernetes, deployment, networking, troubleshooting, production, performance]

Node 排障 — NotReady 九步排查 / Kubelet / 容器运行时 / 资源压力 / 证书 / 预防

- [[server-performance-four-dimensions]] — 服务器四维排障(资源深度排查)

systemd 日志管理与实时监控:journalctl 命令完全指南

- [[server-performance-four-dimensions]] — 服务器性能五维排查(日志监控是重要维度)

Linux 压缩解压工具对比与实战指南

tags: [linux, command, compression, tar, gzip, archive, performance]

磁盘排查工具实战指南 — iostat/smartctl/lsscsi 详解

- [[server-performance-four-dimensions]] — 四维性能排查(含磁盘 IO)

Linux 磁盘空间排查 — 8 个命令 / 四种场景 / 生产清理流程

- [[server-performance-four-dimensions]] — 磁盘 IO 性能排查(五维排查总纲)

Linux 目录结构完全指南 — FHS 标准与运维实战

- [[server-performance-four-dimensions]] — 服务器性能排查四维法

Linux 海量文件删除指南 — find/perl/rsync/shred 四种方法对比

tags: [linux, command, performance, case-study, security, networking]

NFS 挂载参数全解析 — 测试与调优指南

tags: [linux, storage, networking, performance, troubleshooting, filesystem]

Linux 端口探查三工具 — ss / netstat / lsof 完全指南

- [[server-performance-four-dimensions]] — 服务器五维排查(网络维度配合工具)

Linux RAID 与 LVM 基础指南 — 磁盘组合与空间管理

- [[server-performance-four-dimensions]] — 四维性能排查(含磁盘 IO)

服务器安全加固清单 — 新机器上线前必做的 20 件事

| [[server-performance-four-dimensions]] | 文件描述符监控与异常检测 |

SSH 暴力破解防御指南 — 公钥认证 / fail2ban / 2FA / 入侵检测 / 连接限制 / 蜜罐

| [[server-performance-four-dimensions]] | 网络连接监控(ss/netstat)与异常检测 |

TCP 连接数爆表:攻击还是 Bug 排查指南

- [[server-performance-four-dimensions]] — 服务器性能五维排查总纲

Nginx 典型配置错误复盘 — 20+ 个踩坑点详解

- [[nginx-production-performance-optimization]] — 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream

生产级 Nginx 性能优化 — 从内核到 K8s 全链路

tags: [nginx, performance, networking, linux, architecture, troubleshooting]

Nginx 实时推送生产实践全解:SSE 与 WebSocket 的原理、架构、工程化与生产级落地

| [[fullstack-performance-troubleshooting]] | 全栈性能排障体系(ws/SSE 场景扩展) |

Nginx 安全配置实战 — 防DDoS/限流/WAF 规则编写

| [[nginx-production-performance-optimization]] | 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream |