forked from nkovalenko93/sequelize-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
203 lines (179 loc) · 5.79 KB
/
index.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
'use strict';
const { Readable } = require('stream');
const lodash = require('lodash');
const DEFAULT_BATCH_SIZE = 100;
/**
* @param {object} model - Sequelize model
* @param {object} inputStream - readable stream object
* @param {number} batchSize - size of batches to fetch from database
* @param {number} limit - Sequelize limit parameter
* @param {number} offset - Sequelize offset parameter
* @param {object} params - other Sequelize parameters
*/
async function performSearch(model, inputStream, { batchSize = DEFAULT_BATCH_SIZE, limit, offset = 0, ...params }) {
var countParams = Object.assign({}, params);
delete countParams.attributes;
try {
let max = limit;
if (!max) {
max = await model.count({ ...countParams, limit, offset });
}
const offsets = [];
let start = offset;
while (start < max) {
offsets.push(start);
start += batchSize;
}
for (const offset of offsets) {
const difference = (batchSize + offset - max);
const items = await model.findAll({
...params,
offset,
limit: difference > 0 ? batchSize - difference : batchSize,
});
inputStream.push(JSON.stringify(items));
}
inputStream.push(null); // Means end of stream
} catch (err) {
inputStream.destroy(err);
}
}
/**
* @param {object} model - Sequelize model
* @param {object} inputStream - readable stream object
* @param {array} items - items to be created
* @param {number} batchSize - size of batches to fetch from database
*/
async function performBulkCreate(model, inputStream, items, { batchSize = DEFAULT_BATCH_SIZE, ...params }) {
try {
const chunks = lodash.chunk(items, batchSize);
for (const chunk of chunks) {
const items = await model.bulkCreate(chunk, params);
inputStream.push(JSON.stringify(items));
}
inputStream.push(null); // Means end of stream
} catch (err) {
inputStream.destroy(err);
}
}
/**
* @param {object} model - Sequelize model
* @param {object} inputStream - readable stream object
* @param {string} method - action method
* @param {number} batchSize - size of batches to fetch from database
* @param {object} item - new parameters
* @param {object} params - other Sequelize parameters
*/
async function performUpdateOrDestroy(model, inputStream, method, { batchSize = DEFAULT_BATCH_SIZE, ...params }, item) {
try {
const max = await model.count(params);
const offset = 0;
const offsets = [];
let start = offset;
while (start < max) {
offsets.push(start);
start += batchSize;
}
const schema = await model.describe();
const primaryKey = Object.keys(schema).find(field => schema[field].primaryKey);
for (const offset of offsets) {
const difference = (batchSize + offset - max);
const items = await model.findAll({
...params,
offset: (method === 'update') ? offset : 0,
limit: difference > 0 ? batchSize - difference : batchSize
});
const updatedItems = (method === 'update') ?
await model.update(item, {
...params,
where: {
...params.where,
[primaryKey]: items.map(item => item[primaryKey])
},
offset,
limit: difference > 0 ? batchSize - difference : batchSize,
}) :
await model.destroy({
...params,
where: {
...params.where,
[primaryKey]: items.map(item => item[primaryKey])
}
});
inputStream.push(JSON.stringify(updatedItems));
}
inputStream.push(null); // Means end of stream
} catch (err) {
inputStream.destroy(err);
}
}
/**
* @param {object} params - Sequelize parameters
* @return {object} - readable stream object
*/
function findAllWithStream(params) {
const model = this;
const inputStream = new Readable({
read: function () {
},
});
performSearch(model, inputStream, { batchSize: model.BATCH_SIZE, ...params });
return inputStream;
}
/**
* @param {array} items - array of objects to create
* @param {object} params - sequelize parameters
* @return {object} - readable stream object
*/
function bulkCreateWithStream(items, params) {
const model = this;
const inputStream = new Readable({
read: function () {
},
});
performBulkCreate(model, inputStream, items, { batchSize: model.BATCH_SIZE, ...params });
return inputStream;
}
/**
* @param {object} item - new parameters
* @param {object} params - sequelize parameters
* @return {object} - readable stream object
*/
function updateWithStream(item, params) {
const model = this;
const inputStream = new Readable({
read: function () {
},
});
performUpdateOrDestroy(model, inputStream, 'update', { batchSize: model.BATCH_SIZE, ...params }, item);
return inputStream;
}
/**
* @param {object} params - sequelize parameters
* @return {object} - readable stream object
*/
function destroyWithStream(params) {
const model = this;
const inputStream = new Readable({
read: function () {
},
});
performUpdateOrDestroy(model, inputStream, 'destroy', { batchSize: model.BATCH_SIZE, ...params });
return inputStream;
}
/**
* @param {object} sequelize - Sequelize object
* @param {number} defaultBatchSize - default batch size
*/
function init(sequelize, defaultBatchSize) {
for (const modelName of Object.keys(sequelize.models)) {
sequelize.models[modelName].findAllWithStream = findAllWithStream;
sequelize.models[modelName].bulkCreateWithStream = bulkCreateWithStream;
sequelize.models[modelName].updateWithStream = updateWithStream;
sequelize.models[modelName].destroyWithStream = destroyWithStream;
if (!sequelize.models[modelName].BATCH_SIZE || defaultBatchSize) {
sequelize.models[modelName].BATCH_SIZE = defaultBatchSize || DEFAULT_BATCH_SIZE;
}
}
}
module.exports = init;