Understanding Automatic Memory Management via Garbage Collection in Java
Java automates memory handling through its garbage collection (GC) subsystem, wich identifies and reclaims memory occupied by objects no longer reachable, mitigating leaks and stability issues.
Core Principles of GC
The mechanism hinges on tracing object reference graphs to separate live instances from abandoned ones. Reachable objects remain i ...
Posted on Thu, 18 Jun 2026 16:57:46 +0000 by misslilbit02
Configuring Strict Mode in Apache Hive
Apache Hive previously used the global parameter hive.mapred.mode to enable or disable strict mode. Setting this parameter to strict would enforce rules like requiring partition filters for queries on partitioned tables.
In Hive 3.1.3, this coarse-grained parameter is deprecated. The new approach uses specific, granular parameters for different ...
Posted on Tue, 16 Jun 2026 17:14:46 +0000 by martinstan
Dynamic ThreadPoolExecutor Parameter Configuration in Java
ThreadPoolExecutor provides seven core parameters that control thread pool behavior:
Core Parameters
corePoolSize: The number of threads to keep in the pool even when idle, unless allowCoreThreadTimeOut is enabled
maximumPoolSize: The maximum number of threads allowed in the pool
keepAliveTime: The maximum time excess threads (beyond corePoolS ...
Posted on Tue, 16 Jun 2026 16:56:07 +0000 by thessoro
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