Re: PostgreSQL versus MySQL for GPS Data

Поиск
Список
Период
Сортировка
От Juan Pereira
Тема Re: PostgreSQL versus MySQL for GPS Data
Дата
Msg-id 5339c9a90903170725o15b46f19u6dab070b0f50ac21@mail.gmail.com
обсуждение исходный текст
Ответ на PostgreSQL versus MySQL for GPS Data  (Juan Pereira <juankarlos.openggd@gmail.com>)
Ответы Re: PostgreSQL versus MySQL for GPS Data  (Bruce Momjian <bruce@momjian.us>)
Re: PostgreSQL versus MySQL for GPS Data  (Scott Marlowe <scott.marlowe@gmail.com>)
Re: PostgreSQL versus MySQL for GPS Data  (Stephen Frost <sfrost@snowman.net>)
Список pgsql-general
Craig Ringer wrote:


>> You're almost always better off using a single table with a composite
>> primary key like (truckid, datapointid) or whatever. If you'll be doing
>> lots of queries that focus on individual vehicles and expect performance
>> issues then you could partition the table by truckid, so you actually do
>> land up with one table per truck, but transparently accessible via table
>> inheritance so you can still query them all together.

Quite interesting!

The main reason why we thought using a table per truck was because concurrent load: if there are 100 trucks trying to write in the same table, maybe the performance is worse than having 100 tables, due to the fact that the table is blocked for other queries while the writing process is running, isn't it?


>> My main reasons are that in a proper transactional environment (ie
>> you're not using scary MyISAM tables) Pg is *much* better about handling
>> concurrent load, particularly concurrent activity by readers and writers.
>> 2009/3/17 Craig Ringer <craig@postnewspapers.com.au>

Quite interesting again.

Thank you for your answers

Juan Karlos

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

Предыдущее
От: Marco Colombo
Дата:
Сообщение: Re: Maximum transaction rate
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: PostgreSQL versus MySQL for GPS Data