国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術(shù)文章
文章詳情頁

node.js - mongodb中數(shù)據(jù)find出來,提示process out of memory,數(shù)據(jù)大小并沒有超過NodeJS默認(rèn)的512MB

瀏覽:145日期:2024-07-25 14:30:06

問題描述

使用mongoose從數(shù)據(jù)庫中一次性find出數(shù)據(jù),提示:

node.js - mongodb中數(shù)據(jù)find出來,提示process out of memory,數(shù)據(jù)大小并沒有超過NodeJS默認(rèn)的512MB

但是我查了default the memory limit of Node.js is 512 mb,我的數(shù)據(jù)集合大小只有127MB,并沒有超過這個(gè)大小,也不需要設(shè)置--max_old_space_size吧,求解

代碼如下:

//model.jsvar LagouInfo = require(’./schema.js’)var DesData = require(’./des.js’);var async = require(’async’);LagouInfo.find({}, function(res){ res.forEach(function(item){if(item.content.trim()){ var sumSalary = 0; item.salary.forEach(function(sitem){var num;if(sitem.indexOf(’-’) == -1){ num = sitem.replace(/D+/, ’’);}else{ num = parseInt(sitem.trim().split(’-’)[1]);}// console.log(sitem, num);sumSalary += num; }) var tags = item.tag.trim().split(’,’); tags.forEach(function(tag){DesData.update({’tag’: tag}, {$push: {’content’: item.content}});DesData.update({’tag’: tag}, {$inc: {’total’: item.total}});DesData.update({’tag’: tag}, {$inc:{’salary’: sumSalary}}); })} })})

//des.jsvar mongoose = require(’./db.js’), Schema = mongoose.Schema;var InfoSchema = new Schema({ tag: {type: String}, content: {type: Array}, total: {type: Number}, salary: {type: Number}, });var Data = mongoose.model(’desdata’, InfoSchema, ’desdata’);function insert(obj, callback){ var data = new Data(obj); data.save(function(err, res){if(err) console.log(’Error:’ + err);else callback(null, res); })}function update(conditions, updateStr){ Data.update(conditions, updateStr, function(err, res){if(err) console.log(’Error:’ + err);else console.log(’Update Success’);// else callback(null, res); })}function find(conditions, callback){ Data.find(conditions, function(err, res){if(err) console.log(’Error:’ + err);else callback(res); }) // return Data.find(conditions).exec();}module.exports = { insert: insert, update: update, find: find}

//schema.jsvar mongoose = require(’./db.js’), Schema = mongoose.Schema;var LagouSchema = new Schema({ name: {type: String}, cid: {type: Number}, process: {type: String}, content: {type: String}, url: {type: String}, tag: {type: String}, total: {type: Number}, salary: {type: Array}});var Lagou = mongoose.model(’lagou’, LagouSchema, ’lagou’);function update(conditions, update){ Lagou.update(conditions, update, function(err, res){if(err) console.log(’Error:’ + err);else console.log(’Res:’ + res); })}function del(conditions){ Lagou.remove(conditions, function(err, res){if(err) console.log(’Error:’ + err);else console.log(’Res:’ + res); })}function find(conditions, callback){ Lagou.find(conditions, function(err, res){if(err) console.log(’Error:’ + err);else callback(res); })}module.exports = { find: find, del: del, update: update}

//db.jsvar mongoose = require(’mongoose’), DB_URL = ’mongodb://localhost:27017/result’;mongoose.Promise = global.Promise;mongoose.connect(DB_URL);//連接成功mongoose.connection.on(’connected’, function(){ console.log(’Mongoose connection open to ’ + DB_URL);})//連接異常mongoose.connection.on(’error’, function(err){ console.log(’Mongoose connection error: ’ + err);})//連接斷開mongoose.connection.on(’disconnected’, function(){ console.log(’Mongoose connection disconnected’);})module.exports = mongoose;

============更新2017-01-12===================

嘗試設(shè)置了--max_old_space_size還是報(bào)錯(cuò)

node.js - mongodb中數(shù)據(jù)find出來,提示process out of memory,數(shù)據(jù)大小并沒有超過NodeJS默認(rèn)的512MB

報(bào)錯(cuò)內(nèi)容:

$ node --max_old_space_size=2000 models/test.jsMongoose connection open to mongodb://localhost:27017/result<--- Last few GCs ---> 251717 ms: Mark-sweep 1989.2 (2067.0) -> 1989.3 (2067.0) MB, 1564.0 / 0 ms [allocation failure] [scavenge might not succeed]. 253271 ms: Mark-sweep 1989.3 (2067.0) -> 1989.2 (2067.0) MB, 1554.2 / 0 ms [allocation failure] [scavenge might not succeed]. 254868 ms: Mark-sweep 1989.2 (2067.0) -> 1989.3 (2067.0) MB, 1597.0 / 0 ms [last resort gc]. 256434 ms: Mark-sweep 1989.3 (2067.0) -> 1989.2 (2067.0) MB, 1566.2 / 0 ms [last resort gc].<--- JS stacktrace --->==== JS stack trace =========================================Security context: 00000394003B4639 <JS Object> 2: /* anonymous */(aka /* anonymous */) [D:softwareself_learnPaperpreprocessnode_modulesmongodb-corelibconnectionpool.js:~1096] [pc=000002BA3DA6C022] (this=00000394003041B9 <undefined>) 3: waitForAuth(aka waitForAuth) [D:softwareself_learnPaperpreprocessnode_modulesmongodb-corelibconnectionpool.js:1088] [pc=000002BA41DE1FBC] (this=00000394003041B9 <undefined>,cb=0000...FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - process out of memory

問題解答

回答1:

感覺這個(gè)報(bào)錯(cuò)和mongodb沒有關(guān)系了 是node程序的內(nèi)存問題吧

試試這樣子可以嗎

node --max_old_space_size=2000 server.js

FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - process out of memory

回答2:

首先,數(shù)據(jù)大小在數(shù)據(jù)庫里面看到的和程序讀到內(nèi)存里的體積是不同的。建議加些條件,縮小數(shù)據(jù)量,看是否有問題?然后加多點(diǎn)數(shù)據(jù),看是否有問題?看看有問題的時(shí)候記錄條數(shù)是多少。第二,我怎么覺得你這函數(shù)寫的有點(diǎn)問題?DesData.update是異步方法,你用的是同步寫法,然后我看你的tags.foreach方法應(yīng)該是循環(huán)多次的,多少次我不清楚,但應(yīng)該挺大的,導(dǎo)致你oom問題的很可能出現(xiàn)在這里----堆積太多異步方法等待執(zhí)行了。而且你這樣寫異步真的好嗎。建議用async包來改一下你的代碼,最好用forEachLimit,手機(jī)打字就不直接幫你改代碼了,如果還不行,我上電腦的時(shí)候幫你改。

回答3:

能否貼出您的部分代碼,看看代碼是否有環(huán)節(jié)存在潛在Issue。

主站蜘蛛池模板: 久草视频福利资源站 | 国产日韩精品视频一区二区三区 | 秀人网私拍福利视频在线 | 久草在线播放视频 | 美女操穴视频 | 美国毛片aaa在线播放 | 中文国产日韩欧美视频 | 亚洲欧美日韩久久精品第一区 | 亚洲理论在线观看 | 欧美精品在线视频 | 国内自拍第一页 | 欧美乱一级在线观看 | 日本亚洲欧美在线 | 欧美精品一区二区在线观看播放 | 香蕉成人| 男人天堂视频在线观看 | 免费网站看v片在线香蕉 | 毛片免费看看 | 国内91视频 | 精品99久久| 一级片在线免费看 | 日韩毛片在线播放 | 欧美色视频日本片免费高清 | 正在播放国产精品 | 成人软件网18免费视频 | 久久精品一| 97视频久久 | 精品一区二区三区波多野结衣 | 久久精品成人一区二区三区 | 狠狠干香蕉 | 精品中文字幕不卡在线视频 | 夜鲁夜鲁夜鲁在线观看福利 | 在线黄网 | 一级黄视频 | 偷柏自拍亚洲欧美综合在线图 | 日韩欧美一区二区三区久久 | 99爱在线精品视频免费观看9 | 久久一本色系列综合色 | 国产真实乱子伦精品视 | 欧美人一级淫片a免费播放 欧美人与z0z0xxxx | 99久久精品全部 |