Reduce memory usage in file migration tool
This commit is contained in:
parent
1117ce4b54
commit
bf98a11b65
|
@ -11,8 +11,16 @@ DriveFile.find({
|
|||
}, {
|
||||
withoutChunks: false
|
||||
}]
|
||||
}, {
|
||||
fields: {
|
||||
_id: true
|
||||
}
|
||||
}).then(async files => {
|
||||
console.log(`there is ${files.length} files`);
|
||||
|
||||
await sequential(files.map(file => async () => {
|
||||
file = await DriveFile.findOne({ _id: file._id });
|
||||
|
||||
const minio = new Minio.Client(config.drive.config);
|
||||
|
||||
const keyDir = `${config.drive.prefix}/${uuid.v4()}`;
|
||||
|
|
Loading…
Reference in New Issue