MySQL Process Control and Capacity Management Commands
When troubleshooting MySQL performance issues such as CPU saturation, several administrative techniques can help identify and resolve problems efficiently. This guide coveers practical commands for process control, capacity analysis, and schema management.
Bulk Connection Termination
When specific clients generate excessive connections, individ ...
Posted on Mon, 15 Jun 2026 17:02:03 +0000 by gikon
MySQL Query Cache Hit Rate Analysis
Query Cache Hit Rate
The query cache hit rate is the ratio of query requests that hit the cache to the total number of query requests.
Check if Cache is Enabled
-- Cache switch
SHOW VARIABLES LIKE '%query_cache_type%';
-- Cache size
SHOW VARIABLES LIKE '%query_cache_size%';
Enable Cache Configuration
In the MySQL configuration file my.ini or ...
Posted on Tue, 09 Jun 2026 16:44:35 +0000 by maplist
Principles and Practices for Relational Database Design and Performance Tuning
Database Design Principles
Designing an effective data model requires careful consideration of multiple factors:
What data needs to be stored? What entities and attributes should be captured?
What constraints are necessary to ensure data integrity during insertion, deletion, and update operations?
How can data redundancy be minimized to preven ...
Posted on Mon, 08 Jun 2026 17:50:19 +0000 by GoodWill
Evaluating vLLM's Performance Mode Flag: Throughput and Latency Optimization with Qwen 3.5
The --performance-mode argument (balanced, interactivity, throughput) shifts inference configuration from manual parameter sweeping to objective-driven tuning. Under the hood, interactivity refines CUDA graph capture granularity to minimize per-request latency, while throughput expands batch capacity limits to maximize aggregate token generatio ...
Posted on Sat, 06 Jun 2026 16:42:54 +0000 by louie35
Diagnosing and Resolving Java Application Faults with JVM Tools
Essential Linux Commands for System Inspection
A collection of frequently used commands for system monitoring and maintenance.
System Shutdown, Reboot, and Session Control
Command
Purpose
shutdown -h now
Power off immediately
shutdown -h +10
Schedule shutdown after 10 minutes
shutdown -h 11:00
Shutdown at 11:00
shutdown -c
Cancel a ...
Posted on Fri, 05 Jun 2026 17:20:46 +0000 by morphius
Apache Tomcat Performance Tuning and Optimization Strategies
Effective optimizaton requires monitoring key performance indicators such as throughput, latency, error rates, thread pool utilization, CPU load, and memory consumption. Load testing tools like JMeter or AB can simulate traffic, while monitoring can be performed using system commands or specialized agents.
System-level analysis often begins wit ...
Posted on Wed, 03 Jun 2026 16:13:50 +0000 by bguzel
Understanding the Oracle 'db file sequential read' Wait Event
The db file sequential read wait event represents time spent waiting for single-block I/O operations. Unlike db file scattered read, which fetches multiple blocks into non-contiguous SGA buffers, sequential reads target one block at a time—typically into contiguous memory locations within the process workspace. It commonly arises when accessing ...
Posted on Tue, 02 Jun 2026 18:18:10 +0000 by jrd
MySQL Performance Tuning and Data Type Optimization
Performance Analysis Techniques
1. Query Execution Analysis
Use the EXPLAIN statement to understand how MySQL executes queries and identify potential bottlenecks. ### 2. Query Profiling
Available in MySQL 5.1 and later versions, profiling helps analyze query execution time distribution. ```
Enable profiling
mysql> SET profiling = 1;
Execute ...
Posted on Sun, 24 May 2026 19:53:17 +0000 by Dasndan
MySQL Database Management and Optimization Techniques
Installation Methods
System Preparation
Before installing MySQL, verify existing installations using:
rpm -qa | grep -i mysql
Stop services and remove previous installations:
ps -ef | grep mysql
rpm -e --nodeps package_name
For dependency conflicts:
rpm -ev package_name --nodeps
rpm -e --noscripts package_name
Clean remaining directories:
fi ...
Posted on Sat, 23 May 2026 23:20:43 +0000 by njm
Deep Dive into MySQL Query Analysis with pt-query-digest
Introduction
pt-query-digest is a powerful tool from the Percona Toolkit designed to analyze MySQL slow queries. It can process various input sources such as the slow query log, the binary log (binlog), the general log, output from SHOW PROCESSLIST, or even TCP traffic captured via tcpdump. The tool works by parameterizing query conditions, gro ...
Posted on Wed, 20 May 2026 21:03:56 +0000 by Pig