Skip to content

Commit 71e912f

Browse files
committed
[test] turn on host io cache for opensuse (#32053)
The hope is that this will resolve the problems with very slow io we're seeing on this box in #30295
1 parent d0a0e19 commit 71e912f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Vagrantfile

+5
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,11 @@ Vagrant.configure(2) do |config|
115115
'opensuse-42'.tap do |box|
116116
config.vm.define box, define_opts do |config|
117117
config.vm.box = 'elastic/opensuse-42-x86_64'
118+
119+
# https://github.com/elastic/elasticsearch/issues/30295
120+
config.vm.provider 'virtualbox' do |vbox|
121+
vbox.customize ['storagectl', :id, '--name', 'SATA Controller', '--hostiocache', 'on']
122+
end
118123
suse_common config, box
119124
end
120125
end

0 commit comments

Comments
 (0)