-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartition.js
71 lines (59 loc) · 2.4 KB
/
partition.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
const express = require("express");
const {Pool} = require("pg");
const fs = require("fs");
const { exit } = require("process");
const app = express();
const pool = new Pool({
"host": "aemiej-mac.local",
"port": 5432,
"user":"aemiej",
"password" : "******",
"database" : "aemiej-db",
"max": 10
});
let port = 7000 | process.env.PORT;
let createSequenceSQL = fs.readFileSync('./psql/partition/sequence.sql').toString();
let createTableSQL = fs.readFileSync('./psql/partition/create.sql').toString();
let insertTableSQL = fs.readFileSync('./psql/partition/insert.sql').toString();
let createIndexSQL = fs.readFileSync('./psql/partition/index.sql').toString();
let indexAnalysisSQL = fs.readFileSync('./psql/partition/query_index.sql').toString();
let withoutIndexAnalysisSQL = fs.readFileSync('./psql/partition/query_without_index.sql').toString();
let deleteSQL = fs.readFileSync('./psql/partition/delete.sql').toString();
app.get("/", async (req, res) => {
const sequenceRes = await pool.query(createSequenceSQL);
const createRes = await pool.query(createTableSQL);
const insertRes = await pool.query(insertTableSQL);
res.json({
createMessage: createRes,
sequenceMessage: sequenceRes,
insertMessage: insertRes
});
console.log('\x1b[35m%s\x1b[0m', "Successful setup of database partition");
});
app.get("/app/v1/analyze-partition", async (req, res) => {
const createIndexRes = await pool.query(createIndexSQL);
// explain analyse with index scanning
const analyzeIndexing = await pool.query(indexAnalysisSQL);
console.log('\x1b[35m%s\x1b[0m', 'Reading data with partiton & indexing');
console.log(analyzeIndexing);
// explain analyse without index scanning
const analyseWithoutIndexing = await pool.query(withoutIndexAnalysisSQL);
console.log('\x1b[35m%s\x1b[0m', 'Reading data with partiton & without indexing');
console.log(analyseWithoutIndexing);
res.json({
createIndex: createIndexRes,
indexing: analyzeIndexing,
withoutIndexing: analyseWithoutIndexing
});
});
app.get("/app/v1/delete", async (req, res) => {
const deleteRes = await pool.query(deleteSQL);
res.json({
deleteMessage: deleteRes
});
console.log('\x1b[35m%s\x1b[0m', "Successful deletion");
exit(0);
});
app.listen(port, () => {
console.log('\x1b[36m%s\x1b[0m', `Backend listening on port ${port}`);
});