Some QA builds are exiting due to an inability to allocate heap.

We should just bump the available memory to 4GB, which is plenty reasonable,
as a starting point.

See https://logstash-ci.elastic.co/job/elastic+logstash+6.x+multijob-acceptance/label=metal,suite=redhat/84/console for an example

Fixes #9640
This commit is contained in:
Andrew Cholakian 2018-05-22 13:55:22 -05:00
parent fb16b7b984
commit 042feafcad

2
qa/Vagrantfile vendored
View file

@ -9,7 +9,7 @@ Vagrant.configure(2) do |config|
config.vm.define platform.name do |machine| config.vm.define platform.name do |machine|
machine.vm.box = platform.box machine.vm.box = platform.box
machine.vm.provider "virtualbox" do |v| machine.vm.provider "virtualbox" do |v|
v.memory = 2096 v.memory = 4096
v.cpus = 4 v.cpus = 4
end end
machine.vm.synced_folder "../build", "/logstash-build", create: true machine.vm.synced_folder "../build", "/logstash-build", create: true