Aucune description

Jan Friesse c928a61e1d build: Support for git archive stored tags il y a 7 ans
build-aux c928a61e1d build: Support for git archive stored tags il y a 7 ans
common_lib bb5946babb build: clean AM_CFLAGS and AM_CPPFLAGS usage around il y a 13 ans
conf e1155afb2d corosync.aug: Add missing options il y a 8 ans
cts 185bc5ba9f NSS_NoDB_Init: the parameter is reserved, must be NULL il y a 7 ans
exec f3279d11bb totemsrp: Add assert into memb_lowest_in_config il y a 7 ans
include 0bcf5eee39 cmap: Fix strncpy warning in cmap_iter_next il y a 7 ans
init be262e4a32 init: Quote subshell result properly il y a 8 ans
lib 0bcf5eee39 cmap: Fix strncpy warning in cmap_iter_next il y a 7 ans
man 855b221dd5 man: fix cmap key name runtime.config.totem.token il y a 7 ans
pkgconfig e0f01d68de configure.ac: Make location of .pc overrideable il y a 10 ans
qdevices 3487656687 Fix typo: sucesfully -> successfully il y a 7 ans
test 185bc5ba9f NSS_NoDB_Init: the parameter is reserved, must be NULL il y a 7 ans
tools b7b112c5a8 corosync-notifyd: Rename global local_nodeid il y a 7 ans
.clang-format 06058e34cf Add clang-format configuration file il y a 9 ans
.gitarchivever c928a61e1d build: Support for git archive stored tags il y a 7 ans
.gitattributes c928a61e1d build: Support for git archive stored tags il y a 7 ans
.gitignore c7ebb09530 cleanup after test-driver il y a 11 ans
AUTHORS 20a5289074 drop evs service il y a 14 ans
Doxyfile.in b252013e42 Remove deprecated doxygen flags il y a 9 ans
INSTALL e8a5c56ab2 Doc: Enhance INSTALL file a bit il y a 11 ans
LICENSE 8cdd2fc493 Remove libtomcrypt il y a 14 ans
Makefile.am 7d3979fdba Qnetd: Execute qnetd as non root user il y a 9 ans
README.recovery 62148d10cf Fix a typo in README.recovery il y a 13 ans
SECURITY 25f6b0f236 SECURITY: be consistent on the hash algorithm used il y a 7 ans
autobuild.sh 34e37f130f autobuild: make sure systemd is enabled on f15+ il y a 14 ans
autogen.sh 76d18f964d build: use libtool for linking il y a 13 ans
configure.ac c928a61e1d build: Support for git archive stored tags il y a 7 ans
corosync.spec.in fde7fa0c64 Use RuntimeDirectory instead of tmpfiles.d il y a 8 ans
loc aac70d1408 Remove services directory from loc command il y a 14 ans

README.recovery

SYNCHRONIZATION ALGORITHM:
-------------------------
The synchronization algorithm is used for every service in corosync to
synchronize state of the system.

There are 4 events of the synchronization algorithm. These events are in fact
functions that are registered in the service handler data structure. They
are called by the synchronization system whenever a network partitions or
merges.

init:
Within the init event a service handler should record temporary state variables
used by the process event.

process:
The process event is responsible for executing synchronization. This event
will return a state as to whether it has completed or not. This allows for
synchronization to be interrupted and recontinue when the message queue buffer
is full. The process event will be called again by the synchronization service
if requesed to do so by the return variable returned in process.

abort:
The abort event occurs when during synchronization a processor failure occurs.

activate:
The activate event occurs when process has returned no more processing is
necessary for any node in the cluster and all messages originated by process
have completed.

CHECKPOINT SYNCHRONIZATION ALGORITHM:
------------------------------------
The purpose of the checkpoint syncrhonization algorithm is to synchronize
checkpoints after a paritition or merge of two or more partitions. The
secondary purpose of the algorithm is to determine the cluster-wide reference
count for every checkpoint.

Every cluster contains a group of checkpoints. Each checkpoint has a
checkpoint name and checkpoint number. The number is used to uniquely reference
an unlinked but still open checkpoint in the cluser.

Every checkpoint contains a reference count which is used to determine when
that checkpoint may be released. The algorithm rebuilds the reference count
information each time a partition or merge occurs.

local variables
my_sync_state may have the values SYNC_CHECKPOINT, SYNC_REFCOUNT
my_current_iteration_state contains any data used to iterate the checkpoints
and sections.
checkpoint data
refcount_set contains reference count for every node consisting of
number of opened connections to checkpoint and node identifier
refcount contains a summation of every reference count in the refcount_set

pseudocode executed by a processor when the syncrhonization service calls
the init event
call process_checkpoints_enter

pseudocode executed by a processor when the synchronization service calls
the process event in the SYNC_CHECKPOINT state
if lowest processor identifier of old ring in new ring
transmit checkpoints or sections starting from my_current_iteration_state
if all checkpoints and sections could be queued
call sync_refcounts_enter
else
record my_current_iteration_state

require process to continue

pseudocode executed by a processor when the synchronization service calls
the process event in the SYNC_REFCOUNT state
if lowest processor identifier of old ring in new ring
transmit checkpoint reference counts
if all checkpoint reference counts could be queued
require process to not continue
else
record my_current_iteration_state for checkpoint reference counts

sync_checkpoints_enter:
my_sync_state = SYNC_CHECKPOINT
my_current_iteration_state set to start of checkpont list

sync_refcounts_enter:
my_sync_state = SYNC_REFCOUNT

on event receipt of foreign ring id message
ignore message

pseudocode executed on event receipt of checkpoint update
if checkpoint exists in temporary storage
ignore message
else
create checkpoint
reset checkpoint refcount array

pseudocode executed on event receipt of checkpoint section update
if checkpoint section exists in temporary storage
ignore message
else
create checkpoint section

pseudocode executed on event receipt of reference count update
update temporary checkpoint data storage reference count set by adding
any reference counts in the temporary message set to those from the
event
update that checkpoint's reference count
set the global checkpoint id to the current checkpoint id + 1 if it
would increase the global checkpoint id

pseudocode called when the synchronization service calls the activate event:
for all checkpoints
free all previously committed checkpoints and sections
convert temporary checkpoints and sections to regular sections
copy my_saved_ring_id to my_old_ring_id

pseudocode called when the synchronization service calls the abort event:
free all temporary checkpoints and temporary sections