Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support replication_anon #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ master_selection_policies = {
cfg.box.read_only = true
end

log.info("Using policy etcd.instance.read_only, read_only=%s",cfg.box.read_only)
log.info("Using policy etcd.instance.read_only (deperecated), read_only=%s",cfg.box.read_only)
return cfg
end;
['etcd.cluster.master'] = function(M, instance_name, common_cfg, instance_cfg, cluster_cfg, local_cfg)
Expand Down Expand Up @@ -416,6 +416,17 @@ master_selection_policies = {
end

deep_merge(cfg, local_cfg)
if cfg.box.replication_anon then
if cluster_cfg.master == instance_name then
log.error("Instance %s is declared as cluster master, and can't be replication_anon", instance_name)
cfg.box.replication_anon = nil
else
log.info("Instance is configured as anon replica, drop cluster_uuid, instance_uuid and enforce read_only=true")
cfg.box.instance_uuid = nil
cfg.box.replicaset_uuid = nil
cfg.box.read_only = true
end
end

return cfg
end;
Expand Down Expand Up @@ -455,6 +466,10 @@ master_selection_policies = {
end

deep_merge(cfg, local_cfg)
if cfg.box.replication_anon then
log.error("etcd.cluster.raft does not support replication_anon=true (option was dropped)")
cfg.box.replication_anon = nil
end

return cfg
end;
Expand Down
Loading