excess capacity, autostopping machine d8ddd77f71e318. 0 out of 1 machines left running

Hi guys, I need some help, my machine is returning this error, but I’m nowhere near capacity, I’d like to know what’s going on, because I couldn’t find the problem to solve it.

It has stopped for the second time, the first was a few days ago when I made a call from the api and today it gave this error when I logged in via the api that uses supabase, so there is no data that has been received/sent that is large or multiple calls

That’s not an error, it’s just an info log that tells you the machine is sleeping due to no traffic.

2 Likes

Hiya @RodrigoTrade. If you don’t want your app to go to sleep, show us your YAML config, and perhaps readers can explain how it can be modified to ensure you always have at least one machine running.

app = “xxx”
primary_region = “ord”
swap_size_mb = 2_048

[build.args]
NODE_ENV = “staging”

[deploy]
release_command = “npm run migrate-and-seed”

[env]
PORT = “4000”

[http_service]
auto_start_machines = true
auto_stop_machines = true
force_https = true
internal_port = 3_000
min_machines_running = 0
processes = [ “app” ]

[[vm]]
cpu_kind = “shared”
memory = “2GB”
size = “shared-cpu-8x”

:up_arrow: Use Markdown please!

```
Use backticks like so, above and below
Then you can put code, config, logs, etc.
In a preformatted fashion
```

I should think you can just delete this line, and then redeploy. Or swap it to 1.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.