diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-05-04 22:32:05 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-05-04 22:32:05 +0200 |
| commit | 79b3e8b0be084a22d4f30c5933935efe6ec1f743 (patch) | |
| tree | 216d8244cf10052d8b62ece23528a04d545d03ed /worker.js | |
| parent | 78820b25d29d754ead3328d63119ccb2ec01db6b (diff) | |
| download | cruncher-release/2.2.0.tar.gz cruncher-release/2.2.0.zip | |
fame crunchingrelease/2.2.0
Diffstat (limited to 'worker.js')
| -rw-r--r-- | worker.js | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -53,7 +53,7 @@ if (LOGGLY_TOKEN) while (true) { try { seq = new Seq(DATABASE_URI, { - logging: false, + //logging: false, max: MAXCONNS }), rabbit = await amqp.connect(RABBITMQ_URI, { heartbeat: 320 }), @@ -69,16 +69,19 @@ if (LOGGLY_TOKEN) // load update SQL scripts; scripts use sequelize replacements // for the `participant_api_id` array const player_script = fs.readFileSync("crunch_player.sql", "utf8"), + team_script = fs.readFileSync("crunch_team.sql", "utf8"), global_script = fs.readFileSync("crunch_global.sql", "utf8"); // fill a buffer and execute an SQL on a bigger (> 1o) batch const participants_player = new Set(), + teams = new Set(), participants_global = new Set(), // store the msgs that should be ACKed buffer = new Set(); let timeout = undefined; // set maximum allowed number of unacked msgs + // TODO maybe split queues by type await ch.prefetch(BATCHSIZE); ch.consume("crunch", (msg) => { const api_id = msg.content.toString(); @@ -86,6 +89,8 @@ if (LOGGLY_TOKEN) participants_global.add(api_id); if (msg.properties.type == "player") participants_player.add(api_id); + if (msg.properties.type == "team") + teams.add(api_id); buffer.add(msg); if (timeout == undefined) timeout = setTimeout(crunch, LOAD_TIMEOUT*1000); if (buffer.size >= BATCHSIZE) crunch(); @@ -98,9 +103,11 @@ if (LOGGLY_TOKEN) // prevent async issues const api_ids_player = [...participants_player], + team_ids = [...teams], api_ids_global = [...participants_global], msgs = new Set(buffer); participants_global.clear(); + teams.clear(); participants_player.clear(); buffer.clear(); clearTimeout(timeout); @@ -111,6 +118,11 @@ if (LOGGLY_TOKEN) replacements: { participant_api_ids: api_ids_global }, type: seq.QueryTypes.UPSERT }); + if (team_ids.length > 0) + await seq.query(team_script, { + replacements: { team_ids: team_ids }, + type: seq.QueryTypes.UPDATE + }); if (api_ids_player.length > 0) await seq.query(player_script, { replacements: { participant_api_ids: api_ids_player }, |
