Reputation: 981
I'm implementing the circuit breaker design pattern for a large scale distributed system (on AWS).
Netflix gives a great description here: http://techblog.netflix.com/2011/12/making-netflix-api-more-resilient.html
I need some advice for the backend monitoring database implementation. Basically, I need a database/daemon/service that can do the following:
Is there an existing database or other software that's good for this task? I doubt Netflix will give me theirs ;)
Upvotes: 2
Views: 2152
Reputation: 8157
They use Cassandra at the backend. Check this article about Netflix architecture...
Upvotes: 1