I was wondering if there’s a way to have a Perl process share some commonly used modules (such as DBI, DBIx::Class and Template) amongst different users? I’ve looked at FCGI::Spawn but it didn’t seem to me it was capable of it. What I’d like to do is run a single Perl daemon which has some modules preloaded and is able to spawn other processes (e.g. a Catalyst application), sharing the same memory block for loaded modules. I know that’s possible, Starman does it for example, but that’s meant for a single user.
Instead of a single user I want this process to do what suexec does for Apache. suexec Will only launch a CGI/FastCGI script if the owner and group are defined correctly. Once launched the process will launched by the owner of the script, a normal user.
My current problem (well, not current but in the future it’ll be) is that through suexec you can run many webapplications, like Catalyst, Dancer and Mojolicious. The thing is, the commonly used modules will be loaded by each process. So if there are 3 users with a Catalyst website using Moose, DBIx::Class and Template that means for every user process these modules need to be loaded into memory. They can’t share the same module space (for some modules this would be bad, of course). When running a few dozen of smallish websites this will eat up RAM quickly.
I’ve came across Plack::App::Apache::ActionWrapper which partly solves this problem for a single user with multiple PSGI application. So far I haven’t been able to make it work for a single user, let alone multiple. But I had hoped it would be possible to use a single wrapper like this, preload some modules, and use this single wrapper for all users.
I suppose I have to ponder a bit more about it. Although I wonder if it’s even possible though. Yes, mod_perl can preload modules but this means executing Perl as the user running the webserver process. I prefer PSGI or FastCGI.
For over 3,5 years now I’ve been programming professionally in PHP. First in PHP4 and about half a year later we finally converted to PHP5. At first I was excited because I could use a lot of new features PHP5 offered such as proper OOP but also Zend Framework.
I started using Zend Framework from 1.5 (currently it’s at 1.10) and have very mixed feelings about it. Yes, it does have a lot of useful libraries such as MVC, basic ACL, Authorization, Input Validation & Filters, Views (with PHP as the templating language, which it essentially was designed for) and more. But ZF had a steep learning curve for me so far has been successfully used in about 5 big webapplications.
However, PHP’s inconsistent function naming, unpredictable order of expected arguments (needle and haystack anyone?), lack of closures/anonymous functions, namespacing, lexical scope and what not makes using PHP a true nightmare. Yes, PHP 5.3 finally supports closures and namespacing, but have you looked at the syntax for both? What a joke. On top of that, PEAR is even a bigger joke. Is someone using it at all?
Running into these issues day by day and knowing it can be easily solved in Perl is very, very depressing. It has totally taken away my desire to program, influencing my desire to program at all and has made my motivation disappear. I’ve truly been wondering if a programming job is really something I want.
The turnaround came when I had a talk with my boss about why we’d still use PHP for future projects. Yes, code reuse is one them but compared to Perl all the additional code I’ve written in PHP that is being reused already exists in Perl at CPAN. To my understanding the use of backslashes to define a namespace in PHP wasn’t really a design choice, but was forced upon because it was too hard to use the double colon or a dot, like many other languages do. On top of that, last time I checked, PHP6 development has been halted because they just can’t get Unicode to work.
Perl already supports Unicode, Perl doesn’t have a weird separation character for namespaces, Perl supports closures/anonymous subroutines, Perl supports lexical scoping, the core list of functions is small, easy to remember and the order of expected parameters is consistent. And it has CPAN.
I was able to convince my boss to start using Perl for future projects because of these given points for both Perl and PHP. What helped though was that he knew of Perl and we’ve also developed some applications in Perl already. One of them a Wx application, a newsletter mailer and some other small scripts. Difference now is that I can use it for webapplications as well.
Now that I’ve gotten the green light to go with Perl for future projects I’m much happier again at work. I’m more motivated to finish the current PHP projects so I can finally start doing some proper Perl work. Programming Perl makes me happy. Moving from PHP to Perl doesn’t mean we’ll be fully dropping PHP. That would be bad and ignorant. Existing stuff will still be supported, improved and extended with new features.
No matter how much you dislike one of the products you support, it’s part of the job. Having stuff you dislike is good actually, because it makes the fun stuff even more fun. For me, PHP makes Perl more fun
.
The first time I heard of Gearman was at Stack Overflow where a question was asked on how to stop workers nicely. On which an excellent joke was made by Cletus: “See now I was going to reply “Bitte halten Sie!”
” . Since then Gearman was stuck in my mind. So far I haven’t had the chance to use it for anything, but for my current project Maximus I need to be able to distribute jobs for several tasks such as uploading files, fetching from SCM repositories and so on. And Gearman is perfect for that kind of job.
The Gearman server was originally implemented in Perl but has now moved to C. I’m not sure if they’re still working on the Perl implementation, but the most recent release was in January this year.
In this post I’ll demonstrate how to setup a simple client and worker. The client sends tasks to the Gearman server and the worker registers itself with the server. When the server receives a task it checks if there’s a worker available and delegates the task to the worker. Once finished with the job the worker notifies the server and in turn the server notifies the client that the requested job is finished. It’s also possible not to wait for the task to be done. It depends on your specific situation and the job that needs to be executed if you want this or not.
Setup
First, install the required modules. Note that on Windows Danga::Socket isn’t stable so Gearman might occasionally fail a job. So far I haven’t had any issues with Linux. We’ll also be installing some additional modules that we’re going to use for the client and worker.
-
$ cpanm Gearman::Server
-
$ cpanm http://search.cpan.org/CPAN/authors/id/D/DO/DORMANDO/Gearman-1.11.tar.gz
-
$ cpanm WWW::Mechanize
-
$ cpanm Archive::Zip
-
$ cpanm JSON::Any
MyApp::Functions
Now lets make a module that contains some functionality that’ll be used by the worker. We’re making this modular so it’s easier to test these components. Both the client and the worker scripts should be just that, scripts. The functions in this module can fetch the thumbnail links from an Altavista image search page. The amount of pages to scan is limited to 20, but this can be adjusted. It also has a function to archive the downloads directory.
-
package MyApp::Functions;
-
use strict;
-
use warnings;
-
use Exporter ‘import’;
-
use File::Basename;
-
use File::Spec;
-
use LWP::Simple;
-
use WWW::Mechanize;
-
-
-
=head2 fetch_image_links
-
-
Fetch all image (thumbnail) links from the search results page
-
=cut
-
sub fetch_image_links {
-
my($keyword, $limit) = @_;
-
$keyword ||= ‘perl’;
-
$limit ||= 20;
-
-
my $mech = WWW::Mechanize->new;
-
$mech->get(‘http://www.altavista.com/image/results?q=’ . $keyword);
-
-
my $count = 0;
-
my @images;
-
do {
-
$count++;
-
foreach my $image( $mech->images ) {
-
next if $image->tag() ne ‘img’;
-
}
-
}
-
-
return @images;
-
}
-
-
=head2 download_images
-
-
Download every supplied image from the list
-
-
modify this code for your own needs be sure to safe the file in the correct
-
=cut
-
sub download_images {
-
my @images = @_;
-
-
-
foreach(@images) {
-
my $filepath = File::Spec->catfile(‘download’, basename($_) . ‘.jpg’);
-
next if -f $filepath;
-
-
my $content = get($_);
-
binmode $fh;
-
close $fh;
-
}
-
}
-
-
=head2 archive_downloads
-
-
Archive the download directory
-
=cut
-
sub archive_downloads {
-
my $zip = Archive::Zip->new();
-
$zip->addTree(‘download’ , $name);
-
-
my $status = $zip->writeToFileNamed( $name . ‘.zip’ );
-
}
-
-
1;
worker.pl
Now that we’ve got our functionality in place it’s time to setup the worker. This worker provides 2 functions. fetch_thumbnails will do a search, collect the thumbnail links and will download them to the download directory. archive_downloads will create a Zip archive with the contents of the downloads directory.
-
#!/usr/bin/perl
-
use strict;
-
use warnings;
-
use lib ‘./lib’;
-
use Gearman::Worker;
-
use JSON::Any;
-
-
my $worker = Gearman::Worker->new;
-
$worker->job_servers(’127.0.0.1′);
-
-
# Using JSON to unserialize arguments
-
my $json = JSON::Any->new;
-
-
# fetch_thumbnails: Search and fetch thumbnails
-
$worker->register_function(‘fetch_thumbnails’, sub {
-
my @images = fetch_image_links( @{$json->decode($_[0]->arg)} );
-
download_images( @images );
-
});
-
-
# archive_downloads: Archive download directory
-
$worker->register_function(‘archive_downloads’, \&archive_downloads);
-
-
$worker->work while 1;
client.pl
A worker needs to have something to do, so lets create a client that can dispatch tasks to it. Our client will create a taskset, containing the fetch_thumbnails and archive_downloads tasks. This taskset is being sent to the server, which distributes it to the workers. When the workers are done the client gets a signal to continue. After this we’ll execute another task to create another archive. With do_task the client will wait for the task to finish. Finally, another archive_downloads task is being dispatched to the background. The client will instantly finish after this, even if the task isn’t finished yet. Still, the task is being executed by a worker when available.
-
#!/usr/bin/perl
-
use strict;
-
use warnings;
-
use lib ‘./lib’;
-
use Gearman::Client;
-
use JSON::Any;
-
-
my $client = Gearman::Client->new;
-
$client->job_servers(’127.0.0.1′);
-
-
# Using JSON to serialize arguments
-
my $json = JSON::Any->new;
-
-
# Create a taskset that will search and download thumbnails and finally archives
-
# it to a ZIP-file.
-
my $taskset = $client->new_task_set;
-
-
$taskset->add_task(‘fetch_thumbnails’, $json->encode([‘perl’, 5]), {
-
on_complete => sub {
-
print "Downloaded all thumbnails\n";
-
},
-
});
-
-
# Run the taskset and wait for it to complete
-
$taskset->wait;
-
-
# Create an archive and wait for it
-
$client->do_task(‘archive_downloads’);
-
-
# And create a third archive, but don’t for this one
-
$client->dispatch_background(‘archive_downloads’);
Try it!
With all code in place open 3 terminals. 1 For gearmand, 1 for the worker and 1 for the script. Start them in the given order.
-
$ gearmand –debug=1
-
$ perl worker.pl
-
$ perl client.pl
The terminal running the client.pl should display the following:
Downloaded all thumbnails
Check the downloads directory to see all the thumbnails. The root directory of the scripts should contain 2 zip archives. If not then the jobs executed and finished the same second. Congratulations, you have a very fast machine! The name of the archive contains a timestamp. Change the code to use something more unique.
Please do note…
Do note that the example code won’t really work with multiple clients and workers. That’s because thumbnails are being stored inside the same directory and the archive_downloads task simply creates a snapshot of the download directory. I’ll leave it up to you as an exercise to figure this out. This post would simply become too long to cover this. This is merely an introduction to Gearman.
As a final note, I do realize we have Storable for serialization, but somehow it got borked on my Strawberry Perl installation.
Other
There’s also a Plack/PSGI script available to retrieve Gearman statistics. It’s available on GitHub. I haven’t tried it so I don’t know if it’s even compatible with the Perl server implementation. But I thought it was worth to mention it.
License
All code supplied here is licensed under the MIT license.
I’ve decided I should enter the Iron Man Blogging Challenge. Basically what you have to do is write 4 Perl related posts within 32 days, with a maximum interval of 10 days between every post. What’s in it for me? If I keep up with the frequency I get a cool badge to put on my blog. But mostly it’s a way for me to focus on Perl and expand my Perl knowledge. The ultimate goal for the Iron Man Blogging Challenge is to promote Perl, which is always a good thing.
The plan currently is to blog about all that’s hot in the Perl web development world; Plack/PSGI, Dancer, Mojolicious and what not. Aside from that I really need to learn about all other cool Perl features I’ve had to miss whilst programming PHP for over 3,5 years full time. Programming in PHP for that long is no fun at all and am glad I was able to convince my boss to use Perl for future projects, making me a happy programmer again.
Besides professionally I also do some programming in my free time. Am a fan of BlitzMax, a BASIC flavor with OOP support, for which I’m working on a Catalyst based website (Maximus) which is supposed to be a lightweight CPAN, but for BlitzMax. I’ve written various BlitzMax modules as well. Am also a CPAN author (CKRAS), maintaining a couple of modules. Of which my first, Mollie::Micropayment, showed horrible influence of PHP. It works, but it’s not pretty.
So, that should do it for my first post. Will try to write a blog post for the challenge every week now.
Which apparently is the slogan for launching Ubuntu 10.04. I think this is going to be a very nice LTS release. It’s too bad that they didn’t include Perl 5.12 in it, but that’s understandable as it just got released; although compiling your own is very easy. On the other hand, PHP 5.3 got in there thanks to the pressure of some fellow Dutchmen. Not that I’m a big fan of PHP, but PHP 5.3 has some nice additions such as closures.
Hello World!
Just testing if my syntax highlighter works!
-
#!/usr/bin/env perl
-
use strict;
-
use warnings;
-
-
print "Hello World!\n";
This seems to be working and after some changes to my themes’ stylesheet it looks a bit better.
Recent Comments