Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 9408 invoked from network); 3 Feb 2005 19:01:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 3 Feb 2005 19:01:23 -0000 Received: (qmail 531 invoked by uid 500); 3 Feb 2005 19:01:22 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 491 invoked by uid 500); 3 Feb 2005 19:01:22 -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 476 invoked by uid 99); 3 Feb 2005 19:01:22 -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, 03 Feb 2005 11:01:20 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id j13J1HnO026359 for ; Thu, 3 Feb 2005 20:01:17 +0100 Message-ID: <1724606172.1107457277753.JavaMail.jira@ajax.apache.org> Date: Thu, 3 Feb 2005 20:01:17 +0100 (CET) From: "Jeff Levitt (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Commented: (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=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/DERBY-108?page=comments#action_58573 ] Jeff Levitt commented on DERBY-108: ----------------------------------- I added documenation for this to the DITA converted version of the Tuning Derby documentation. > 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 > Priority: Minor > Fix For: 10.0.2.2 > > 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 - If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira