bandb: Group writes in transactions to reduce load on heavy kline activity.
When a ban is added or removed, open a transaction and close it after 3 seconds; any bans in the 3 seconds will not trigger another transaction (= 4 fsyncs with sqlite). The transaction is also committed if ircd closes the connection, but not if bandb itself is terminated with a signal.
This commit is contained in:
parent
cf06f92b78
commit
8a1d7222f4
|
@ -38,6 +38,8 @@
|
||||||
|
|
||||||
#define MAXPARA 10
|
#define MAXPARA 10
|
||||||
|
|
||||||
|
#define COMMIT_INTERVAL 3 /* seconds */
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
BANDB_KLINE,
|
BANDB_KLINE,
|
||||||
|
@ -57,9 +59,17 @@ static const char *bandb_table[LAST_BANDB_TYPE] = {
|
||||||
|
|
||||||
|
|
||||||
static rb_helper *bandb_helper;
|
static rb_helper *bandb_helper;
|
||||||
|
static int in_transaction;
|
||||||
|
|
||||||
static void check_schema(void);
|
static void check_schema(void);
|
||||||
|
|
||||||
|
static void
|
||||||
|
bandb_commit(void *unused)
|
||||||
|
{
|
||||||
|
rsdb_transaction(RSDB_TRANS_END);
|
||||||
|
in_transaction = 0;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
parse_ban(bandb_type type, char *parv[], int parc)
|
parse_ban(bandb_type type, char *parv[], int parc)
|
||||||
{
|
{
|
||||||
|
@ -89,6 +99,14 @@ parse_ban(bandb_type type, char *parv[], int parc)
|
||||||
perm = parv[para++];
|
perm = parv[para++];
|
||||||
reason = parv[para++];
|
reason = parv[para++];
|
||||||
|
|
||||||
|
if(!in_transaction)
|
||||||
|
{
|
||||||
|
rsdb_transaction(RSDB_TRANS_START);
|
||||||
|
in_transaction = 1;
|
||||||
|
rb_event_addonce("bandb_commit", bandb_commit, NULL,
|
||||||
|
COMMIT_INTERVAL);
|
||||||
|
}
|
||||||
|
|
||||||
rsdb_exec(NULL,
|
rsdb_exec(NULL,
|
||||||
"INSERT INTO %s (mask1, mask2, oper, time, perm, reason) VALUES('%Q', '%Q', '%Q', %s, %s, '%Q')",
|
"INSERT INTO %s (mask1, mask2, oper, time, perm, reason) VALUES('%Q', '%Q', '%Q', %s, %s, '%Q')",
|
||||||
bandb_table[type], mask1, mask2 ? mask2 : "", oper, curtime, perm, reason);
|
bandb_table[type], mask1, mask2 ? mask2 : "", oper, curtime, perm, reason);
|
||||||
|
@ -113,6 +131,14 @@ parse_unban(bandb_type type, char *parv[], int parc)
|
||||||
if(type == BANDB_KLINE)
|
if(type == BANDB_KLINE)
|
||||||
mask2 = parv[2];
|
mask2 = parv[2];
|
||||||
|
|
||||||
|
if(!in_transaction)
|
||||||
|
{
|
||||||
|
rsdb_transaction(RSDB_TRANS_START);
|
||||||
|
in_transaction = 1;
|
||||||
|
rb_event_addonce("bandb_commit", bandb_commit, NULL,
|
||||||
|
COMMIT_INTERVAL);
|
||||||
|
}
|
||||||
|
|
||||||
rsdb_exec(NULL, "DELETE FROM %s WHERE mask1='%Q' AND mask2='%Q'",
|
rsdb_exec(NULL, "DELETE FROM %s WHERE mask1='%Q' AND mask2='%Q'",
|
||||||
bandb_table[type], mask1, mask2 ? mask2 : "");
|
bandb_table[type], mask1, mask2 ? mask2 : "");
|
||||||
}
|
}
|
||||||
|
@ -215,6 +241,8 @@ parse_request(rb_helper *helper)
|
||||||
static void
|
static void
|
||||||
error_cb(rb_helper *helper)
|
error_cb(rb_helper *helper)
|
||||||
{
|
{
|
||||||
|
if(in_transaction)
|
||||||
|
rsdb_transaction(RSDB_TRANS_END);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue