-
Notifications
You must be signed in to change notification settings - Fork 2
/
server.js
394 lines (335 loc) · 13 KB
/
server.js
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
const Hapi = require('hapi');
const mysql = require('mysql2/promise');
const fs = require('fs');
const Vision = require('vision');
const Twig = require('twig');
const env = JSON.parse(fs.readFileSync('env.json', 'utf8'));
// Create a server with a host and port
const server = new Hapi.Server();
// How long the query should SLEEP, in seconds.
const TIMEOUT = 1;
// Param constants.
const TIPS_GENERAL = 'general';
const TIPS_SPECIFIC = 'specific';
server.connection({
host: env.server_host,
port: env.server_host === 'localhost' ? env.server_port : process.env.PORT
});
// Static assets.
server.route({
method: 'GET',
path: '/application.css',
handler: (request, h) => {
return h.file('assets/application.css');
}
});
server.route({
method: 'GET',
path: '/application.js',
handler: (request, h) => {
return h.file('assets/application.js');
}
});
server.route({
method: 'GET',
path: '/sql-formatter.min.js',
handler: (request, h) => {
return h.file('assets/vendor/sql-formatter.min.js');
}
});
/********* EXPLAIN ROUTES *********/
function extractUse(sql) {
const matches = sql.match(/^use\s+(\w+(?:_p)?)\s*\n?;/i);
if (null === matches) {
return [sql, null];
}
sql = sql.replace(new RegExp(matches[0], 'i'), '');
return [sql, matches[1]];
}
const getHandler = function (request, h) {
if (request.query.sql) {
let [sql, use] = extractUse(request.query.sql);
use = use || request.query.use || 'enwiki_p';
return explain(sql, use).then(([queryStatus, results]) => {
let tips = {};
if (queryStatus && queryStatus.error) {
results = queryStatus;
} else {
[tips, results] = getTips(sql, results);
}
return h.view('index', {
sql,
tips,
use,
results
});
});
} else {
return h.view('index');
}
};
function getUseError(err, database) {
let error = `USE error: ${err.message}`;
if (database && database.slice(-2) !== '_p') {
error += '; Public database names should end with "_p"'
}
return { error };
}
function validate(sql) {
if (/SET.*?max_statement_time\s*=\s*/i.test(sql)) {
return {error: 'Query error: max_statement_time cannot be set when using this tool.'}
}
return false;
}
function injectSleep(sql) {
// They're SELECTing all rows. Putting SLEEP after the * works in this case.
if (/^SELECT\s+\*/i.test(sql)) {
return sql.replace(/\bFROM\b/i, `, SLEEP(${TIMEOUT}) FROM `);
}
// Otherwise try the normal injection of SLEEP at the front of the SELECT clause,
// and for all SELECTs, which is more reliable.
sql = sql.replace(/\bSELECT\s/gi, `SELECT SLEEP(${TIMEOUT}), `);
// Remove any SLEEPs that were added to a subquery that used with an IN clause.
const regex = new RegExp(`IN\\s*\\(\\s*SELECT SLEEP\\(${TIMEOUT}\\),`, 'gi');
sql = sql.replace(regex, 'IN ( SELECT');
console.log(sql);
return sql;
}
async function getExplainConnection(pool, queryInstance) {
const MAX_RETRIES = 100;
for (let i = 0; i <= MAX_RETRIES; i++) {
console.log(`>> CONNECTION RETRY ${i + 1}`);
const explainConnection = await pool.getConnection();
const result = await explainConnection.query('SELECT @@GLOBAL.hostname');
const explainInstance = result[0][0]['@@GLOBAL.hostname'];
if (explainInstance === queryInstance) {
console.log(`SUCCESS: Connection to ${explainInstance} established`);
return explainConnection;
}
explainConnection.close();
}
return {
error: `SHOW EXPLAIN failed: Unable to establish a connection after ${MAX_RETRIES} tries.`
};
}
async function explain(sql, database) {
let validation = validate(sql);
if (validation) {
return new Promise(resolve => resolve([validation, null]));
}
const pool = mysql.createPool({
database: database,
host: env.db_host.replace('*', database.replace(/_p$/, '')),
port: env.db_port,
user: env.db_user,
password: env.db_password
});
const queryConnection = await pool.getConnection();
return queryConnection.query(`USE ${database}`).then(() => {
return queryConnection.query('SELECT @@GLOBAL.hostname').then(instanceResult => {
const instance = instanceResult[0][0]['@@GLOBAL.hostname'];
return queryConnection.query(`SET max_statement_time = ${TIMEOUT}`).then(() => {
sql = injectSleep(sql);
const query = queryConnection.query(sql).then(() => {
console.log('SLEEP SUCCESS');
}).catch(err => {
if (![1028, 1969].includes(err.errno)) {
console.log(err);
return {error: 'Query error: ' + err.message};
}
});
const explanation = new Promise(resolve => setTimeout(async () => {
const explainConnection = await getExplainConnection(pool, instance);
const explainPromise = explainConnection.query(`SHOW EXPLAIN FOR ${queryConnection.connection.threadId}`).then(result => {
pool.end();
return result[0];
}).catch(err => {
pool.end();
return {
error: 'SHOW EXPLAIN failed: ' + err.message + ' This may be a connection issue. If you believe your query is valid, try resubmitting.'
};
});
return resolve(explainPromise);
}, 500));
return Promise.all([query, explanation]);
});
});
}).catch(err => {
pool.end();
return [getUseError(err, database), null];
});
}
function getTips(sql, explanation) {
if (!explanation || explanation.error) {
// Query errored out or query plan unavailable.
return [{}, explanation];
}
let tips = {
specific: {},
general: {}
};
const pushTip = (index, comment, type = TIPS_GENERAL) => {
tips[type][index] = tips[type][index] || [];
if (comment && !tips[type][index].includes(comment)) {
tips[type][index].push(comment);
}
};
// Tip to use userindexes:
const userindexMatches = {
'revision': 'rev_actor',
'archive': 'ar_actor',
'logging': 'log_actor',
'filearchive': 'fa_actor',
'ipblocks': 'ipb_actor',
'oldimage': 'oi_actor',
'recentchanges': 'rc_actor',
};
Object.keys(userindexMatches).forEach(table => {
if (new RegExp(`\\b${table}\\b[^]*\\b${userindexMatches[table]}`, 'i').test(sql)) {
const comment = `You appear to be querying the <code>${table}</code> table and filtering by user. ` +
`It may be more efficient to use the <code>${table}_userindex</code> view.`;
pushTip('0', comment, TIPS_SPECIFIC);
}
});
// Tip to use specialized actor and comment views:
const specialViews = [
'filearchive', 'image', 'ipblocks', 'logging', 'oldimage', 'protected_titles', 'recentchanges', 'revision',
];
specialViews.forEach(table => {
const matches = sql.match(new RegExp(`\\b${table}[^]*(?:\\b(actor|comment))\\b`, 'i'));
if (matches) {
const comment = `You appear to be querying <code>${matches[1]}</code> and <code>${table}</code>. ` +
`If you only care about ${matches[1]}s in the ${table} table, use the ` +
'<a href="https://wikitech.wikimedia.org/wiki/News/Actor_storage_changes_on_the_Wiki_Replicas#special-views">specialized view</a> ' +
`<code>${matches[1]}_${table}</code> to avoid unnecessary subqueries.`;
pushTip('0', comment, TIPS_SPECIFIC);
}
});
if (/\blogging\b[^]*\b(log_namespace|log_title|log_page)/i.test(sql)) {
pushTip('0', 'You appear to be querying the <code>logging</code> table and filtering by namespace, title or page ID. ' +
'It may be more efficient to use the <code>logging_logindex</code> view.');
}
// Query plan evaluation.
explanation.forEach((plan, index) => {
if (/Using filesort|Using temporary/.test(plan.Extra)) {
const comment = `Query plan ${plan.id}.${index + 1} is using ` +
'<a target="_blank" href="https://dev.mysql.com/doc/refman/5.7/en/order-by-optimization.html#order-by-filesort">filesort</a> ' +
'or a <a target="_blank" href="https://dev.mysql.com/doc/refman/8.0/en/internal-temporary-tables.html">temporary table</a>. ' +
'This is usually an indication of an inefficient query. If you find your query is slow, try taking advantage ' +
'of available indexes to avoid filesort.';
pushTip(index, comment, TIPS_GENERAL);
plan.Extra = plan.Extra.replace(/(Using (filesort|filesort))/, '<span class="text-danger">$1</span>');
}
if (plan.rows > 1000000) {
const comment = `Query plan ${plan.id}.${index + 1} scans over a million rows. Your query could likely be improved, ` +
`or broken out into multiple queries to improve performance.`;
pushTip(index, comment, TIPS_GENERAL);
}
});
if (Object.keys(tips.specific).length || Object.keys(tips.general).length) {
let comment = 'When running potentially slow queries in your application, consider prepending ' +
'<code>SET STATEMENT max_statement_time = <i>N</i> FOR</code> to ' +
'<a target="_blank" href="https://wikitech.wikimedia.org/wiki/Help:Toolforge/Database#Query_Limits">automatically kill</a> ' +
'the query after <i>N</i> seconds.';
pushTip('*', comment, TIPS_GENERAL);
if (/revision(?:_userindex)?|logging(?:_logindex)?/i.test(sql)) {
comment = 'If you only need to query for recent revisions and log actions (within the last 30 days), ' +
'using <code>recentchanges</code> or <code>recentchanges_userindex</code> might be faster.';
pushTip('*', comment, TIPS_GENERAL);
}
}
return [tips, explanation];
}
server.route({
method: 'GET',
path: '/',
handler: getHandler
});
/********* DESCRIBE ROUTES *********/
server.route({
method: 'GET',
path: '/describe/{database}',
handler: (request, h) => {
return showTables(request.params.database).then(results => {
return h.view('tables', {
database: request.params.database,
results: results[0]
});
});
}
});
server.route({
method: 'GET',
path: '/describe/{database}/{table}',
handler: (request, h) => {
return describeTable(request.params.database, request.params.table).then(results => {
return h.view('describe', {
database: request.params.database,
table: request.params.table,
results: results[0]
});
});
}
});
function showTables(database) {
const connection = mysql.createConnection({
database,
host: env.db_host.replace('*', database.replace(/_p$/, '')),
port: env.db_port,
user: env.db_user,
password: env.db_password
});
return connection.then(client => {
return client.query(`USE ${database}`).then(() => {
return client.query('SHOW TABLES').then(results => {
client.end();
return results;
});
}).catch(err => {
client.end();
return [getUseError(err, database)];
});
});
}
function describeTable(database, table) {
const connection = mysql.createConnection({
database,
host: env.db_host.replace('*', database.replace(/_p$/, '')),
port: env.db_port,
user: env.db_user,
password: env.db_password
});
return connection.then(client => {
return client.query(`USE ${database}`).then(() => {
return client.query(`DESCRIBE ${database}.${table}`).then(results => {
client.end();
return results;
});
}).catch(err => {
client.end();
return [getUseError(err, database)];
});
});
}
/********* STARTING THE SERVICE *********/
const provision = async () => {
await server.register(Vision);
await server.register(require('inert'));
server.views({
engines: {
twig: {
compile: (src, options) => {
const template = Twig.twig({ id: options.filename, data: src });
return context => {
return template.render(context);
};
}
}
},
relativeTo: __dirname,
path: 'templates'
});
await server.start();
console.log('Server running at:', server.info.uri);
};
provision();