Return-Path: X-Original-To: apmail-db-derby-dev-archive@www.apache.org Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AE48E9304 for ; Fri, 23 Sep 2011 19:51:55 +0000 (UTC) Received: (qmail 24384 invoked by uid 500); 23 Sep 2011 19:51:52 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 24350 invoked by uid 500); 23 Sep 2011 19:51:52 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 24204 invoked by uid 99); 23 Sep 2011 19:51:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Sep 2011 19:51:52 +0000 X-ASF-Spam-Status: No, hits=-2000.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Sep 2011 19:51:49 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 96D19AEC1E for ; Fri, 23 Sep 2011 19:51:28 +0000 (UTC) Date: Fri, 23 Sep 2011 19:51:28 +0000 (UTC) From: "Mamta A. Satoor (JIRA)" To: derby-dev@db.apache.org Message-ID: <1280838892.7825.1316807488614.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <463030415.51954.1316631189129.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Reopened] (DERBY-5426) Improve the error raised by too much contention on a sequence/identity. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-5426?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mamta A. Satoor reopened DERBY-5426: ------------------------------------ I just wanted to see if we could have a standalone program to reproduce the sequence contention error. If that program works then may be we can add it to our junit suite. I am trying to work on a repo but what I wrote does not run into sequence contention. I was hoping I could get some tips on how I could tune the program to make it run into problem(I understand it may not reproduce everytime). I will attach the program soon with instruction on how to run it and what parameters I have tried. Thanks > Improve the error raised by too much contention on a sequence/identity. > ----------------------------------------------------------------------- > > Key: DERBY-5426 > URL: https://issues.apache.org/jira/browse/DERBY-5426 > Project: Derby > Issue Type: Improvement > Components: SQL > Affects Versions: 10.8.2.1, 10.9.0.0 > Reporter: Rick Hillegas > Assignee: Rick Hillegas > Fix For: 10.8.2.2, 10.9.0.0 > > Attachments: derby-5426-01-aa-improveError.diff > > > Currently, when there is too much contention on a sequence/identity, Derby raises an error saying so. There are two properties which the user can adjust in order to reduce the risk of this error: > derby.locks.waitTimeout > derby.language.sequence.preallocator > It would be good to point the user at these knobs. The following change would improve this error reporting: > 1) Raise a lock timeout SQLException > 2) Chain a "too much contention" SQLException (X0Y84) to the lock timeout. > 3) Make the "too much contention" exception suggest that the user adjust the properties mentioned above. > To make the code easier to understand, the exception raising could replace the loop exit inside the following "if" block in SequenceUpdater.getCurrentValueAndAdvance(): > if ( > (_lockTimeoutInMillis >= 0L) && > ( (System.currentTimeMillis() - startTime.longValue()) > _lockTimeoutInMillis ) > ) > { > break; > } > This approach was recommended by the discussion on DERBY-5423. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira