34

Hystrix Vs. Sentinel: A Tale of Two Circuit Breakers (Part 1)

 5 years ago
source link: https://www.tuicool.com/articles/hit/NNrIZfI
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Hystrix has been pretty popular over the last several years. Now that it is in maintenance mode, many people are seeking alternatives. In this article, I will introduce Sentinel: an open-source Java flow control project. I will do so by comparing it with Hystrix, since more people are familiar with it. In this part, we'll compare these two at a higher level. In the next article, we'll look at some code examples.

bmInmuE.png!web

What Is Sentinel?

In short, it is a circuit breaker. A circuit breaker is triggered when certain resources keep failing. Instead of continuing to pound the already failing resource, the circuit breaker will intercept the request and return a failure signal. That sounds similar to every circuit breaker pattern. However, Sentinel offers more choices such as flow shaping, overload protection, and fault tolerance.

History of Sentinel

  • 2012: Sentinel started as a flow control component in Alibaba.
  • 2013-2017: with the wild growth of microservices comes the challenge of reliability. Sentinel quickly grows into a tool to prevent cascading disaster.
  • 2018: Sentinel is open-sourced by Alibaba.

What Is Sentinel For?

J3UjY3R.png!web

  • Sential provides many options to handle flow control. Users can choose to shape traffic based on QPS, thread pool numbers, system load, as well as using commands directly to stop traffic or to perform cold start. User can also mix and match different rules. Hystrix doesn't really offer comprehensive traffic shaping. NzEnM3A.png!web
  • Sentinal offers fault isolation and circuit breaking. This is similar to Hystrix. However, their approaches are different.
  • Sentinal offers real-time monitoring. It also provides a dashboard to aggregate information from the distributed system.

Av6ra2V.png!web

How Is Sentinel Different From Hystrix?

The key difference between the two lies in how isolation is achieved. Hystrix normally uses bulkhead pattern to isolate dependencies. It puts each dependency in a seperate thread pool. The main benefit of doing this is it provides a clean cut. The drawbacks mainly include the computational overhead thread pool management incurs.

Sentinel, on the other hand, uses a counter for each dependency. By doing so, not only does it save the overhead of managing the thread pool, but it also gives more control to the user. The user now gets to decide the granularity of degradation of the flow.

This table lists more details of the difference Hystrix and Sentinel in design and implementation:

Feature in Hystrix Details of difference Feature in Sentinel Thread Pool Isolation / Semaphore Isolation Sentinel does not support thread pool isolation; In Sentinel, flow control in thread count mode represents semaphore isolation. If you are using semaphore isolation, you can simply add flow rules for target resource. Thread Count Flow Control Circuit Breaker Sentinel supports circuit breaking by average response time, exception ratio and exception count. If you want to use circuit breaking in Sentinel, you can simply configure degrade rules for target resource. Circuit breaking with various strategy Command Definition You can define your resource entry (similar to command key) via SphU API in Sentinel. Resource definition and rule configuration are separate. Resource Entry Definition Command Configuration Rules can be hardcoded through the xxxRuleManager API in Sentinel, and multiple dynamic rule data sources are also supported. Rule Configuration HystrixCommand annotation Sentinel also provides annotation support ( SentinelResource ), which is easy to use. SentinelResource annotation Spring Cloud Netflix Sentinel provides out-of-box integration modules for Servlet, Dubbo, Spring Cloud, and gRPC. If you were using Spring Cloud Netflix previously, it's east for you to migrate to Spring Cloud Alibaba.

Spring Cloud Alibaba

This may seem a little overwhelming. Users won't notice much difference from a user experience  perspective, though.

The Ecosystem

Sentinal is well suited for the cloud-native environment. It can be integrated with other popular cloud native solutions. One of them is Spring Cloud. Another popular java distributed framework in China is Dubbo. Sentinal can also work side by side with service mesh solutions such as Istio and Envoy.

Reference

Sentinal will soon be released as part of the Spring Boot framework. For more information, please visit their GitHub repo .


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK