Fading Coder

One Final Commit for the Last Sprint

Dynamic Rule Configuration and DataSource Extensions in Sentinel

Sentinel treats resource definition as the primary developer concern. Once resources are defined, flow control and circuit breaker rules can be attached dynamically. Two core mechanisms exist for rule updates: Direct API manipulation through dedicated manager classes: FlowRuleManager.loadRules(List&...

Running Redis with Sentinel for High Availability on Linux

Launching Redis with Sentinel on Linux Redis is a popular in‑memory data store used for caching and improving application performance. To maintain uptime and automatically handle failures, the Sentinel system provides monitoring, notification, and automatic failover for Redis instances. This article...

Redis Sentinel Mode: Automatic Failover for High Availability

Overview Manual master-slave failover requires human entervention—stop the application, reconfigure a slave, update configuration files, and restart. This process is time-consuming and introduces service downtime. Redis Sentinel, introduced in version 2.8, provides an automated solution for this pro...

Customizing Block Exception Responses in Sentinel 1.8.0 for Spring MVC

In Sentinel 1.8.0 and later, the legacy WebCallbackManager and UrlBlockHandler interfaces have been phased out. Developers integrating Sentinel with Spring Boot must adopt the BlockExceptionHandler interface to define custom HTTP responses for traffic-rejected requests. Implementing a Custom Handler...