Apache timeouts

From: Dinko Yaksic <dinko(at)ssi(dot)cl>
To: pgsql-php(at)postgresql(dot)org
Subject: Apache timeouts
Date: 2002-04-23 23:25:23
Message-ID: 1019604323.3cc5ed63aa4a6@webmail.ssi.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Hi!

I'm using a server with Redhat 7.2, Apache 1.3.22, Php 4.0.6 & PostgreSQL
7.1.3.

PROBLEM:

When I execute a long PostgreSQL query via PHP code (involves joining 12
tables), I can't access any other webpage of the server while is processing the
query & displaying the results (opening a new webpage causes that remains blank
until the classic "page not found" appears).

SYNTOMPS:

Doing a 'top' shows postmaster has 98% of the processor. The strange fact
is the frontend (psql) lets do another queries in the meanwhile, but Apache
won't display any other page of the server until the whole query and page
displays finishes. That behaviour is catastrophic for the rest of the users,
moreover when the query takes almost 1 minute.

MEASURES:

I've already applied many optimizations like vacuuming before, and adding
the indexes for the primaries & foreign keys involved, and the ones from the
article http://www.phpbuilder.com/columns/smith20010821.php3 (128MB in shm_max).

I'm not using persistent connections to the db, and I'm allowing 32
connections on postgresql.conf (max_connections) & php.ini (pgsql.max_links).
Any suggestion how to solve the "greedy behaviour" of the web server ?

Thanx in advance, Dinko

Browse pgsql-php by date

  From Date Subject
Next Message angelo.rigo 2002-04-25 13:38:21 printer friendly version
Previous Message Papp, Gyozo 2002-04-23 23:05:06 Re: global variable problem