Hi,
As you can see from the screenshot, there are many machines available in ewr but for some reason most requests hit 2 machines and causes timeout.
Here it fly.toml file.:
app = "my-api"
primary_region = "ewr"
kill_signal = "SIGINT"
kill_timeout = "180s"
[experimental]
auto_rollback = true
[build]
builder = "heroku/builder:22"
[[services]]
protocol = "tcp"
internal_port = 7000
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 5
processes = ["app"]
[[services.ports]]
port = 80
handlers = ["http"]
force_https = true
[[services.ports]]
port = 443
handlers = ["tls", "http"]
[services.concurrency]
type = "requests"
soft_limit = 150
[[services.tcp_checks]]
interval = "15s"
timeout = "25s"
grace_period = "4s"
restart_limit = 2
This app is an API.