Menu
Sign In Search Podcasts Charts People & Topics Add Podcast API Blog Pricing

Gerhard Lazu

๐Ÿ‘ค Speaker
1554 total appearances

Appearances Over Time

Podcast Appearances

I've confirmed that the requests have been hanging.

You are getting the hangs this afternoon as well.

This was only three weeks ago.

So this has been going on for a while.

I dug deeper and I found the problem.

The problem was that in the fly config, we had the concurrency set to connections, not requests.

So it's possible to configure an application.

Again, you're configuring the fly proxy that sits in front of the application to limit how much traffic hits your application.

So requests, how many requests per second should the fly proxy forward to your application before it stops?

Because you don't want it to get overloaded.

So before it starts throttling, it starts slowing clients down.

And then when you start seeing fly edge errors.

connections you would use for something that has long-running connections, like a database, for example.

In our case, it's not a database, right?

So requests would have been the right concurrency.