Re: Postgress is taking lot of CPU on our embedded hardware.

Поиск
Список
Период
Сортировка
От Jayashankar K B
Тема Re: Postgress is taking lot of CPU on our embedded hardware.
Дата
Msg-id 1365276B7BDA4C40A519F0B4088230B3096F3D4B@POCITMSEXMB03.LntUniverse.com
обсуждение исходный текст
Ответ на Re: Postgress is taking lot of CPU on our embedded hardware.  (Heikki Linnakangas <heikki.linnakangas@enterprisedb.com>)
Ответы Re: Postgress is taking lot of CPU on our embedded hardware.  (Marti Raudsepp <marti@juffo.org>)
Список pgsql-performance
Hi,

The number of inserts into the database would be a minimum of 3000 records in one operation.. We do not have any
stringentrequirement of writing speed. 
So we could make do with a slower write speed as long as the CPU usage is not heavy... :)
We will try reducing the priority and check once.
Our database file is located on a class 2 SD Card. So it is understandable if there is lot of IO activity and speed is
less.
But we are stumped by the amount of CPU Postgres is eating up.
Any configuration settings we could check up? Given our Hardware config, are following settings ok?
Shared Buffers: 24MB
Effective Cache Size: 128MB

We are not experienced with database stuff. So some expert suggestions would be helpful :)

Thanks and Regards
Jayashankar

-----Original Message-----
From: pgsql-performance-owner@postgresql.org [mailto:pgsql-performance-owner@postgresql.org] On Behalf Of Heikki
Linnakangas
Sent: Saturday, January 28, 2012 1:27 AM
To: Jayashankar K B
Cc: Andy Colson; pgsql-performance@postgresql.org
Subject: Re: [PERFORM] Postgress is taking lot of CPU on our embedded hardware.

On 27.01.2012 20:30, Jayashankar K B wrote:
> Hi Heikki Linnakangas: We are using series of Insert statements to insert the records into database.
> Sending data in binary is not an option as the module that writes into DB has been finalized.
> We do not have control over that.

That certainly limits your options.

> Please let me know how we can proceed. On the net I couldn't get hold of any good example where Postgres has been
usedon limited Hardware system. 

I don't think there's anything particular in postgres that would make it a poor choice on a small system, as far as CPU
usageis concerned anyway. But inserting rows in a database is certainly slower than, say, writing them into a flat
file.

At what rate are you doing the INSERTs? And how fast would they need to be? Remember that it's normal that while the
INSERTsare running, postgres will use all the CPU it can to process them as fast as possible. So the question is, at
whatrate do they need to be processed to meet your target. Lowering the process priority with 'nice' might help too, to
givethe other important processes priority over postgres. 

The easiest way to track down where the time is spent would be to run a profiler, if that's possible on your platform.

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

--
Sent via pgsql-performance mailing list (pgsql-performance@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-performance


Larsen & Toubro Limited

www.larsentoubro.com

This Email may contain confidential or privileged information for the intended recipient (s) If you are not the
intendedrecipient, please do not use or disseminate the information, notify the sender and delete it from your system. 

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

Предыдущее
От: Pavel Stehule
Дата:
Сообщение: Re: pl/pgsql functions outperforming sql ones?
Следующее
От: Jayashankar K B
Дата:
Сообщение: Re: Postgress is taking lot of CPU on our embedded hardware.