How to monitor memory consumed by a method ?

P

Paganoni

Hello, I've written a library that handle csv conversion...
Files are big, themselves related and the conversion rules needs several
hashes.
Those data will grow up month after month, so I would like to know how
many memory this import method can consume.

The only idea I had is launching the linux utility pmap before and after
the method.

Is there any other solution ?

Thanks
 
P

Peter Zotov

Quoting Paganoni said:
Hello, I've written a library that handle csv conversion...
Files are big, themselves related and the conversion rules needs
several hashes.
Those data will grow up month after month, so I would like to know
how many memory this import method can consume.

The only idea I had is launching the linux utility pmap before and
after the method.

Is there any other solution ?

Try doing GC.disable before calling method and then ps aux, for
example. I think this is simplier.

WBR, Peter Zotov
 
R

Robert Klemme

2009/3/26 Peter Zotov said:
Try doing GC.disable before calling method and then ps aux, for example. I
think this is simplier.

That way you will see how much memory the process uses up but not, how
much of that must be attributed to the code in the method in question.
Note that Ruby may allocate memory from the OS in larger chunks in
order to prevent too frequent malloc calls and fragmentation. I am
not sure how helpful that is for the OP's problem.

Cheers

robert
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top