Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

When does it make sense to preload modules when starting Starman?

by karlgoethebier (Abbot)
on Oct 28, 2021 at 08:33 UTC ( [id://11138137]=perlquestion: print w/replies, xml ) Need Help??

karlgoethebier has asked for the wisdom of the Perl Monks concerning the following question:

To be honest: I have no idea. Reading the less or more friendly manuals didn’t help me very much to jump to a conclusion.

Thank you very much in advance for any hint and advice.

Best regards, Karl.

«The Crux of the Biscuit is the Apostrophe»

  • Comment on When does it make sense to preload modules when starting Starman?

Replies are listed 'Best First'.
Re: When does it make sense to preload modules when starting Starman?
by Corion (Patriarch) on Oct 28, 2021 at 10:26 UTC

    IMO it makes sense to preload modules if these modules take a long time to initialize and you have a good chance of sharing their data among the forked copies.

    Examples I can think of are caching some (largish) resources in memory, or modules that autogenerate lots of code.

    Database connections sound interesting, but usually, DBI database handles need to be reinitialized after a fork() call, so that won't work.

      "... modules take a long time to initialize..."

      Ja, ja or yes sure as you like. This is what common sense tells us.

      But consider this funny little study i recently posted:

      # app.psgi use strict; use warnings; use Plack::Request; use Plack::App::URLMap; use JSON::Tiny qw(encode_json); my $slash = sub { my $env = shift; my $json = encode_json {nose => 'cuke'}; my $status = 200; my $request = Plack::Request->new($env); my $headers = [ 'Content-Type' => 'application/json', 'Content-Length' => length $json, ]; my $body = [ $json ]; [ $status, $headers, $body ]; }; my $urlmap = Plack::App::URLMap->new; $urlmap->mount( "/" => $slash ); my $app = $urlmap->to_app; __END__

      Preloading the Plack stuff? JSON::Tiny might be cheap but who knows.

      It is really difficult to find answers for these questions.

      And what if i daemonize Starman? The switches for this task are confusing.

      Thanks for your kind reply and best regards, Karl.

      P.S.: I asked the author. Probably he will enlight us.

      «The Crux of the Biscuit is the Apostrophe»

        > > "... modules take a long time to initialize..."

        > It is really difficult to find answers for these questions.

        Is it? To benchmark initialization, measure time in BEGIN, CHECK and INIT blocks.

        From what I heard is Moose a good candidate.

        Cheers Rolf
        (addicted to the Perl Programming Language :)
        Wikisyntax for the Monastery

Re: When does it make sense to preload modules when starting Starman?
by perlfan (Vicar) on Oct 29, 2021 at 08:42 UTC
    preloading in general makes sense when you are able to amortize the upfront penalty from start up over the lifetime of the running application. So if you have a highly stable application that's never restarted, then it's probably worth a few minutes of "warm up" time at the start. If you're going to be restarting often or the preload is simply too much work for the reward, then you're better off lazily loading at runtime via require.

    Update - I thought I should add what I knew to be true (at some point) and isn't a secret, cPanel pays people a a lot of money to maintain a build infrastructure that uses B::C to generate a binary from Perl simply to improve start up time of their administrative daemon, cpservd. Basically, many MBs of initializations and module loads are shoved into a BEGIN{}. The binary is the state of the perl start up through BEGIN (like what you get by invoking perl -c). My point is that this is also an option - if you have a lot of stuff to preload, B::C can be used to get you into a state where start up actually picks up after BEGIN.

      Holy Joe! I just wanted to be on the Bright Side of Life.

      Something like starman -Mstrict -Mwarnings -MPlack::Request -MPlack::App::URLMap -MPlack::App::URLMap. If the syntax is so. Untested. "Fire up and forget about it" was the basic theme. But i guess that i'm forced to do some forensics. Sometimes some things go totally wrong with a good cause. I wrote a very friendly email to the author. Result: undef. Regards, Karl

      «The Crux of the Biscuit is the Apostrophe»

A reply falls below the community's threshold of quality. You may see it by logging in.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://11138137]
Approved by philipbailey
Front-paged by Corion
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-18 19:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found