Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 49728 invoked from network); 1 Apr 2011 18:35:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Apr 2011 18:35:44 -0000 Received: (qmail 70900 invoked by uid 500); 1 Apr 2011 18:35:44 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 70877 invoked by uid 500); 1 Apr 2011 18:35:44 -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 70870 invoked by uid 99); 1 Apr 2011 18:35:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Apr 2011 18:35:44 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_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, 01 Apr 2011 18:35:42 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id C03038E366 for ; Fri, 1 Apr 2011 18:35:05 +0000 (UTC) Date: Fri, 1 Apr 2011 18:35:05 +0000 (UTC) From: "Mamta A. Satoor (JIRA)" To: derby-dev@db.apache.org Message-ID: <915555756.29242.1301682905783.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (DERBY-1482) Update triggers on tables with blob columns stream blobs into memory even when the blobs are not referenced/accessed. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/DERBY-1482?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mamta A. Satoor updated DERBY-1482: ----------------------------------- Attachment: DERBY_1482_patch4_stat.txt DERBY_1482_patch4_diff.txt This patch is not ready for commit but I wanted to put it down for review. I will be on vacation for next few days and will look at the review comments once I am back. But what the patch does is to read all the necessary columns during triggering sql's execution rather than read all the columns from the trigger table just because there is a trigger defined on the table. The thing to keep in mind is that the triggering sql might need more columns in it's resultset that what a trigger might need during it's execution. So, the other thing that the patch does is to carve out a temporary resulset for every firing trigger which will be exactly same as the resulset created by the triggering sql or a subset of the resulset created by the triggering sql. Once the right resulset set is constructed for the firing trigger, it will be able to find the columns referenced in it's trigger action through the REFERENCING clause in the correct positions in the resulset. I have not run the derbyall and junit suite on this. I plan to work on that after I return from by vacation. > Update triggers on tables with blob columns stream blobs into memory even when the blobs are not referenced/accessed. > --------------------------------------------------------------------------------------------------------------------- > > Key: DERBY-1482 > URL: https://issues.apache.org/jira/browse/DERBY-1482 > Project: Derby > Issue Type: Bug > Components: SQL > Affects Versions: 10.2.1.6 > Reporter: Daniel John Debrunner > Assignee: Mamta A. Satoor > Priority: Minor > Labels: LOB > Fix For: 10.7.1.1 > > Attachments: DERBY_1482_patch4_diff.txt, DERBY_1482_patch4_stat.txt, TriggerTests_ver1_diff.txt, TriggerTests_ver1_stat.txt, derby1482DeepCopyAfterTriggerOnLobColumn.java, derby1482Repro.java, derby1482ReproVersion2.java, derby1482_patch1_diff.txt, derby1482_patch1_stat.txt, derby1482_patch2_diff.txt, derby1482_patch2_stat.txt, derby1482_patch3_diff.txt, derby1482_patch3_stat.txt, junitUpgradeTestFailureWithPatch1.out > > > Suppose I have 1) a table "t1" with blob data in it, and 2) an UPDATE trigger "tr1" defined on that table, where the triggered-SQL-action for "tr1" does NOT reference any of the blob columns in the table. [ Note that this is different from DERBY-438 because DERBY-438 deals with triggers that _do_ reference the blob column(s), whereas this issue deals with triggers that do _not_ reference the blob columns--but I think they're related, so I'm creating this as subtask to 438 ]. In such a case, if the trigger is fired, the blob data will be streamed into memory and thus consume JVM heap, even though it (the blob data) is never actually referenced/accessed by the trigger statement. > For example, suppose we have the following DDL: > create table t1 (id int, status smallint, bl blob(2G)); > create table t2 (id int, updated int default 0); > create trigger tr1 after update of status on t1 referencing new as n_row for each row mode db2sql update t2 set updated = updated + 1 where t2.id = n_row.id; > Then if t1 and t2 both have data and we make a call to: > update t1 set status = 3; > the trigger tr1 will fire, which will cause the blob column in t1 to be streamed into memory for each row affected by the trigger. The result is that, if the blob data is large, we end up using a lot of JVM memory when we really shouldn't have to (at least, in _theory_ we shouldn't have to...). > Ideally, Derby could figure out whether or not the blob column is referenced, and avoid streaming the lob into memory whenever possible (hence this is probably more of an "enhancement" request than a bug)... -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira