Re: Sequential non unique IDs

Поиск
Список
Период
Сортировка
От Craig Ringer
Тема Re: Sequential non unique IDs
Дата
Msg-id 47F30A70.3090507@postnewspapers.com.au
обсуждение исходный текст
Ответ на Sequential non unique IDs  ("John Reeve" <jreeve@pelagodesign.com>)
Ответы Re: Sequential non unique IDs  ("John Reeve" <jreeve@pelagodesign.com>)
Список pgsql-sql
John Reeve wrote:

> I've already considered:
> 1. I can't lock the table, because there are too many inserts happening
> and it will slow down the app.

In a locking approach you may not need to lock the whole table. You
should only need to lock the entry for the customer being altered, eg:

BEGIN;

SELECT 1 FROM task WHERE customerid = 92 FOR UPDATE;

INSERT INTO task (id, customerid, localid) VALUES (nextval('task_id'),
92, (SELECT MAX(localid) + 1 FROM task WHERE customerid = 92));

If I'm not mistaken, that should ensure that for any given customer ID
there's only one transaction holding the locks on that customer.

It won't prevent SELECTs from reading the customer's records, but you
don't mind that so long as they're not using the customer's records to
determine the least free localid. That'll help reduce the hit on your
app's performance, too. If you do mind the , use SELECT ... FOR SHARE
and you'll wait on the FOR UPDATE lock if one is active (however, it
might prove hard to obtain a FOR UPDATE lock if there are lots of FOR
SHARE operations active).

I *think* that'll work, but you should of course test and investigate
before doing anything as crazy as taking my word for it.

> Anyone know a solution for this? This can't be the first time anyone has
> ever tried to do this. Thanks!

If I'm not mistaken about the similarity, you might want to search the
archives for the thread "Primary Key with serial". It might be informative.

--
Craig Ringer


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

Предыдущее
От: "John Reeve"
Дата:
Сообщение: Sequential non unique IDs
Следующее
От: Volkan YAZICI
Дата:
Сообщение: Re: Sequential non unique IDs