Re: Using network appliance Filer with modperl

2000-02-03 Thread R. F. Lens
Hi, We've been running a modperl environment 'on' a NetApp since dec 1997 and would't even dare to think about going back;). We've found no gotcha's. Iff you can afford it I can really recommend it. The way we use it is that we store all configs, libraries and sites on the netapp. As a front-end

Re: Using network appliance Filer with modperl

2000-02-03 Thread Tim Bunce
On Thu, Feb 03, 2000 at 01:01:43PM +0100, R. F. Lens wrote: Hi, We've been running a modperl environment 'on' a NetApp since dec 1997 and would't even dare to think about going back;). We've found no gotcha's. Iff you can afford it I can really recommend it. The way we use it is that we

Re: Using network appliance Filer with modperl

2000-02-03 Thread Elizabeth Mattijsen
Hi, is I can step in here... ;-) At 15:11 2/3/00 +, Tim Bunce wrote: As a front-end we have 'cheap' PC's running Linux. The disks in the PC's are only used for the OS and temporary storage of logs, etc. What level of web traffic are you handling 'from' the netapp? E.g., how much traffic

Re: Using network appliance Filer with modperl

2000-02-03 Thread Stas Bekman
On Thu, 3 Feb 2000, Oleg Bartunov wrote: [snipped] Stas, are you sure DESTROY executed when children died ? I'm using ApacheDBI and have problem with DESTROY when I use finish or disconnect methods. Of course! This works for me: die.pl use MyRun; print

Re: Using network appliance Filer with modperl

2000-02-02 Thread Stas Bekman
On Tue, 1 Feb 2000, Pascal Eeftinck wrote: At 11:25 1-2-2000 -0600, Leslie Mikesell wrote: According to Elizabeth Mattijsen: We have been using such a setup for over 2 years now. The only real issue we've found is not so much with mod_perl itself, but with MySQL. If you put your

Re: Using network appliance Filer with modperl

2000-02-02 Thread Oleg Bartunov
On Wed, 2 Feb 2000, Stas Bekman wrote: Date: Wed, 2 Feb 2000 20:21:20 +0200 (IST) From: Stas Bekman [EMAIL PROTECTED] To: Pascal Eeftinck [EMAIL PROTECTED] Cc: mod_perl list [EMAIL PROTECTED] Subject: Re: Using network appliance Filer with modperl # DESTROY makes all kinds of cleanups

Re: Using network appliance Filer with modperl

2000-02-02 Thread Tim Bunce
On Wed, Feb 02, 2000 at 08:21:20PM +0200, Stas Bekman wrote: This thread has drifted way off topic, but anyway... my $do_sql = 'UNLOCK TABLES '; $self-{sth} = $self-{dbh}-prepare($do_sql); $self-{sth}-execute(); I'd express all that as: $self-{dbh}-do("UNLOCK TABLES");

Re: Using network appliance Filer with modperl

2000-02-02 Thread Stas Bekman
On Wed, 2 Feb 2000, Oleg Bartunov wrote: On Wed, 2 Feb 2000, Stas Bekman wrote: Date: Wed, 2 Feb 2000 20:21:20 +0200 (IST) From: Stas Bekman [EMAIL PROTECTED] To: Pascal Eeftinck [EMAIL PROTECTED] Cc: mod_perl list [EMAIL PROTECTED] Subject: Re: Using network appliance Filer

Re: Using network appliance Filer with modperl

2000-02-02 Thread Tim Bunce
On Wed, Feb 02, 2000 at 08:21:20PM +0200, Stas Bekman wrote: Oh, and while I'm being picky (nothing personal Stas!): $self-{sth}-finish if defined $self-{sth} and $self-{sth}; $self-{dbh}-disconnect if defined $self-{dbh} and $self-{dbh}; There's no need to test for "defined" and

Re: Using network appliance Filer with modperl

2000-02-02 Thread Oleg Bartunov
On Wed, 2 Feb 2000, Stas Bekman wrote: Date: Wed, 2 Feb 2000 22:03:38 +0200 (IST) From: Stas Bekman [EMAIL PROTECTED] To: Oleg Bartunov [EMAIL PROTECTED] Cc: mod_perl list [EMAIL PROTECTED] Subject: Re: Using network appliance Filer with modperl On Wed, 2 Feb 2000, Oleg Bartunov wrote

Re: Using network appliance Filer with modperl

2000-02-01 Thread Leslie Mikesell
According to Elizabeth Mattijsen: We have been using such a setup for over 2 years now. The only real issue we've found is not so much with mod_perl itself, but with MySQL. If you put your databases on the NetApp, either have a seperate central database server, or make damn sure you do not

Re: Using network appliance Filer with modperl

2000-02-01 Thread Tim Bunce
On Tue, Feb 01, 2000 at 10:29:30AM +0100, Elizabeth Mattijsen wrote: At 11:16 1/31/00 -0800, siberian wrote: My question is : Has anyone experienced any 'gotchas' in putting perl code that modperl handlers use on a Network Attached file server like a network appliance box ( www.netapp.com )?

Re: Using network appliance Filer with modperl

2000-02-01 Thread Pascal Eeftinck
At 11:25 1-2-2000 -0600, Leslie Mikesell wrote: According to Elizabeth Mattijsen: We have been using such a setup for over 2 years now. The only real issue we've found is not so much with mod_perl itself, but with MySQL. If you put your databases on the NetApp, either have a seperate

Using network appliance Filer with modperl

2000-01-31 Thread siberian
Hi All- I am building a pretty in depth architecture for our new service using ModPerl. I've done a lot of large scale/high traffic apps in modperl before but never in conjunction with a network attached file server. I am thinking that it would really make my life easy to have one central

Re: Using network appliance Filer with modperl

2000-01-31 Thread Perrin Harkins
On Mon, 31 Jan 2000, siberian wrote: My question is : Has anyone experienced any 'gotchas' in putting perl code that modperl handlers use on a Network Attached file server like a network appliance box ( www.netapp.com )? Just make sure you have time synchronized between your servers and the

Re: Using network appliance Filer with modperl

2000-01-31 Thread James G Smith
siberian [EMAIL PROTECTED] wrote: My question is : Has anyone experienced any 'gotchas' in putting perl code that modperl handlers use on a Network Attached file server like a network appliance box ( www.netapp.com )? I am assuming that there are no real issues but before i go blow a ton of cash

Re: Using network appliance Filer with modperl

2000-01-31 Thread brian moseley
On Mon, 31 Jan 2000, Perrin Harkins wrote: On Mon, 31 Jan 2000, siberian wrote: My question is : Has anyone experienced any 'gotchas' in putting perl code that modperl handlers use on a Network Attached file server like a network appliance box ( www.netapp.com )? Just make sure you

Re: Using network appliance Filer with modperl

2000-01-31 Thread Tim Bunce
On Mon, Jan 31, 2000 at 11:16:23AM -0800, siberian wrote: Hi All- I am building a pretty in depth architecture for our new service using ModPerl. I've done a lot of large scale/high traffic apps in modperl before but never in conjunction with a network attached file server. I am

Re: Using network appliance Filer with modperl

2000-01-31 Thread Tim Bunce
On Mon, Jan 31, 2000 at 02:15:37PM -0800, Ian Struble wrote: On Mon, 31 Jan 2000, Tim Bunce wrote: On Mon, Jan 31, 2000 at 11:16:23AM -0800, siberian wrote: Hi All- I am building a pretty in depth architecture for our new service using ModPerl. I've done a lot of large scale/high

Re: Using network appliance Filer with modperl

2000-01-31 Thread Jeffrey W. Baker
siberian wrote: Hi All- I am building a pretty in depth architecture for our new service using ModPerl. I've done a lot of large scale/high traffic apps in modperl before but never in conjunction with a network attached file server. I am thinking that it would really make my life

Re: Using network appliance Filer with modperl

2000-01-31 Thread Leslie Mikesell
According to Tim Bunce: And, just to be balanced, has anyone _not_ found any 'gotchas' and is enjoying life with a netapp or similar NFS file serving appliance? I haven't really had any gotchas in terms of performance. But you do have to plan things out if you are going to be