mirror of
https://github.com/elastic/logstash.git
synced 2025-06-28 09:46:03 -04:00
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:
parent
fb16b7b984
commit
042feafcad
1 changed files with 1 additions and 1 deletions
2
qa/Vagrantfile
vendored
2
qa/Vagrantfile
vendored
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue