1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
#!/usr/bin/node
/* jshint esnext:true */
'use strict';
var amqp = require("amqplib"),
Seq = require("sequelize");
var RABBITMQ_URI = process.env.RABBITMQ_URI || "amqp://localhost",
DATABASE_URI = process.env.DATABASE_URI || "sqlite:///db.sqlite",
BATCHSIZE = process.env.PROCESSOR_BATCH || 50 * (1 + 5), // matches + players + teams
IDLE_TIMEOUT = process.env.PROCESSOR_IDLETIMEOUT || 500; // ms
(async () => {
let seq = new Seq(DATABASE_URI),
model = require("../orm/model")(seq, Seq),
rabbit = await amqp.connect(RABBITMQ_URI),
ch = await rabbit.createChannel();
let queue = [],
timer = undefined;
await seq.sync();
await ch.assertQueue("compile", {durable: true});
// as long as the queue is filled, msg are not ACKed
// server sends as long as there are less than `prefetch` unACKed
await ch.prefetch(BATCHSIZE);
ch.consume("compile", async (msg) => {
queue.push(msg);
// fill queue until batchsize or idle
if (timer === undefined)
timer = setTimeout(process, IDLE_TIMEOUT)
if (queue.length == BATCHSIZE)
await process();
}, { noAck: false });
async function process() {
console.log("compiling batch", queue.length);
// clean up to allow processor to accept while we wait for db
let msgs = queue.slice();
queue = [];
clearTimeout(timer);
timer = undefined;
// BEGIN
let transaction = await seq.transaction({ autocommit: false });
// UPSERT
try {
// processor sends to queue with a custom "type" so compiler can filter
// m.content: player.api_id
let players = msgs.filter((m) => m.properties.type == "player").map((m) => JSON.parse(m.content)),
participants = msgs.filter((m) => m.properties.type == "participant").map((m) => JSON.parse(m.content));
await Promise.all(players.map(async (player) => {
let player_api_id = player.api_id,
player_ext = {};
// set last_match_created_date
let lmcd = (await model.Participant.findOne({
where: {
player_api_id: player_api_id
},
attributes: [ [seq.col("roster.match.created_at"), "last_match_created_date"] ],
include: [ {
model: model.Roster,
attributes: [],
include: [ {
model: model.Match,
attributes: []
} ]
} ],
order: [
[seq.col("last_match_created_date"), "DESC"]
]
})).get("last_match_created_date");
await model.Player.update({ last_match_created_date: lmcd }, { where: { api_id: player_api_id } });
// calculate "extended" player_ext fields like wins per patch
player_ext.player_api_id = player_api_id;
//player_ext.series = ""
// TODO parallelize
player_ext.played = await model.Participant.count({
where: {
player_api_id: player_api_id
}
});
player_ext.wins = await model.Participant.count({
where: {
player_api_id: player_api_id,
winner: true
}
});
// TODO maybe this can be done in fewer/combined/subqueries
let count_matches_where = async (where) => {
return (await model.Participant.findOne({
where: where,
attributes: [[seq.fn("COUNT", "$roster.match$"), "count"]],
include: [ {
model: model.Roster,
attributes: [],
include: [ {
model: model.Match,
attributes: []
} ]
} ]
})).get("count");
};
player_ext.played_casual = await count_matches_where({
player_api_id: player_api_id,
"$roster.match.game_mode$": "casual"
});
player_ext.played_ranked = await count_matches_where({
player_api_id: player_api_id,
"$roster.match.game_mode$": "ranked"
});
player_ext.wins_casual = await count_matches_where({
player_api_id: player_api_id,
winner: true,
"$roster.match.game_mode$": "casual"
});
player_ext.wins_ranked = await count_matches_where({
player_api_id: player_api_id,
winner: true,
"$roster.match.game_mode$": "ranked"
});
await model.PlayerExt.upsert(player_ext, {
include: [ model.Participant ],
transaction: transaction
});
}));
await Promise.all(participants.map(async (api_participant) => {
let participant = await model.Participant.findOne({
where: {
api_id: api_participant.api_id
},
attributes: ["api_id", "kills", "assists", "deaths", seq.col("roster.hero_kills")],
include: [
model.Roster
]
}),
participant_ext = {};
participant_ext.participant_api_id = participant.api_id;
participant_ext.series = "" // TODO rm
if (participant.roster.hero_kills == 0)
participant_ext.kills_participation = 0;
else
participant_ext.kills_participation = (participant.kills + participant.assists) / participant.roster.hero_kills;
if (participant.deaths == 0)
participant_ext.kda = 0;
else
participant_ext.kda = (participant.kills + participant.assists) / participant.deaths;
await model.ParticipantExt.upsert(participant_ext, {
include: [ model.Participant ],
transaction: transaction
});
}));
// COMMIT
await transaction.commit();
console.log("acking batch");
await ch.ack(msgs.pop(), true); // ack all messages until the last
// notify web
await Promise.all(players.map(async (p) => await ch.publish("amq.topic", p.name, new Buffer("compile_commit")) ));
} catch (err) { // TODO catch only SQL error, also catch errors in the promises
console.error(err);
await transaction.rollback();
await ch.nack(msgs.pop(), true, true); // nack all messages until the last and requeue
// TODO don't requeue broken records
}
}
})();
|