9.1 Proposal: Top five performance problems

Mitch Bradley wmb at laptop.org
Mon Oct 27 15:59:05 EDT 2008


Tomeu Vizoso wrote:
> On Fri, Oct 24, 2008 at 9:13 PM, Mitch Bradley <wmb at laptop.org> wrote:
>   
>> Michael Stone wrote:
>>     
>>> I did some basic profiling of my new rainbow code last night and
>>> discovered that, in the best case with the current codebase on XO, it
>>> costs about 0.5s/"1 exec(python)". Approximately 80% of the 0.5s was
>>> spent importing modules.
>>>
>>> I hope to dig deeper in the near future, but I am concerned at my lack
>>> of inspiration about how to deal with this problem. (Other than by
>>> rewriting into a different language.) I still do not consider the
>>> mod_python approach used in the 767-era rainbow to be a viable long-term
>>> solution.
>>>
>>>       
>> Well, there is a tedious solution that would probably be effective.  Go
>> through the list of modules with a fine-toothed comb and find out what
>> is actually used from each module.  I'll bet that there are quite a few
>> modules from which only a few simple functions are used.  Collecting
>> those functions into one lightweight (no unnecessary stuff) module might
>> collapse the dependency graph.
>>
>> As I said, this can be tedious, but it's the sort of think I've done
>> many times during my career, and it has usually paid off.  If nothing
>> else, you end up learning a lot about how things work, which tends to
>> make you eventually become fearless.  Hah! I know how that works, and
>> it's not nearly as complicated as you think!
>>
>> A lot of complexity ends up being solutions to low-value problems that
>> don't apply in your case.  As a case in point, a long time ago I needed
>> to incorporate a stripped-down stdio package in some app that needed to
>> be tiny.  The basic character I/O ended up pulling in a train load of
>> networking libraries.  It turned out that "isatty()" was the culprit -
>> it had to check whether the file descriptor matched every conceivable
>> kind of I/O object.  I just made a stub version of isatty() and all the
>> spurious dependencies disappeared.
>>     
>
> The problem that I see with this approach are the initializations that
> are done when importing a module python from the base libraries. You
> may know that only one or two functions are used from one module and
> decide to take them into our collector module, but the problem here is
> that we don't know which part of the code in the original module
> initialization is expected by those functions to be have been
> executed. Or even worst, which module initialization code from another
> imported module is expected by those functions.
>   

That is part of the "tedious" factor.  You have to figure out all that 
stuff.  It's deep analysis, rather than cut and paste.

You often discover that the existing implementation is much more general 
than you really need.  In that case, it often makes sense to replace the 
function with a very simple version, in which case a lot of the 
initialization just goes away too.

Other cases in point - the initscripts speedup experiments detailed in 
http://dev.laptop.org/ticket/4349 .  A lot of time is spent by 
re-including the "functions" shell script, and a lot of that was due to 
a fancy framework for both internationalizing and colorizing status 
reports from service startup.  A big wad of stuff could be eliminated by 
implementing a few display routines as "echo".  Similarly, udev was 
taking a long time, but the net result was just to populate /dev with a 
nearly-static list of device special files.  The static part of that 
could be done with one invocation of "tar", saving several seconds.


> I intend to look at activity startup in greater detail and see which
> are the worst offenders at what can be done about it.

Go for it.  We're looking forward to your results.

>  Other people
> before us have been bitten by this problem and they have gotten their
> patches integrated into python, we should be able to do the same.
>
> Regards,
>
> Tomeu
>   




More information about the Devel mailing list