Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 67643 invoked from network); 2 Jun 2005 17:23:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Jun 2005 17:23:22 -0000 Received: (qmail 87230 invoked by uid 500); 2 Jun 2005 17:23:21 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 87168 invoked by uid 500); 2 Jun 2005 17:23:20 -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: "Derby Development" Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 87125 invoked by uid 99); 2 Jun 2005 17:23:20 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 02 Jun 2005 10:23:15 -0700 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id 7C1DB1A8 for ; Thu, 2 Jun 2005 19:22:58 +0200 (CEST) Message-ID: <225080837.1117732978505.JavaMail.jira@ajax.apache.org> Date: Thu, 2 Jun 2005 19:22:58 +0200 (CEST) From: "Samuel Andrew McIntyre (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Closed: (DERBY-108) Document performance tip for inserts in tuning guide In-Reply-To: <771428706.1103573954099.JavaMail.apache@nagoya> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/DERBY-108?page=all ] Samuel Andrew McIntyre closed DERBY-108: ---------------------------------------- Assign To: Jeff Levitt Resolution: Fixed Fix Version: 10.1.0.0 (was: 10.0.2.2) Confirmed that the new tuning suggestion is in the Tuning Guide for 10.1. > Document performance tip for inserts in tuning guide > ---------------------------------------------------- > > Key: DERBY-108 > URL: http://issues.apache.org/jira/browse/DERBY-108 > Project: Derby > Type: Improvement > Components: Documentation > Versions: 10.0.2.1 > Reporter: Sunitha Kambhampati > Assignee: Jeff Levitt > Priority: Minor > Fix For: 10.1.0.0 > > Need to add this important performance tip in the tuning guide document. > Could probably be added as Tip #8 in http://incubator.apache.org/derby/manuals/tuning/perf20.html#HDRSII-PERF-25864 > ---------------------------------------------- > Avoid inserts in autocommit mode if possible: > Inserts can be painfully slow in autocommit mode. The reason is that each commit involves a flush of the log to the disk for each insert statement. The commit will not return until a physical disk write has been executed. > To speed things up, there are 2 possibilities > - Run in autocommit false mode and execute a number of inserts in one transaction and then explicitly issue a commit. > - If your application allows an initial load into the table, one can use the import system procedures to insert data into a table. > http://incubator.apache.org/derby/manuals/tools/tools90.html#HDRSII-IMPORT-57005. > If loading into an empty table using these interfaces, derby will not log the > individual inserts. The reason is recovery understands that a backout of this > operation is an empty table, and the data in the table is forced to > disk before the transaction commits. > -------------------------------------------- > References from derby mailing lists: > http://nagoya.apache.org/eyebrowse/ReadMsg?listName=derby-user@db.apache.org&msgNo=363 > http://nagoya.apache.org/eyebrowse/ReadMsg?listId=271&msgNo=335 -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira