Handling Dynamic Bucket Sharding Issues in Ceph
Background
1.1 Problem Description
During performance testing, intermittent performance drops and write failures with latencies reaching over 100 seconds were observed.
1.2 Root Cause Identification
RGW logs showed that the system triggered an automatic bucket resharding operation due to high object count in a single bucket.
[root@node113 ~] ...
Posted on Sun, 17 May 2026 17:12:57 +0000 by lauxanh
MySQL Performance Optimization: Indexing and Query Tuning
Performance Analysis Tools
Database Server Optimization Steps
When approaching database optimization, follow these key steps:
Analyze current performance metrics
Identify bottlenecks
Implement targeted optimizations
Viewing System Performance Parameters
SHOW [GLOBAL|SESSION] STATUS LIKE 'parameter_name';
Key metrics to monitor:
Connections: ...
Posted on Sat, 16 May 2026 07:41:17 +0000 by OpSiS
Essential MySQL Queries and Administration Commands
Identifying Redundant Records
To locate duplicate rows based on a specific column, use the following approach:
SELECT * FROM target_table
WHERE target_id IN (
SELECT target_id FROM target_table
GROUP BY target_id HAVING COUNT(target_id) > 1
);
Database and Table Capacity Analysis
To identify the largest tables by storage size (exclu ...
Posted on Thu, 14 May 2026 20:14:35 +0000 by mraiur
MySQL Performance Schema: Configuration and Practical Usage Guide
MySQL Performance Schema: Configuration and Practical Usage Guide
When optimizing MySQL performance under high concurrency, understanding the impact of configuration changes becomes critical. Questions arise naturally: Have queries become faster? Are locks slowing down execution? What is the current memory consumption? Have disk I/O wait times ...
Posted on Sun, 10 May 2026 21:53:52 +0000 by supinum
Apache Doris Integration Troubleshooting and Performance Tuning
External Catalog Connectivity and Driver Compatibility
When querying an Elasticsearch catalog, connection timeouts may occur if the network topology prevents direct access to data nodes. If the error log indicates a failure to connect to the ES server after a specific duration, verify the network path between Backend nodes and the Elasticsearch ...
Posted on Fri, 08 May 2026 13:56:20 +0000 by ict