Skip to content
Snippets Groups Projects
Commit e22b3ff1 authored by Stan Hu's avatar Stan Hu
Browse files

Make Redis stop-writes-on-bgsave-error setting configurable

In production systems with replicas, setting
`stop-writes-on-bgsave-error` might be a good idea to prevent out of
disk space errors from crashing Redis.

Changelog: added
parent 093f08d1
No related branches found
No related tags found
2 merge requests!55Intermediate build after shift of stable series,!54GitLab 14.4
......@@ -1228,6 +1228,7 @@
# redis['maxmemory'] = "0"
# redis['maxmemory_policy'] = "noeviction"
# redis['maxmemory_samples'] = "5"
# redis['stop_writes_on_bgsave_error'] = true
# redis['tcp_backlog'] = 511
# redis['tcp_timeout'] = "60"
# redis['tcp_keepalive'] = "300"
......
......@@ -35,6 +35,7 @@
default['redis']['save'] = ['900 1', '300 10', '60 10000']
default['redis']['io_threads'] = 1
default['redis']['io_threads_do_reads'] = false
default['redis']['stop_writes_on_bgsave_error'] = true
default['redis']['rename_commands'] = nil
......
......@@ -226,7 +226,7 @@
# and persistence, you may want to disable this feature so that Redis will
# continue to work as usual even if there are problems with disk,
# permissions, and so forth.
stop-writes-on-bgsave-error yes
stop-writes-on-bgsave-error <%= @stop_writes_on_bgsave_error ? 'yes' : 'no' %>
# Compress string objects using LZF when dump .rdb databases?
# For default that's set to 'yes' as it's almost always a win.
......
......@@ -41,6 +41,7 @@
expect(content).to match(/^lazyfree-lazy-expire no$/)
expect(content).to match(/^io-threads 1$/)
expect(content).to match(/^io-threads-do-reads no$/)
expect(content).to match(/^stop-writes-on-bgsave-error yes$/)
expect(content).not_to match(/^replicaof/)
}
end
......@@ -303,6 +304,23 @@
end
end
context 'with stop writes on bgsave error disabled' do
before do
stub_gitlab_rb(
redis: {
stop_writes_on_bgsave_error: false
}
)
end
it 'creates redis config with stop-writes-on-bgsave-error no' do
expect(chef_run).to render_file('/var/opt/gitlab/redis/redis.conf')
.with_content { |content|
expect(content).to match(/^stop-writes-on-bgsave-error no$/)
}
end
end
context 'with redis disabled' do
before do
stub_gitlab_rb(redis: { enable: false })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment