मेरे new_customer
आवेदन को वेब एप्लिकेशन द्वारा कई बार प्रति सेकंड (लेकिन केवल एक बार प्रति सत्र) कहा जाता है। पहली चीज़ जो यह करती है वह है customer
टेबल को लॉक करना (यदि 'अस्तित्व में नहीं है तो एक इंसर्ट करने के लिए' - एक साधारण संस्करण upsert
)।
डॉक्स के बारे में मेरी समझ यह है कि अन्य कॉल new_customer
केवल तब तक कतार में होनी चाहिए जब तक कि सभी पिछले कॉल समाप्त न हो जाएं:
लॉक टेबल एक टेबल-लेवल लॉक प्राप्त करता है, अगर किसी भी परस्पर विरोधी लॉक को रिलीज़ करने के लिए आवश्यक है, तो प्रतीक्षा करें।
इसके बजाय कभी-कभी गतिरोध क्यों होता है?
परिभाषा:
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;
$$;
लॉग से त्रुटि:
2015-07-28 08:02:58 बीएसटी विवरण: प्रक्रिया 12380 डेटाबेस 12141 के 16438 के संबंध में विशेष विवरण के लिए इंतजार कर रहा है; 12379 प्रक्रिया द्वारा अवरुद्ध। प्रक्रिया 12379 डेटाबेस 12141 के संबंध में 16438 पर विशेष छूट का इंतजार करता है; 12380 प्रक्रिया द्वारा अवरुद्ध। प्रक्रिया 12380: new_customer (डिकोड ($ 1 :: पाठ, 'हेक्स') का चयन करें) प्रक्रिया 12379: new_customer (डिकोड ($ 1 :: पाठ, 'हेक्स') का चयन करें) 2015-07-28 08:02:58 BST HINT: क्वेरी विवरण के लिए सर्वर लॉग देखें। 2015-07-28 08:02:58 BST संपर्क: SQL फ़ंक्शन "new_customer" कथन 1 2015-07-28 08:02:58 BST स्टेटमेंट: new_customer (डिकोड ($ 1 :: टेक्स्ट, 'he')) का चयन करें
रिश्ता:
postgres=# select relname from pg_class where oid=16438;
┌──────────┐
│ relname │
├──────────┤
│ customer │
└──────────┘
संपादित करें:
मैं एक साधारण-ईश प्रतिलिपि प्रस्तुत करने योग्य परीक्षण केस प्राप्त करने में कामयाब रहा। मेरे लिए यह किसी प्रकार की दौड़ की स्थिति के कारण बग जैसा दिखता है।
स्कीमा:
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;
$$;
बैश स्क्रिप्ट दो बैश सत्रों में एक साथ चलती है:
for i in {1..1000}; do psql postgres postgres -c "select f_test('blah')"; done
त्रुटि लॉग (आमतौर पर 1000 कॉल से अधिक गतिरोध):
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')
2 संपादित करें:
@ypercube नेlock table
फ़ंक्शन के बाहर के साथ एक प्रकार का सुझाव दिया :
for i in {1..1000}; do psql postgres postgres -c "begin; lock test in exclusive mode; select f_test('blah'); end"; done
दिलचस्प बात यह गतिरोध को समाप्त करता है।
customer
एक तरह से उपयोग किया जाता है जो कमजोर लॉक को पकड़ लेगा? तब यह लॉक अपग्रेड की समस्या हो सकती है।