multiple sequence number for one column - Mailing list pgsql-general

From mirthcyy
Subject multiple sequence number for one column
Date
Msg-id 95862fdc-eb2e-4533-8331-d49775b0ef8f@f2g2000yqf.googlegroups.com
Whole thread Raw
Responses Re: multiple sequence number for one column  (Merlin Moncure <mmoncure@gmail.com>)
Re: multiple sequence number for one column  (David Johnston <polobo@yahoo.com>)
List pgsql-general
hi group,

we need help on one postgresql locking issue:

Originally we have a table like below;

id bigint not null nextval('xxx)',
customer_id int not null,
insert_record_date timestamp not null
...

so this id column is using a sequence number that applies to all
customers. And it's the primary key of the table

recently we made the change to use id and customer_id as the composite
primary key. And id will have a sequence number within each
customer_id. So now we can't use sequence number any more. To insert
the data into the new table, we have to calculate the id for that
particular customer_id first like

SELECT INTO v_ID COLESCSE(MAX("ID),0)+1
WHERE "Customer_ID"=P_A_Customer_ID

And then insert into this table with the id getting from the above
query. We also used:

PERFORM pg_advisory_lock('"Schema"."TABLE"'::regclass::integer,
P_A_Customer_ID


Then we found out this lock doesn't work. If two transactions for the
same customer comes in very closely, the second one will try to get
the max(id) from the table while the first one is still working on the
insert and then it will be a problem.

We thought of using SHARE UPDATE EXCLUSIVE but it will interfere with
regular maintenance like Vacuum and also it will block other updates
etc.

Is there a good way to solve this issue?

Thanks a lot






pgsql-general by date:

Previous
From: Ovidiu Farauanu
Date:
Subject:
Next
From: Merlin Moncure
Date:
Subject: Re: multiple sequence number for one column