mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 20:23:49 +01:00
Reduce memory usage in file migration tool
This commit is contained in:
parent
67f5d5d321
commit
00ab96e90c
@ -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
Block a user