İşlevim new_customer
, bir web uygulaması tarafından saniyede birkaç kez (ancak oturum başına bir kez) çağrılır. customer
Yaptığı ilk şey masayı kilitlemektir (eğer 'yoksa' bir ekleme yapmak - basit bir varyantı upsert
).
Dokümanlar hakkındaki anlayışım, diğer new_customer
tüm çağrıların önceki tüm çağrılar bitene kadar sıraya girmesi gerektiğidir:
LOCK TABLE, gerektiğinde çakışan kilitlerin serbest bırakılmasını bekleyen bir tablo düzeyinde kilit alır.
Neden bazen tıkanıyor?
tanım:
create function new_customer(secret bytea) returns integer language sql
security definer set search_path = postgres,pg_temp as $$
lock customer in exclusive mode;
--
with w as ( insert into customer(customer_secret,customer_read_secret)
select secret,decode(md5(encode(secret, 'hex')),'hex')
where not exists(select * from customer where customer_secret=secret)
returning customer_id )
insert into collection(customer_id) select customer_id from w;
--
select customer_id from customer where customer_secret=secret;
$$;
günlük hatası:
2015-07-28 08:02:58 BST DETAYI: Süreç 12380, 12141 veritabanının 16438 ilişkisinde ExclusiveLock'u bekler; işlem 12379 tarafından engellendi. İşlem 12379, veritabanı 12141'in 16438 ilişkisinde ExclusiveLock'u bekler; 12380 işlemi tarafından engellendi. İşlem 12380: new_customer'ı seçin (kod çözme ($ 1 :: metin, 'hex')) Proses 12379: new_customer seçin (kod çözme ($ 1 :: metin, 'hex')) 2015-07-28 08:02:58 BST İPUCU: Sorgu ayrıntıları için sunucu günlüğüne bakın. 2015-07-28 08:02:58 BST CONTEXT: SQL işlevi "new_customer" deyimi 1 2015-07-28 08:02:58 BST BİLDİRİMİ: new_customer seçin (kod çözme ($ 1 :: metin, 'hex'))
ilişkisi:
postgres=# select relname from pg_class where oid=16438;
┌──────────┐
│ relname │
├──────────┤
│ customer │
└──────────┘
Düzenle:
Basit bir tekrarlanabilir test senaryosu almayı başardım. Bana göre bu bir çeşit yarış durumu nedeniyle bir hata gibi görünüyor.
şema:
create table test( id serial primary key, val text );
create function f_test(v text) returns integer language sql security definer set search_path = postgres,pg_temp as $$
lock test in exclusive mode;
insert into test(val) select v where not exists(select * from test where val=v);
select id from test where val=v;
$$;
bash betiği iki bash oturumunda eşzamanlı olarak çalışır:
for i in {1..1000}; do psql postgres postgres -c "select f_test('blah')"; done
hata günlüğü (genellikle 1000 çağrıda bir avuç çıkmaz):
2015-07-28 16:46:19 BST ERROR: deadlock detected
2015-07-28 16:46:19 BST DETAIL: Process 9394 waits for ExclusiveLock on relation 65605 of database 12141; blocked by process 9393.
Process 9393 waits for ExclusiveLock on relation 65605 of database 12141; blocked by process 9394.
Process 9394: select f_test('blah')
Process 9393: select f_test('blah')
2015-07-28 16:46:19 BST HINT: See server log for query details.
2015-07-28 16:46:19 BST CONTEXT: SQL function "f_test" statement 1
2015-07-28 16:46:19 BST STATEMENT: select f_test('blah')
düzenleme 2:
@ypercube bir varyant önerdi ile lock table
dışarıdan fonksiyonu:
for i in {1..1000}; do psql postgres postgres -c "begin; lock test in exclusive mode; select f_test('blah'); end"; done
ilginç bir şekilde bu çıkmazları ortadan kaldırır.
customer
daha zayıf bir kilit tutacak şekilde kullanılır? Sonra bir kilit yükseltme sorunu olabilir.