vote up 2 vote down star
6

My memory is 4G physical, but why I got out of memory exception even if I create just 1.5G memory object. Any ideas why? (I saw at the same time, in the performance tab of task manager the memory is not full occupied, and I could also type here -- so memory is not actually low, so I think I hit some other memory limitations)?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace TestBigMemoryv1
{
    class MemoryHolderFoo
    {
        static Random seed = new Random();
        public Int32 holder1;
        public Int32 holder2;
        public Int64 holder3;

        public MemoryHolderFoo()
        {
            // prevent from optimized out
            holder1 = (Int32)seed.NextDouble();
            holder2 = (Int32)seed.NextDouble();
            holder3 = (Int64)seed.NextDouble();
        }
    }

    class Program
    {
        static int MemoryThreshold = 1500; //M
        static void Main(string[] args)
        {
            int persize = 16;
            int number = MemoryThreshold * 1000 * 1000/ persize;
            MemoryHolderFoo[] pool = new MemoryHolderFoo[number];
            for (int i = 0; i < number; i++)
            {
                pool[i] = new MemoryHolderFoo();
                if (i % 10000 == 0)
                {
                    Console.Write(".");
                }
            }

            return;
        }
    }
}
flag

43% accept rate
Adding comments re your extra questions... sorry for delay; I was on a flight... – Marc Gravell Mar 1 at 14:18
You are really cool, Marc! :-) – George2 Mar 3 at 9:43

6 Answers

vote up 8 vote down

In a normal 32 bit windows app, the process only has 2GB of addressable memory. This is irrelevant to the amount of physical memory that is available.

So 2GB available but 1.5 is the max you can allocate. The key is that your code is not the only code running in the process. The other .5 GB is probably the CLR plus fragmentation in the process.

link|flag
The .5GB is can also be everything else running on the machine that isn't O/S components. – Robert C. Barth Feb 28 at 4:52
No, each process gets a fully adressable 2 GB virtual memory space. – Nick Feb 28 at 4:53
Nick is correct. Each process's address space is independent of anothers. Unless they choose to dabble in shared memory. – JaredPar Feb 28 at 5:00
1. Hi JaredPar, 1.5G memory limitation is for per process or per thread? 2. Do you have any documents for this limitation? :-) – George2 Feb 28 at 6:14
@George2 it's per process. Link msdn.microsoft.com/en-us/library/… Read down to the section titled "Virtual memory in Win32" – JaredPar Feb 28 at 6:17
show 4 more comments
vote up 4 vote down

Just additional to the other points; if you want access to a dirty amount of memory, consider x64 - but be aware that the maximum single object size is still 2GB. And because references are larger in x64, this means that you actually get a smaller maximum array/list size for reference-types. Of course, by the time you hit that limit you are probably doing things wrong anyway!

Other options:

  • use files
  • use a database

(obviously both has a performance difference compared to in-process memory)

link|flag
When you say max single object are you talking about CLR objects or raw allocation size (native or managed). I assume the former but wanted to check. Also do you have a reference for this, I hadn't seen that yet. Can't imagine why you would want to exceed 2GB though for a single object. – JaredPar Feb 28 at 7:13
1. "be aware that the maximum single object size is still 2GB" -- Marc, do you have documents to prove this statement? I am especially interested in what means single object, as we can composite objects to form new objects, so what means single object in your context? – George2 Feb 28 at 9:46
1. How do you get the conclusion -- "this means that you actually get a smaller maximum array/list size for reference-types." from "because references are larger in x64"? Could you provide more details please? – George2 Feb 28 at 9:47
I have made more study by myself. I the the reason why there is limitation in 32-bit system is because application access memory by using virtual address, even if we could have more than 4G physical memory, but the actual root limitaiton virtual memory address space, correct? – George2 Mar 1 at 9:01
Windows itself imposes the 2gb/3gb limit per process on win32. The theoretical limit with 32-bit references is 4gb. Win64 blows both of these limitations out of the water. – Marc Gravell Mar 1 at 13:04
show 9 more comments
vote up 3 vote down

You've got a max of 2Gb addressable memory as a 32bit app, as the other posters mentioned. Dont forget about overhead. You're creating an array of 93 million objects - if there happens to be 4 bytes of overhead per object that's an extra 350Mb of memory.

link|flag
I have made more study by myself. I the the reason why there is limitation in 32-bit system is because application access memory by using virtual address, even if we could have more than 4G physical memory, but the actual root limitaiton virtual memory address space, correct? – George2 Mar 1 at 9:04
Yeah, pretty much. All your pointers are stored in 4 bytes, which sets a limit of how much they can see. Things were even worse back in the days of 16-bit pointers. Dont ask me about segment:offset or windowing high memory... – geofftnz Mar 2 at 0:29
Cool, thanks geofftnz! – George2 Mar 2 at 4:50
vote up 2 vote down

Just to add to the previous replies: you can go beyond the 2Gb limit on systems booted with the /3Gb [and optionally userva] boot flags.

link|flag
Although to use the /3Gb switch you will have to modify the executable to manually set a flag in it for it to be able to take advantage of the boot flag. – uzbones Feb 28 at 5:23
I have made more study by myself. I the the reason why there is limitation in 32-bit system is because application access memory by using virtual address, even if we could have more than 4G physical memory, but the actual root limitaiton virtual memory address space, correct? – George2 Mar 1 at 9:02
vote up 1 vote down

On a 32-bit Windows Operating system the maximum 'user-mode' memory that a single application can access is 2GB... assuming that you have 4GB of memory on the box.

http://stackoverflow.com/questions/588882/unmanaged-vc-applications-memory-consumption-on-windows-server

http://blogs.technet.com/markrussinovich/archive/2008/07/21/3092070.aspx

(It's funny you asked this because I asked almost the same thing yesterday...)

link|flag
Hi uzbones, does it mean 4G memory is useless? My application could only consume maximum 2G? – George2 Feb 28 at 6:16
Well... no, by having more than 4G of memory, you could run two copies of you program each consuming 2G of memory each. And as KristoferA mentions further below there is a system switch that can be done to change the amount to 3G, or you need to go 64-bit. – uzbones Feb 28 at 23:10
I have made more study by myself. I the the reason why there is limitation in 32-bit system is because application access memory by using virtual address, even if we could have more than 4G physical memory, but the actual root limitaiton virtual memory address space, correct? – George2 Mar 1 at 9:00
Yes, in a 32bit system in order to access more than 4G of memory (2G user-mode and 2G system) the operating system would need to use something bigger than a 32-bit int for an index. You can get around this by using AppDomains en.csharp-online.net/.NET_Architecture%E2%80%94Ap… – uzbones Mar 1 at 17:11
Thanks uzbones, very good document! – George2 Mar 3 at 9:34
vote up 0 vote down

One more thing to be aware of; some .NET objects require 'contiguous' memory. i.e if you are trying to allocate a large array the system may need not only sufficient free memory in your process but also for all that free memory to be in one big chunk... and unfortunately the process memory gets fragmented over time so this may not be available.

Some objects/data types have this requirement and some don't... I can't remember which ones do, but I seem to recall StringBuilder and MemoryStream have different requirements.

link|flag

Your Answer

Get an OpenID
or

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