[tarantool-patches] [PATCH v2] replication: do not fetch records twice

Konstantin Belyavskiy k.belyavskiy at tarantool.org
Thu Jun 14 19:11:10 MSK 2018


This is a draft paper covering following topics:
1. Draft protocol for discovering and maintaining network topology
in case of large arbitrary network.
2. List of required changes to support this feature.
3. Open questions and alternatives.

RFC for #3294
---
Ticket: https://github.com/tarantool/tarantool/issues/3294
Branch: https://github.com/tarantool/tarantool/tree/kbelyavs/gh-3294-do-not-fetch-records-twice-rfc
RFC: https://github.com/tarantool/tarantool/blob/kbelyavs/gh-3294-do-not-fetch-records-twice-rfc/doc/rfc/topology_discovering_protocol.md
 doc/rfc/topology_discovering_protocol.md | 66 ++++++++++++++++++++++++++++++++
 1 file changed, 66 insertions(+)
 create mode 100644 doc/rfc/topology_discovering_protocol.md

diff --git a/doc/rfc/topology_discovering_protocol.md b/doc/rfc/topology_discovering_protocol.md
new file mode 100644
index 000000000..f99bbaba2
--- /dev/null
+++ b/doc/rfc/topology_discovering_protocol.md
@@ -0,0 +1,66 @@
+# Topology Discovering Protocol
+
+* **Status**: In progress
+* **Start date**: 25-04-2018
+* **Authors**: Konstantin Belyavskiy @kbelyavs k.belyavskiy at tarantool.org, Georgy Kirichenko @georgy georgy at tarantool.org, Konstantin Osipov @kostja kostja at tarantool.org
+* **Issues**: [#3294](https://github.com/tarantool/tarantool/issues/3294)
+
+## Summary
+
+Introduce a new space **_routing** to store topology - a directed graph of routes between master and connected replicas.
+Each node is responsible to keep its current list of subscriptions in this table. For example, on subscribe a new node inserts new records to this table representing its current list of subscriptions. If connection to some peer is dropped, node should delete associated records (subscription to this node and all nodes subscribed through it if any). Each time a node is connected again, a table also should be updated. Thus, for each change in topology, each affected downstream node (replica) should update associated records in this table.
+Every change in this table should trigger a specific logic, which is responsible for subscriptions and could issue a resubscribe request if, for example, a new node is available or shorter path is found. If there are more than one path available, when a path with shorter number of intermediate peers should be preferred.
+
+This Draft covers following topics:
+- Discovering and maintaining current network topology. Propose a protocol describing how individual peer can observe topology and defining each node responsibility.
+- Selective Subscribe. Extend SUBSCRIBE command with a list of server UUIDs for which SUBSCRIBE should fetch changes. In a full mesh configuration, only download records originating from the immediate peer. Do not download the records from other peers twice.
+- Implement trigger and subscription logic, maintaining subscriptions based on known current network topology.
+
+## Background and motivation
+
+Currently each Tarantool instance will download from all peers all records in their WAL except records with instance id equal to the self instance id. For example, in a full mesh of 3 replicas all record will be fetched twice. Instead, it could send a subscribe request to its peers with server ids which are not present in other subscribe requests.
+In more complex case, if there is no direct connection between two nodes, to subscribe through intermediate peers we should know network topology. So the first task is to build a topology and then a subscription logic based on observed topology.
+
+## Detailed design
+
+Building such topology is possible based on following principles:
+- Each node is required to notify all his downstream peers (replicas) in case of changes with his upstream subscription configuration. It could be done by add/update/delete records in **_routing** table.
+- The connection with lesser count of intermediate nodes has the highest priority. Lets define the number of edges between two peers as a Depth. So if A has direct connection with B, then Depth is 1 and if A connected with C through B, then Depth is 2. So if direct path between two nodes exists then it should be used in downstream peer subscription.
+- In case of equal Depth connections first wins. But if shorter path is found, then node first should reconnect and then notify downstream peers with updated paths.
+
+**_routing** table details.
+
+| Subscriber | Replication Source | Subscribed via | Depth   |
+| :--------- | :----------------- | :------------- | :------ |
+| UUID       | UUID               | UUID           | Integer |
+
+So peer notifies his downstream peers (replicas) with updates in **_cluster** table which replicates to peers. When transmitting updated path to next level, increment Depth by one (if B connected to A with depth X and B is has only one upstream C then record will be {UUID_C, UUID_A, UUID_B, X+1}).
+
+### List of changes
+
+1. Extend IPROTO_SUBSCRIBE command with a list of server UUIDs for which SUBSCRIBE should fetch changes. Store this UUIDs within applier's internal data structure. By default issuing SUBSCRIBE with empty list what means no filtering at all.
+2. Implement white-list filtering in relay. After processing SUBSCRIBE request, relay has a list of UUIDs. Extract associated peer ids and fill in a filter. By default transmit all records, unless SUBSCRIBE was done with at least one server UUID. In latter case drop all records except originating from replicas in this list.
+3. After issuing REQUEST_VOTE to all peers, subscription logic knows a map of server UUIDs, their peers and their vclocks. For each reachable UUID select shortest path and assign UUIDs to direct peer through it this pass goes. Issue the subscribe requests. Notify downstream peers with new topology.
+4. Rebalancing. Connect/disconnect should trigger logic to start reassigning process.
+ - On disconnect first find "orphan" and then reassigned all reachable UUIDs to direct peers through who shortest path goes. Notify downstream peers.
+ - On connect, by iterating through appliers list, find UUIDs with shorter path found, reassign them to correct peers and issue SUBSCRIBE for recently connected applier and for the one from whom we get these UUIDs back.
+
+### Details and open questions
+
+On connect (new client or the old one reconnects) two options are available:
+1. SUBSCRIBE only to direct peer and wait for updates in **_cluster** to initiate further subscriptions.
+2. SUBSCRIBE without any UUIDs (that means subscribe to all).
+
+## Rationale and alternatives
+
+### Topology Discovering
+
+Instead of **_cluster** table updates, encoded _iproto_ messages could be used. In this case, on every change in peer upstream topology, it should send a Map of *{UUID: depth}* representing its current list of subscriptions to all downstream peers (excluding subset of subscriptions obtaining from this peer in master-master configuration).
+
+### On network configuration change
+
+On network configuration change what first, to notify peers or try to resubscribe?
+1. If the peer is a direct peer, then we have most recent information about this node based on connection status. If available subscribe and immediately notify downstream peers.
+2. On disconnect, it's more complex since in a connected subset if some node is disconnected, others can try to reconnect to this dead node through other nodes, but they do decisions based on old information resulting to massive resubscribe request (node A thinks that it has connection to C through B, but B thinks that it is connected through A). So I think, first need to notify replicas, that connection is dropped, and if other path is available try to resubscribe and then notify all downstream again. Or need to think about some kind of acknowledgement since it could be based on outdated information.
+3. On shorter path found, first resubscribe, then notify downstream peers.
+4. Balancing. It's possible to slightly extend topology with number of peers subscribed for balancing but does it really needed?
-- 
2.14.3 (Apple Git-98)





More information about the Tarantool-patches mailing list