Return-Path: Delivered-To: apmail-db-derby-user-archive@www.apache.org Received: (qmail 45889 invoked from network); 29 Oct 2007 21:01:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Oct 2007 21:01:54 -0000 Received: (qmail 6877 invoked by uid 500); 29 Oct 2007 21:01:41 -0000 Delivered-To: apmail-db-derby-user-archive@db.apache.org Received: (qmail 6407 invoked by uid 500); 29 Oct 2007 21:01:40 -0000 Mailing-List: contact derby-user-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Reply-To: "Derby Discussion" Delivered-To: mailing list derby-user@db.apache.org Received: (qmail 6396 invoked by uid 99); 29 Oct 2007 21:01:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Oct 2007 14:01:40 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_OPENWHOIS,SPF_HELO_PASS,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of lists@nabble.com designates 216.139.236.158 as permitted sender) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Oct 2007 21:01:53 +0000 Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1Imbje-0002a0-0L for derby-user@db.apache.org; Mon, 29 Oct 2007 14:01:22 -0700 Message-ID: <13476953.post@talk.nabble.com> Date: Mon, 29 Oct 2007 14:01:22 -0700 (PDT) From: gregsmit To: derby-user@db.apache.org Subject: Re: Memory Leak or Expected Behavior - BtreePostCommit In-Reply-To: <472633CD.4000805@sbcglobal.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: gregsmit@us.ibm.com References: <13468710.post@talk.nabble.com> <47261D66.8040001@sbcglobal.net> <13474021.post@talk.nabble.com> <472633CD.4000805@sbcglobal.net> X-Virus-Checked: Checked by ClamAV on apache.org Hi Mike, Sure -- be happy to help with this issue. The database and the queries are very simple. The reason is that we are not really testing a real app, but rather a web framework that we are building as a platform for other apps. So, our "Demo App" is the one that is being stress tested, so all of the interactions with it are very simple. o can you post ddl of table/indexes and maybe some description of usual data for keys in the btree. Here's what we use to create the database table CREATE TABLE employees ( username varchar(32) NOT NULL, firstname varchar(16) NOT NULL, lastname varchar(16) NOT NULL, location varchar(64) NOT NULL, phonenumber varchar(16) NOT NULL, PRIMARY KEY (username) ); o what version of derby are you using? If I can check some intermediate changes into the trunk, can you test them? 10.3.1.4 Yes, I would be happy to test changes. It may take some time (to change our tests, and then it takes quite a while for the tests to run before we start to notice this leak) -- but absolutely. o where are the commits in the test with respect to the above tasks? There is a commit after each task. Each represents a REST call to a web app (a POST, a GET, an a DELETE) o what is the isolation level of the above tasks. Completely isolated, each being driven by a web app testing harness in another process o could you describe exactly what jdbc you do for "list all entries" - is it a normal jdbc select loop off of select * from table? SELECT * FROM employees Let me know if there is anything else about our app that I can tell you. Also, just let me know, and I can try out fixes you put in trunk. Cheers, Greg -- View this message in context: http://www.nabble.com/Memory-Leak-or-Expected-Behavior---BtreePostCommit-tf4712054.html#a13476953 Sent from the Apache Derby Users mailing list archive at Nabble.com.