Return-Path: Delivered-To: apmail-incubator-open-jpa-dev-archive@locus.apache.org Received: (qmail 85091 invoked from network); 31 Dec 2006 17:46:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 31 Dec 2006 17:46:06 -0000 Received: (qmail 63538 invoked by uid 500); 31 Dec 2006 17:46:12 -0000 Delivered-To: apmail-incubator-open-jpa-dev-archive@incubator.apache.org Received: (qmail 63515 invoked by uid 500); 31 Dec 2006 17:46:12 -0000 Mailing-List: contact open-jpa-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: open-jpa-dev@incubator.apache.org Delivered-To: mailing list open-jpa-dev@incubator.apache.org Received: (qmail 63506 invoked by uid 99); 31 Dec 2006 17:46:12 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 31 Dec 2006 09:46:12 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of mprudhomapache@gmail.com designates 66.249.82.224 as permitted sender) Received: from [66.249.82.224] (HELO wx-out-0506.google.com) (66.249.82.224) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 31 Dec 2006 09:46:02 -0800 Received: by wx-out-0506.google.com with SMTP id i26so5354111wxd for ; Sun, 31 Dec 2006 09:45:41 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:mime-version:in-reply-to:references:content-type:message-id:content-transfer-encoding:from:subject:date:to:x-mailer:sender; b=qpw5+k3k4sUTOwzIreh1rFlI31Bp4T/Uc2cYfUbh/WcHh36eawJfY5pZnzBNIN4/vlStB5uET3/ELbKPnSnkvUuOsXQNju4E26uXqIYXRrlI7gqklxCL8rMjBETrlz+kgFdcwL3snNgtzOGrBAnKSig9SMg4Kt33c0Cfiop8MoQ= Received: by 10.70.50.10 with SMTP id x10mr33592960wxx.1167587141225; Sun, 31 Dec 2006 09:45:41 -0800 (PST) Received: from ?192.168.1.105? ( [75.67.180.107]) by mx.google.com with ESMTP id h16sm26302103wxd.2006.12.31.09.45.40; Sun, 31 Dec 2006 09:45:40 -0800 (PST) Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: References: <8B813E26-96CF-40D7-A65B-9D6C718D5600@iq80.com> <5D9D5C04-E6E7-45DB-83BE-072B7DED48D4@iq80.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Marc Prud'hommeaux Subject: Re: Debugger Not Working? Date: Sun, 31 Dec 2006 12:45:34 -0500 To: open-jpa-dev@incubator.apache.org X-Mailer: Apple Mail (2.752.3) Sender: Marc Prud'hommeaux X-Virus-Checked: Checked by ClamAV on apache.org Dain- Do you have the data cache enabled? If so, can you disable it and see if it changes anything? I'm still guessing that this might be due to dynamic class generation, which the data cache sometimes does. If you enable verbose logging (e.g., by setting the property "openjpa.Log: DefaultLevel=TRACE"), what are the last few log messages you see before the hang? On Dec 31, 2006, at 12:28 PM, Dain Sundstrom wrote: > > On Dec 31, 2006, at 12:04 AM, Marc Prud'hommeaux wrote: > >> I've never experienced this problem, but as a guess, are you >> running with dynamic enhancement (using the "-javaagent" flag)? If >> so, what happens if you enhance manually, and then run without the >> agent flag? > > Currently, I am, but I can recreate the problem without it, it just > takes a lot longer. Actually, it seems be related to the amount of > code executed. If I run the Agent and it enhances, that is a lot > of code executed and the problem happens quickly. If I run derby > instead of HSQLDB, it happens quickly. It is very strange. > >> Also, you could always try running "javastack" on a process (found >> using "jps") from a console and see if you get a stack trace from >> that. > > I'll try that. > > -dain