Node-Based Clusters
Explore the structure and management of node-based clusters in Amazon ElastiCache. Understand replication groups, shard and replica roles, cluster modes, endpoint types, parameter groups, and maintenance windows to effectively tailor caching strategies and scale workloads.
While ElastiCache Serverless abstracts infrastructure decisions behind a managed proxy layer, many workloads demand explicit control over shard count, replica count, and node types to meet specific performance, cost, or compliance requirements. The node-based (provisioned) cluster model is the alternative, where engineering teams make these decisions directly and shape the cluster topology to match their workload characteristics.
At the center of every node-based Valkey or Redis OSS deployment in ElastiCache is a
Replication groups, shards, and replicas
A replication group is the top-level resource you create when provisioning a Valkey or Redis OSS cluster in ElastiCache. Inside a replication group, data is organized into one or more
A common misconception is that adding replicas increases write throughput. Replicas improve read scaling and availability, but the number of shards determines write and data-partitioning capacity. Each shard owns a subset of ...