mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-07-30 07:23:07 +03:00
Bootstrap server service, fixes to server state management
* Added bootstrap service call to do DBMS side bootstrap operations during the cluster bootstrap. * Added last_committed_gtid() to provider interface * Implemented wait_for_gtid() provider call * Pass initial position to the server state
This commit is contained in:
@ -299,6 +299,11 @@ namespace wsrep
|
||||
* @return Provider status indicating the result of the call.
|
||||
*/
|
||||
virtual enum status causal_read(int timeout) const = 0;
|
||||
virtual enum status wait_for_gtid(const wsrep::gtid&, int timeout) const = 0;
|
||||
/**
|
||||
* Return last committed GTID.
|
||||
*/
|
||||
virtual wsrep::gtid last_committed_gtid() const = 0;
|
||||
virtual int sst_sent(const wsrep::gtid&, int) = 0;
|
||||
virtual int sst_received(const wsrep::gtid&, int) = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user