Re: Any tool/script available which can be used to measure scalability of an application's database.

Поиск
Список
Период
Сортировка
От Robert Klemme
Тема Re: Any tool/script available which can be used to measure scalability of an application's database.
Дата
Msg-id CAM9pMnPTF-MQCdM7BE45gWS_zMTGX1jNev0EGNXgSjCdMLJizw@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Any tool/script available which can be used to measure scalability of an application's database.  (B Sreejith <bsreejithin@gmail.com>)
Ответы Re: Any tool/script available which can be used to measure scalability of an application's database.  (Craig Ringer <ringerc@ringerc.id.au>)
Список pgsql-performance
On Sat, Jul 14, 2012 at 11:50 AM, B Sreejith <bsreejithin@gmail.com> wrote:
> Dear All,
> Thanks alot for all the invaluable comments.

Additionally to Craig's excellent advice to measurements there's
something else you can do: with the knowledge of the queries your
application fires against the database you can evaluate your schema
and index definitions.  While there is no guarantee that your
application will scale well if all indexes are present you believe
need to be present based on that inspection, you can pretty easily
identify tables with can be improved.  These are tables which a) are
known to grow large and b) do not have indexes nor no indexes which
support the queries your application does against these tables which
will result in full table scans.  Any database which scales in size
will sooner or later hit a point where full table scans of these large
tables will be extremely slow.  If these queries are done during
regular operation (and not nightly maintenance windows for example)
then you pretty surely have identified a show stopper.

Kind regards

robert

--
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestpractices.com/

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

Предыдущее
От: B Sreejith
Дата:
Сообщение: Re: Any tool/script available which can be used to measure scalability of an application's database.
Следующее
От: Sergey Konoplev
Дата:
Сообщение: Re: Any tool/script available which can be used to measure scalability of an application's database.