Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fallback to local in-memory counter if Redis is unavailable #15

Merged
merged 12 commits into from
Aug 5, 2024

Conversation

VojtechVitek
Copy link
Contributor

@VojtechVitek VojtechVitek commented Jul 26, 2024

When Redis becomes unavailable:

Before

Screen Shot 2024-07-26 at 7 29 05 PM
  • ❌ The whole system stopped responding. It only responded with HTTP 428's very slowly (5s timeout):
  • ❌ Also, during the boot time, the system used to panic with fatal error, causing the application to enter crash loop:
    panic: httprateredis: unable to dial redis host 127.0.0.1:6379
    
    goroutine 1 [running]:
    github.com/go-chi/httprate-redis.WithRedisLimitCounter(0x98?)
    	/Users/vojtechvitek/go-chi/httprate-redis/httprateredis.go:21 +0xa8
    exit status 2
    

After:

Screen Shot 2024-07-26 at 6 40 20 PM
  • ✅ The system is now resilient to Redis failures.
  • ✅ The application can boot up no matter if Redis is available.
  • ✅ Rate-limiting still works with the in-memory counter fallback.
  • ❗ The rate limit is not distributed across all servers anymore. Each server instance counts its rate-limit independently, thus allowing the total of N * rate requests (where N is number of app replicas running at a time).

@VojtechVitek VojtechVitek force-pushed the mdBBjs4C branch 2 times, most recently from b6522fe to 11e6024 Compare July 26, 2024 17:19
@go-chi go-chi deleted a comment from github-actions bot Jul 26, 2024
@go-chi go-chi deleted a comment from github-actions bot Jul 26, 2024
@go-chi go-chi deleted a comment from github-actions bot Jul 26, 2024
@c2h5oh
Copy link

c2h5oh commented Jul 26, 2024

One option to keep the limit roughly the same when redis is not available would be passing replica count to rate limiter so it would adjust limits to rate/N automatically

@go-chi go-chi deleted a comment from github-actions bot Jul 26, 2024
@go-chi go-chi deleted a comment from github-actions bot Jul 26, 2024
Copy link

github-actions bot commented Aug 5, 2024

Benchmark Results

goos: linux
goarch: amd64
pkg: github.com/go-chi/httprate-redis
cpu: AMD EPYC 7763 64-Core Processor                
               │ master.txt │
               │   sec/op   │
LocalCounter-4   1.031 ± 4%

               │  master.txt  │
               │     B/op     │
LocalCounter-4   38.88Mi ± 0%

               │ master.txt  │
               │  allocs/op  │
LocalCounter-4   1.272M ± 0%

Copy link

github-actions bot commented Aug 5, 2024

Benchmark Results

goos: linux
goarch: amd64
pkg: github.com/go-chi/httprate-redis
cpu: AMD EPYC 7763 64-Core Processor                
               │  master.txt  │
               │    sec/op    │
LocalCounter-4   852.7m ± 19%

               │  master.txt  │
               │     B/op     │
LocalCounter-4   35.30Mi ± 0%

               │ master.txt  │
               │  allocs/op  │
LocalCounter-4   1.237M ± 0%

Copy link

github-actions bot commented Aug 5, 2024

Benchmark Results

goos: linux
goarch: amd64
pkg: github.com/go-chi/httprate-redis
cpu: AMD EPYC 7763 64-Core Processor                
               │ master.txt  │
               │   sec/op    │
LocalCounter-4   975.9m ± 6%

               │  master.txt  │
               │     B/op     │
LocalCounter-4   37.07Mi ± 5%

               │ master.txt  │
               │  allocs/op  │
LocalCounter-4   1.254M ± 1%

Copy link

github-actions bot commented Aug 5, 2024

Benchmark Results

goos: linux
goarch: amd64
pkg: github.com/go-chi/httprate-redis
cpu: AMD EPYC 7763 64-Core Processor                
               │ master.txt  │
               │   sec/op    │
LocalCounter-4   879.3m ± 2%

               │  master.txt  │
               │     B/op     │
LocalCounter-4   35.25Mi ± 0%

               │ master.txt  │
               │  allocs/op  │
LocalCounter-4   1.236M ± 0%

redis mget failed: ERR Unknown subcommand or wrong number of arguments for 'setinfo'. Try CLIENT HELP.
Copy link

github-actions bot commented Aug 5, 2024

Benchmark Results

goos: linux
goarch: amd64
pkg: github.com/go-chi/httprate-redis
cpu: AMD EPYC 7763 64-Core Processor                
               │ master.txt  │
               │   sec/op    │
LocalCounter-4   860.0m ± 3%

               │  master.txt  │
               │     B/op     │
LocalCounter-4   35.25Mi ± 0%

               │ master.txt  │
               │  allocs/op  │
LocalCounter-4   1.236M ± 0%

Copy link

github-actions bot commented Aug 5, 2024

Benchmark Results

goos: linux
goarch: amd64
pkg: github.com/go-chi/httprate-redis
cpu: AMD EPYC 7763 64-Core Processor                
               │ master.txt  │
               │   sec/op    │
LocalCounter-4   1.019 ± 10%

               │  master.txt  │
               │     B/op     │
LocalCounter-4   38.85Mi ± 9%

               │ master.txt  │
               │  allocs/op  │
LocalCounter-4   1.272M ± 3%

Copy link

github-actions bot commented Aug 5, 2024

Benchmark Results

goos: linux
goarch: amd64
pkg: github.com/go-chi/httprate-redis
cpu: AMD EPYC 7763 64-Core Processor                
               │ master.txt │
               │   sec/op   │
LocalCounter-4   1.088 ± 3%

               │  master.txt  │
               │     B/op     │
LocalCounter-4   38.91Mi ± 0%

               │ master.txt  │
               │  allocs/op  │
LocalCounter-4   1.272M ± 0%

Copy link

github-actions bot commented Aug 5, 2024

Benchmark Results

goos: linux
goarch: amd64
pkg: github.com/go-chi/httprate-redis
cpu: AMD EPYC 7763 64-Core Processor                
               │ master.txt │
               │   sec/op   │
LocalCounter-4   1.017 ± 6%

               │  master.txt  │
               │     B/op     │
LocalCounter-4   38.94Mi ± 0%

               │ master.txt  │
               │  allocs/op  │
LocalCounter-4   1.273M ± 0%

Copy link

github-actions bot commented Aug 5, 2024

Benchmark Results

goos: linux
goarch: amd64
pkg: github.com/go-chi/httprate-redis
cpu: AMD EPYC 7763 64-Core Processor                
               │ master.txt  │
               │   sec/op    │
LocalCounter-4   861.2m ± 3%

               │  master.txt  │
               │     B/op     │
LocalCounter-4   35.29Mi ± 0%

               │ master.txt  │
               │  allocs/op  │
LocalCounter-4   1.237M ± 0%

Copy link

github-actions bot commented Aug 5, 2024

Benchmark Results

goos: linux
goarch: amd64
pkg: github.com/go-chi/httprate-redis
cpu: AMD EPYC 7763 64-Core Processor                
               │ master.txt  │
               │   sec/op    │
LocalCounter-4   864.1m ± 1%

               │  master.txt  │
               │     B/op     │
LocalCounter-4   35.29Mi ± 0%

               │ master.txt  │
               │  allocs/op  │
LocalCounter-4   1.237M ± 0%

Copy link

github-actions bot commented Aug 5, 2024

Benchmark Results

goos: linux
goarch: amd64
pkg: github.com/go-chi/httprate-redis
cpu: AMD EPYC 7763 64-Core Processor                
               │  master.txt  │
               │    sec/op    │
LocalCounter-4   898.2m ± 12%

               │  master.txt  │
               │     B/op     │
LocalCounter-4   35.25Mi ± 1%

               │ master.txt  │
               │  allocs/op  │
LocalCounter-4   1.236M ± 0%

@VojtechVitek VojtechVitek merged commit 487f95a into master Aug 5, 2024
3 checks passed
@VojtechVitek VojtechVitek deleted the mdBBjs4C branch August 5, 2024 14:24
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants