For servers with <= 2GB of RAM, running ./discourse-setup will prompt for and automatically create a 2GB swapfile.
Most cloud virtual machine providers do not set up swapfiles as part of their server provisioning.
In particular, upgrading Discourse produces a lot of memory pressure. With a swap file, rather than randomly terminating processes with an out of memory error, things will slow down instead. Having a swap file is a cheap insurance policy that protects you from many other load related failures.
This can be done at any time from the command line on your server.
Set up a 2GB swap file
We recommend a 2GB swap file for Discourse, unless your server has 4GB or more of memory.
In the shell you have opened to your droplet, do the following:
You will need to be root for much of this, so either be root or sudo -s before running these commands! Don’t forget to exit root afterwards.
Yes - but if you change your server config, or perhaps if you do a migration, you might need to look after this yourself. (At the same time there are two important kernel configs to change which the installation does not look after - see MKJ’s Opinionated Discourse Deployment Configuration
It looks like 2+2 may not be enough any more… I’m managing a fairly unassuming (no big/fancy plugins, etc) Discourse instance that, as of today, is failing to bootstrap because ember is chewing all the RAM it can find, and all the swap, and grinding the machine into unresponsiveness. Adding another 2GB of swap allowed the bootstrap to complete, with a peak swap usage of around 2.5GB.
@david has been investigating, we do confirm that as it stands 2gb is enough for docker rebuilds, but not enough for the web upgrader to work.
One idea I have tossed around is just shutting down all ruby processes during the web upgrader to save an extra 300-500mb which would leave enough for asset precompilation.
A long term approach we are likely going to need to go down for self hosters is shipping bootstrapped containers which is a pandoras box cause how would a web upgrader be able to pull that one off. We don’t want to mount docker sockets …
Indeed, it’s not perfectly consistent. Even with everything else shut down, it can still fail.
Unfortunately we’re fighting a losing battle against modern JS build tooling here. It’s all designed to run on 8GB+ of Ram on modern developer machines, not 1GB VPSs
We do have some solutions in mind. For example: providing pre-built assets which can be automatically downloaded. The big challenge we have is plugins, because they vary on everyone’s site, and right now they’re integrated tightly into the core build.
But for now, doing a full CLI rebuild should have a higher success rate than a web-ui update.