Reactive Programming: Handling Service Timeouts and Retries with Retry4j
The Reactive Manifesto specifies responsive, resilient, elastic and message-driven as attributes for a reactive application. When implementing specific mechanisms to achieve this requirements, we often...
View ArticleDynamic Configuration Management with Netflix Archaius and Apache ZooKeeper,...
Though having written about other configuration management libraries for Java before, I would like to demonstrate another one today: Netflix Archaius. Archaius offers some nice features like dynamic...
View ArticleResilient Architecture in Practice – Circuit Breakers for Java: Failsafe,...
When dealing with remote services or APIs there is always the risk of latency issues, failures or connection losses. The worst thing to happen is when the remote service is down and our application...
View ArticleReactive Streams – Java 9 Flow API, RxJava, Akka and Reactor Examples
Reactive Streams is an initiative trying to standardize asynchronous stream processing with non-blocking back-pressure. With Java 9, new classes in the java.util.concurrent.flow package offer a...
View ArticleImplementing Reactive Client-Server Communication over TCP or Websockets with...
Reactive design or reactive architecture has an impact on how modern software systems are implemented. RSocket is a project that aims to adapt the benefits of the patterns described in the Reactive...
View Article