Home / Companies / Aerospike / Blog / August 2026

August 2026 Summaries

5 posts from Aerospike

Filter
Month: Year:
Post Summaries Back to Blog
Rising server CPU core counts, including AMD EPYC processors with up to 256 cores per socket, are increasing pressure on database architectures to use parallel hardware efficiently rather than relying on faster individual cores. The passage distinguishes sharding across machines from process-per-core scaling within a machine, arguing that the latter can tie process counts, routing, monitoring, and rebalancing complexity directly to available cores. It says highly concurrent agentic AI workloads amplify these concerns because they generate many small, overlapping database operations. Aerospike is presented as using a multithreaded, NUMA-aware model that distributes work across cores within a single database process and separates migration activity from client-serving threads, while Redis is characterized as commonly using multiple single-threaded processes to utilize multicore systems. An independent McKnight Consulting Group benchmark cited in the passage found that, on equivalent four-node 32-core clusters, Aerospike achieved 2.39 million operations per second and 0.2% rate jitter versus Redis’s 2.10 million operations per second and 4.4% jitter, while using four total processes instead of 128. The passage concludes that as hardware grows denser, native multicore database designs may reduce the operational overhead associated with process multiplication, though process-based architectures can still scale effectively.
Aug 26, 2026 1,824 words in the original blog post.
Feast now supports Aerospike as an online feature store, enabling machine learning teams to serve growing feature workloads with low, predictable latency without requiring all data to reside in memory. Aerospike’s Hybrid Memory Architecture keeps indexes in RAM while storing feature data on SSD, aiming to deliver near in-memory performance at lower cost and greater scale for latency-sensitive applications such as fraud detection, personalization, and real-time bidding. Benchmarks using Feast’s end-to-end testing harness found that Aerospike matched an in-memory store for small requests and remained responsive under heavier workloads where the in-memory option degraded, while retaining feature data on SSD. The integration is configured through Feast’s standard online-store interface, supports selectively routing highly latency-sensitive feature views to memory-backed namespaces, and recommends grouping commonly requested features together or precomputing wide feature services to reduce reads. Users are advised to pin Feast versions and validate failover, TTL, and namespace placement in staging before production deployment.
Aug 20, 2026 831 words in the original blog post.
Aerospike announced a Feast integration that allows it to serve as an online store for real-time feature retrieval and evaluated its performance with Feast’s public benchmark harness against published Redis and DynamoDB results across varying entity counts, feature counts, and request rates. The tests used an end-to-end setup involving a load generator, Python feature server, and online store, though the results were gathered on different hardware and at different times, so the comparison emphasizes workload patterns rather than exact latency ratios. Under smaller and moderate requests, Aerospike reportedly delivered latency comparable to Redis and lower than DynamoDB, while at higher loads it maintained successful requests through the tested 100 RPS level for workloads of 100 entities and 50 features, where Redis and DynamoDB showed declining success rates. For a larger 100-entity, 250-feature workload, Aerospike was the only tested store to complete requests, though only at lower request rates, indicating limits in the full serving stack rather than necessarily the databases alone. The report attributes Aerospike’s performance and potential cost advantage to its Hybrid Memory Architecture, which retains indexes in memory while placing feature data on SSD, and illustrates that this approach could require substantially less RAM than an all-memory Redis deployment as feature-store datasets grow, although actual costs and performance depend on deployment-specific workload, infrastructure, and latency requirements.
Aug 20, 2026 1,748 words in the original blog post.
“Jitter” has three distinct meanings that require different diagnoses and remedies: in distributed systems, it is deliberate randomization of retry delays to prevent synchronized retry storms; in performance engineering, it is unintended latency variability caused by factors such as garbage collection, scheduling, IO stalls, and background maintenance; and in networking, it is packet-delay variation that disrupts real-time audio and video. Retry jitter complements exponential backoff by spreading client requests over time, with full, equal, and decorrelated approaches suited to different conditions, while effective implementations require independently seeded randomness and may need to randomize initial requests as well as retries. Latency jitter should be assessed through tail metrics such as p99 rather than averages, and benchmarks must avoid coordinated omission by continuing to generate or account for requests during stalls. Network jitter is typically addressed through connection diagnostics and jitter buffers. The discussion emphasizes that jitter cannot solve persistent overload, which instead calls for mechanisms such as rate limiting, circuit breakers, load shedding, and adaptive concurrency, and suggests identifying the correct meaning by asking whether the timing variation was intentionally introduced, observed in application latency, or measured in packet arrivals.
Aug 12, 2026 2,714 words in the original blog post.
AI shopping agents are expected to place unusual pressure on e-commerce infrastructure during Black Friday by querying large portions of product catalogs at machine speed, including infrequently accessed items. The text argues that conventional Redis caches depend on a small, stable set of popular data, so broad agent-driven requests can generate cache misses, displace frequently used records, lower hit rates for all customers, and potentially overload underlying databases through escalating latency and retries. It presents Aerospike as an alternative cache that uses NVMe storage to retain substantially more data at memory-like latency, claiming this can reduce eviction, avoid cold-path reads, and support catalog-wide access without relying on a limited hot set. The piece also promotes Aerospike as a relatively easy Redis replacement that retailers could test before holiday-season code freezes, alongside claims of superior multi-terabyte performance and lower transaction infrastructure costs.
Aug 11, 2026 709 words in the original blog post.