Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Composable, purely functional healthchecks in Scala.

License

NotificationsYou must be signed in to change notification settings

kubukoz/sup

Repository files navigation

Join the chat at https://gitter.im/sup-scala/communityBuild StatusLatest versionMaven CentralLicense

Powered by catsGluten free

'sup (/sʌp/) provides composable, purely functional healthchecks.

"com.kubukoz" %% "sup-core" % supVersion

Check outthe microsite andthe usage guide.

Why?

If your application has any external dependencies, its ability to work properly relies on the availability of these dependencies.Most applications communicate with at least one database, and sometimes a service provided by someone else (e.g. Amazon S3, PayPal and so on).It's also common to talk to a message broker (Kafka, RabbitMQ, ActiveMQ, etc.). In the microservice world, your applications will probably talk to each other, as welll.

The last thing you want to happen is some other system's problem causing downtime in yours.We're living in a world wherethe network isn't reliable,and even healthy services can fail to respond to your requests due to network issues at any time.

By relying on systems living beyond your application's control, you reduce yourSLAto the lowest SLA of your dependencies. Even if your application has nine nines of availability (99.9999999%) on its own,but it requires S3 (with uptime of 99.9%) to be up, your application is only available for 99.9% of the time.

Because of the risk associated with external services, modern applications employ a range of fault tolerance and isolation mechanisms,like circuit breakers, rate limiters and bulkheads.To ensure that our applications handle failure properly, and that we can react to problems in the systemknowing what exactly doesn't work, we also track its health bymonitoring, tracing and other diagnostics.

We also use health checks.

Health checks

The health check pattern usually involves having an API endpoint that reports the health of your application,including the health of each external dependency. It's reasonable that the information the endpoint exposes be cachedand automatically refreshed, and protected by a circuit breaker to ensure that checking the healthdoesn't make matters worse.

Goals of this project

The main goal of sup is to provide a reusable model for working with health checks, as well asa range of utilities for customizing them by e.g. adding timeouts or error recovery.It also provides implementations for health checks of some popular integrations (JDBC, HTTP, etc.).

It's a design decision not to include any sort of metrics, response times, version information or other statisticsin sup - they are simply beyond the scope of health checks.Although some of these can be implemented by users and used with sup, they're not officially supported.

Another design decision is that health is binary - a service is either healthy or not,and there's no "unknown" state.

Code of conduct

This project supports theScala code of conduct and wants communication on all its channels (GitHub etc.) to be inclusive environments.

If you have any concerns about someone's behavior on these channels, contactJakub Kozłowski.


[8]ページ先頭

©2009-2025 Movatter.jp