After I migrated my app to apps v2 (machines) i have noticed that brand new fly.toml file has
[services.concurrency]
type = "connections"
hard_limit = 1000
soft_limit = 1000
while docs mention much lower values
[services.concurrency]
type = "connections"
hard_limit = 25
soft_limit = 20
I have no idea how many connections my app can handle in reality. Docs mention it in conjunction with load balancing and auto scaling. I don’t think that auto scaling is applicable to machines (at least not yet?), so is this even relevant? What are the recommended defaults?