We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentd1698fc commit4c776e1Copy full SHA for 4c776e1
contrib/raftable/Makefile
@@ -1,4 +1,4 @@
1
-MODULES = raftable
+MODULES = raftable worker blockmem state
2
EXTENSION = raftable
3
DATA = raftable--1.0.sql
4
contrib/raftable/README
@@ -9,10 +9,8 @@ When 'frontend' issues a read command, the 'backend' returns the data from the
9
local replica of the 'state' which is in the shared memory of current instance.
10
11
When 'frontend' issues a write command, the 'backend' connects to the current
12
-'raftable' leader directly through TCP. Raftable leader returns the state
13
-version number V after the update gets applied (acked by the majority of
14
-'raftable' workers). Then the backend waits until the local state version
15
-number becomes at least V and returns 'ok' to the frontend.
+'raftable' leader directly through TCP and sends an update. Raftable leader
+returns 'ok' to the backend when the update gets applied on current instance.
16
17
The backend can also issue commands to itself through C API.
18