Re: Postgres Server collapse

Поиск
Список
Период
Сортировка
От Altaf Malik
Тема Re: Postgres Server collapse
Дата
Msg-id 20061128094627.75229.qmail@web30009.mail.mud.yahoo.com
обсуждение исходный текст
Ответ на Re: Postgres Server collapse  (imad <immaad@gmail.com>)
Список pgsql-jdbc
This is because you open one connection per session and the number of sessions incease. :) It would be better if you use ConnectionPooling instead of managing your own session.
Otherwise, do the following:-
 
1. Reduce your session timeout
2. Make sure no connection remains open
3. It would be better if you make a single connection in your application and manage it somehow
 
It seems like your sessions are never killed, or at the end of session, you never close your existing session.
 
--Altaf Malik


imad <immaad@gmail.com> wrote:
On 11/27/06, Sistemasvi wrote:
>
>
> Hello.
>
> I have a postsgresql database with max 500 connections. All development is
> in Java (View, Model, controller model). The problem is when I have high
> traffic (about 10 AM) when the database server collapse. The server turn too
> slow as It haven´t memory and the swap memory increase too much. I must kill
> all postgres connections and restart postmaster service.
>
> I have only one connection by web session. It is good or bad?

One connection only? Then why did you increased the number of connections
to 800? Sorry, I might be missing some point here.


> I have already increased the number of connections to 800 in the postgres
> and sysctl configuration file.
>
> My server is linux Red Hat and Postgres database V8
>
> Which can be the problem?.
>
>
> Carlos
>
>

--Imad
www.EnterpriseDB.com

---------------------------(end of broadcast)---------------------------
TIP 7: You can help support the PostgreSQL project by donating at

http://www.postgresql.org/about/donate


Want to start your own business? Learn how on Yahoo! Small Business.

В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Ingmar Lötzsch
Дата:
Сообщение: Re: PreparedStatement and TYPE bit
Следующее
От: alfranio correia junior
Дата:
Сообщение: PLPG