Bug 3925 - MojoSetup eats up memory while writing metadata
Status: RESOLVED FIXED
Alias: None
Product: MojoSetup
Classification: Unclassified
Component: Everything
Version: unspecified
Hardware: PC Mac System 7
: P3 normal
Assignee: Ryan C. Gordon
QA Contact:
URL:
Depends on:
Blocks:
 
Reported: 2009-01-05 09:01 EST by Reto Schneider
Modified: 2022-05-20 13:51:25 EDT
0 users

See Also:


Attachments
My compiler gives me a warning about that (732 bytes, patch)
2009-06-05 12:44 EDT, Reto Schneider
exports chmod() into lua (1.23 KB, patch)
2009-06-05 12:44 EDT, Reto Schneider
Makes it faster (9.96 KB, patch)
2009-06-05 12:45 EDT, Reto Schneider

Description Reto Schneider 2009-01-05 09:01:10 EST
When installing 10'000+ files with MojoSetup it eats up my whole 2 GB Ram while writing the metadata. Eventually it will finish, but it hangs my PC for about 5 minutes. write_manifest = false solves the problem, but forces me to use support_uninstall = false.

I created a minimalistic package to show the problem, hope it helps: ftp://reto-schneider.ch/10kfiles.tar.bz2

Thanks,
Reto
Comment 1 Ryan C. Gordon 2009-01-05 23:24:00 EST
Yeah, we currently build the manifest as one long string, and write it as a text file in one shot. This was basic laziness on my part. I'll fix it.

--ryan.


Comment 2 Reto Schneider 2009-06-05 12:44:10 EDT
Created attachment 2070 [details]
My compiler gives me a warning about that
Comment 3 Reto Schneider 2009-06-05 12:44:46 EDT
Created attachment 2071 [details]
exports chmod() into lua
Comment 4 Reto Schneider 2009-06-05 12:45:03 EDT
Created attachment 2072 [details]
Makes it faster
Comment 5 Reto Schneider 2009-06-05 12:47:06 EDT
I tried to make things faster (expect failures... I'm not strong at programming). Now it works within seconds.
Comment 6 Ryan C. Gordon 2009-06-15 15:07:59 EDT
Comment on attachment 2072 [details]
Makes it faster

You have the right idea here with the speedup patch. Lua's '..' operator isn't meant for heavy lifting.

In fact, Lua's primary developer recommends the string table approach you took for a speed boost:

http://www.lua.org/gems/sample.pdf

("About Strings" section, page 22.)

The only problem is that this still leaves a big pile of immutable string fragments on the heap, just waiting for garbage collection, so I might move this into C code. I have to think about it a little more.

--ryan.
Comment 7 Ryan C. Gordon 2009-06-15 15:16:53 EDT
Comment on attachment 2070 [details]
My compiler gives me a warning about that

Compiler warnings over printf() patch in now in revision control, hg changeset  680:9688bf9c72b3. Thanks!

--ryan.
Comment 8 Ryan C. Gordon 2009-07-07 03:26:13 EDT
hg changeset 681:4d1097947759 should fix the performance. Please note I haven't tested this change yet, and it might be totally broken, so don't rely on it tonight or anything.

--ryan.
Comment 9 Ryan C. Gordon 2009-07-07 18:29:20 EDT
Comment on attachment 2072 [details]
Makes it faster

Okay, I've optimized and debugged by version of the performance patch, as of hg changeset 688:daaf73ab4961.

This _should_ be safe to use now.

--ryan.
Comment 10 Ryan C. Gordon 2009-07-07 18:32:39 EDT
Comment on attachment 2071 [details]
exports chmod() into lua

Obsoleting the chmod patch, as it isn't necessary anymore.

--ryan.
Comment 11 Ryan C. Gordon 2009-07-07 18:33:19 EDT
Resolving bug as fixed!

--ryan.
Comment 12 Ryan C. Gordon 2022-05-20 13:51:25 EDT
This bug report has migrated to our GitHub issue tracker:

https://github.com/icculus/mojosetup/issues/40