- Notifications
You must be signed in to change notification settings - Fork27
Composable, purely functional healthchecks in Scala.
License
kubukoz/sup
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
'sup (/sʌp/) provides composable, purely functional healthchecks.
"com.kubukoz" %% "sup-core" % supVersion
Check outthe microsite andthe usage guide.
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.
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.
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.
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.
About
Composable, purely functional healthchecks in Scala.