Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eapache/Go-resiliency
Resiliency patterns for golang
https://github.com/eapache/Go-resiliency
go golang resiliency resiliency-patterns
Last synced: 14 days ago
JSON representation
Resiliency patterns for golang
- Host: GitHub
- URL: https://github.com/eapache/Go-resiliency
- Owner: eapache
- License: mit
- Created: 2014-11-29T04:11:32.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2024-09-18T19:24:36.000Z (about 2 months ago)
- Last Synced: 2024-10-19T16:55:27.329Z (19 days ago)
- Topics: go, golang, resiliency, resiliency-patterns
- Language: Go
- Homepage: https://godoc.org/github.com/eapache/go-resiliency
- Size: 81.1 KB
- Stars: 2,205
- Watchers: 28
- Forks: 144
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
go-resiliency
=============[![Golang CI](https://github.com/eapache/go-resiliency/actions/workflows/golang-ci.yml/badge.svg)](https://github.com/eapache/go-resiliency/actions/workflows/golang-ci.yml)
[![GoDoc](https://godoc.org/github.com/eapache/go-resiliency?status.svg)](https://godoc.org/github.com/eapache/go-resiliency)
[![Code of Conduct](https://img.shields.io/badge/code%20of%20conduct-active-blue.svg)](https://eapache.github.io/conduct.html)Resiliency patterns for golang.
Based in part on [Hystrix](https://github.com/Netflix/Hystrix),
[Semian](https://github.com/Shopify/semian), and others.Currently implemented patterns include:
- circuit-breaker (in the `breaker` directory)
- semaphore (in the `semaphore` directory)
- deadline/timeout (in the `deadline` directory)
- batching (in the `batcher` directory)
- retriable (in the `retrier` directory)*Note: I will occasionally bump the minimum required Golang version without
bumping the major version of this package, which violates the official Golang
packaging convention around breaking changes. Typically the versions being
dropped are multiple years old and long unsupported.*