Open
Description
Product: Tarantool
Root document: https://www.tarantool.io/ru/doc/latest/how-to/replication/repl_sync/
SME: @ Totktonada
Note: take into account a new configuration approach in v3.0 (#3544).
Details
<…>ous replicas.
As a usage example, consider this:
-- Экземпляр 1
|box.cfg{
listen = 3313,
replication_synchro_quorum = 2,
}
box.schema.user.grant('guest', 'super')
_ = box.schema.space.create('sync', {is_sync=true})
_ = _:create_index('pk')|-- Экземпляр 2
box.cfg{
listen = 3314,
replication = <…>
Please add box.ctl.promote()
to instance 1. The current version does not reproduce the desired behavior.