Designing and Implementing Database Sharding and Table Partitioning
Scaling MySQL: Evolution of Database Architecture
As application traffic grows, monolithic database architectures often become bottlenecks. To handle increased loads, engineers typically employ a combination of architectural changes: service separation, master-slave replication, database sharding (splitting databases), and table partitioning (s ...
Posted on Sat, 19 Sep 2026 16:48:36 +0000 by cetaces
Implementing High-Availability and Loop-Free Traffic Forwarding in a Tiered Data Center Using VRRP and MSTP
In a multi-tier data center deployment, ensuring link redundancy, eliminating broadcast domains, enforcing perimeter security, and maintaining scalable routing are fundamental design principles. The following architecture demonstrates how to integrate Virtual Router Redundancy Protocol (VRRP), Multiple Spanning Tree Protocol (MSTP), Open Shorte ...
Posted on Fri, 11 Sep 2026 16:54:04 +0000 by iamchris
Essential Checks for MySQL Database Inspections
Standard Operational Inspections
Storage capacity is a critical focus during proactive inspections. While standard alerts might trigger at 80% utilization, inspections should flag instances exceeding 70%. This buffer ensures there is enough capacity to handle data growth over extended holidays, preventing emergency interventions during off-hour ...
Posted on Mon, 07 Sep 2026 16:06:44 +0000 by mpiaser
Setting Up MySQL 5.7 with MHA High Availability Cluster
Prerequisites: Three servers, MySQL 5.7-glibc installation, master-slave configuration using GTID mode.
MySQL Installation
Prepare installation package
Download MySQL from: https://pan.baidu.com/s/14w-oNT-oeTUujhFAnqjkSAExtract code: g8tk
[root@db-node1 install]# ll mysql-5.7.32-linux-glibc2.12-x86_64.tar.gz
-rw-r--r-- 1 root root 661214270 ...
Posted on Wed, 26 Aug 2026 16:56:06 +0000 by cgrenda
Preventing Cache Avalanche in Redis: Causes and Mitigation Strategies
Understanding Cache Avalanche
Cache avalanche refers to a scenario where a large number of cached items expire simultaneously or the cache service becomes unavailable, causing a sudden flood of requests to hit the underlying data base. This can lead to database overload, increased latency, or complete service failure.
Common Causes
Identical e ...
Posted on Wed, 26 Aug 2026 16:27:16 +0000 by andrewgauger
Deploying a Kubernetes 1.16.4 HA Cluster on CentOS 7.6 with Keepalived
Environment Overview
Hostname
OS Version
IP Address
Components
Hardware
Role
master01
CentOS 7.6.1810
172.27.34.3
Docker 18.09.9, Flannel v0.11.0, Keepalived v1.3.5
4C4G
control plane
master02
CentOS 7.6.1810
172.27.34.4
Docker 18.09.9, Flannel v0.11.0, Keepalived v1.3.5
4C4G
control plane
master03
CentOS 7.6.1810
172.27.34.5
Docker ...
Posted on Mon, 24 Aug 2026 16:08:17 +0000 by Saethyr
MHA High Availability Guide
Understanding MHA Failover
MHA (Master High Availability) is a comprehensive solution for achieving high avaliability in MySQL environments. Here's how it works:
Master Monitoring:
MHA uses masterha_manager to start the monitoring process
Pre-checks include SSH connectivity validation and replication health verification
The master node is moni ...
Posted on Mon, 10 Aug 2026 16:15:07 +0000 by rayner75
RabbitMQ Cluster Deployment Methods: Multi-Node and Single-Host Configurations
Multi-Host Cluster Deployment (Standard Mode)
Environment Preparation
Prepare three machines with RabbitMQ installed (refer to installation documentation):
10.10.1.41
10.10.1.42
10.10.1.43
Tip: When using virtual machines, create a base VM with RabbitMQ installed, then use linked clones for efficiency.
Configuration Steps
Modify /etc/hosts o ...
Posted on Tue, 04 Aug 2026 16:49:12 +0000 by sl1m
Redis Sentinel Architecture and Automatic Failover Implementation
Core Concepts and System ArchitectureRedis Sentinel provides high availability for Redis deployments by managing automatic failover for master nodes. Built on top of the standard master-slave replication mechanism, it ensures continuous service availability when the primary node fails.Primary FunctionsMonitoring: Continuous health checks on bot ...
Posted on Tue, 28 Jul 2026 16:44:59 +0000 by domainshuffle
Deploying a Highly Available Redis Sentinel Cluster with Docker
Redis Sentinel Architecture OverviewRedis Sentinel provides a robust high-availability solution for Redis instances. Unlike Redis Cluster, which handles data sharding across multiple masters, Sentinel focuses on monitoring, notification, and automatic failover for a single master-slave topology. The system monitors master and slave instances, n ...
Posted on Sun, 26 Jul 2026 17:08:32 +0000 by Harley1979