]> git.openstreetmap.org Git - rails.git/commitdiff
Increase memory given to the virtualbox vm
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 16 Dec 2020 18:23:38 +0000 (18:23 +0000)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 16 Dec 2020 18:25:39 +0000 (18:25 +0000)
Fixes #2972

Like others, I found that the previous setting caused OOM failures, and
4096 was sufficient. I suspect lower values will also work, but I don't
have time or inclination to bisect a smaller value.

Vagrantfile

index 271c0b3f51602e30137abe3dbf411d2fe740bf7f..2ef8991231eefbb81141a82ab342ce3039e4fb88 100644 (file)
@@ -6,7 +6,7 @@ Vagrant.configure("2") do |config|
   config.vm.provider "virtualbox" do |vb, override|
     override.vm.box = "ubuntu/focal64"
     override.vm.synced_folder ".", "/srv/openstreetmap-website"
-    vb.customize ["modifyvm", :id, "--memory", "1024"]
+    vb.customize ["modifyvm", :id, "--memory", "4096"]
     vb.customize ["modifyvm", :id, "--cpus", "2"]
     vb.customize ["modifyvm", :id, "--uartmode1", "disconnected"]
   end