Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In many places in the web, you will see:

What is the memory limit on a node process?

and the answer:

Currently, by default v8 has a memory limit of 512mb on 32-bit systems, and 1gb on 64-bit systems. The limit can be raised by setting --max-old-space-size to a maximum of ~1gb (32-bit) and ~1.7gb (64-bit), but it is recommended that you split your single process into several workers if you are hitting memory limits.

can somebody confirm this is the case as node.js seems to update frequently ??? *And more importantly, will it be the case in the near future ???*

I want to write javascript code which might have to deal with 4gb of javascript objects (and speed might not be an issue)

If I can't do it in node, I will end up doing in java (on a 64bit machine) but I would rather not...

share|improve this question
4  
What in the world could take up 4GB in JS objects? – Dominic Barnes Aug 25 '11 at 17:29
4  
@dominic-barnes: Images. Movies. Heck, does it matter? Something will, someday. A MMORPG, for example. I agree that the limitations are brutal, and it was a serious programmer mistake to use 32-bit ints for addressing in the original draft of v8. – Elf Sternberg Aug 25 '11 at 18:39
If you want to have 4gb of data you can't do it as JS objects. Maybe this link can help? developer.mozilla.org/en/javascript_typed_arrays – goatslacker Aug 26 '11 at 0:38
you said: "If you want to have 4gb of data you can't do it as JS objects." If that statement is true (and is going to hold true for a while) I'd think nodejs is all hype. Hence I hope you are wrong. – chacko Aug 26 '11 at 10:28

3 Answers

This has been a big concern for some using Node.js, and there are good news. The new memory limit for V8 is now unknown (not tested) for 64bit and raised to as much as 32bit address space allows in 32bit environments.

Read more here: http://code.google.com/p/v8/issues/detail?id=847

share|improve this answer

Looks like a true. When i had been tried to allocate 50 Mb string in buffer var buf = new Buffer(50*1024*1024); I got fatal error FATAL ERROR: CALL_AND_RETRY_2 Allocation failed - process out of memory. I've fixed something around 457 Mb of nodejs memory usage in process monitor.

share|improve this answer

I'm running a proc now on Ubuntu linux that has a definite memory leak and node 0.6.0 is pushing 8gb. Think it's handled :).

share|improve this answer
Do you mean 8 gb? 8 mb is a little low... – tjameson Feb 12 '12 at 2:14
Yea edited. blush – j03m Feb 13 '12 at 14:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.