GaleraHA support - R/W Splitting with Galera

GaleraHA support - R/W Splitting with Galera
This commit is contained in:
MassimilianoPinto
2014-05-26 10:29:34 +02:00
parent a819887b07
commit bf00ca8aba
3 changed files with 82 additions and 9 deletions

View File

@ -22,8 +22,9 @@
* @verbatim
* Revision History
*
* Date Who Description
* 18/06/13 Mark Riddoch Initial implementation
* Date Who Description
* 18/06/13 Mark Riddoch Initial implementation
* 21/05/14 Massimiliano Pinto Addition of node_id
*
* @endverbatim
*/
@ -67,6 +68,7 @@ SERVER *server;
server->nextdb = NULL;
server->monuser = NULL;
server->monpw = NULL;
server->node_id = -1;
spinlock_acquire(&server_spin);
server->next = allServers;
@ -197,6 +199,7 @@ char *stat;
free(stat);
dcb_printf(dcb, "\tProtocol: %s\n", ptr->protocol);
dcb_printf(dcb, "\tPort: %d\n", ptr->port);
dcb_printf(dcb, "\tNode Id: %d\n", ptr->node_id);
dcb_printf(dcb, "\tNumber of connections: %d\n", ptr->stats.n_connections);
dcb_printf(dcb, "\tCurrent no. of connections: %d\n", ptr->stats.n_current);
ptr = ptr->next;
@ -222,6 +225,7 @@ char *stat;
free(stat);
dcb_printf(dcb, "\tProtocol: %s\n", server->protocol);
dcb_printf(dcb, "\tPort: %d\n", server->port);
dcb_printf(dcb, "\tNode Id: %d\n", server->node_id);
dcb_printf(dcb, "\tNumber of connections: %d\n", server->stats.n_connections);
dcb_printf(dcb, "\tCurrent No. of connections: %d\n", server->stats.n_current);
}