config: fix names not always applying after config reload
We need to apply instance/replicaset_name as soon as the instance becomes RW, so currently we try to do so at every box.status broadcast. Even though broadcast happens pretty often, it's not enough: The bug is reproduced in config-luatest/set_names_reload, which checks the following situation: 1. Cluster is recovered from the xlogs without names set. 2. User forgets to set UUID for one replica, starts the cluster. 3. Replica, UUID of which have not been set, fails to start. 4. User notices that and updates config, reloading it on the instances, which succeeded to start, starting failed one. 5. Master must apply name for a failed replica. The test worked all right in the majority of runs, because box.status broadcast happens often: e.g. it's broadcasted, when master's applier synced with replica. However, under heavy load on CPU, the test failed sometimes, when master fails to subscribe on replica and broadcast doesn't happen. Let's try to set names not only, when box.status is broadcasted, but immediately after reload, as at this time new names, which must be set, might appear. Let's also change test so that, it doesn't rely on broadcast anymore. Closes tarantool/tarantool-qa#328 NO_DOC=bugfix
Showing
- changelogs/unreleased/config-set-names-on-reload.md 3 additions, 0 deletionschangelogs/unreleased/config-set-names-on-reload.md
- src/box/lua/config/applier/box_cfg.lua 12 additions, 7 deletionssrc/box/lua/config/applier/box_cfg.lua
- test/config-luatest/set_names_reload_test.lua 13 additions, 7 deletionstest/config-luatest/set_names_reload_test.lua
Please register or sign in to comment