Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 2539 invoked from network); 29 Mar 2007 23:27:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Mar 2007 23:27:46 -0000 Received: (qmail 89107 invoked by uid 500); 29 Mar 2007 23:27:53 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 88896 invoked by uid 500); 29 Mar 2007 23:27:53 -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 88887 invoked by uid 99); 29 Mar 2007 23:27:53 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Mar 2007 16:27:53 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Mar 2007 16:27:45 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 29CDD714066 for ; Thu, 29 Mar 2007 16:27:25 -0700 (PDT) Message-ID: <10138422.1175210845136.JavaMail.jira@brutus> Date: Thu, 29 Mar 2007 16:27:25 -0700 (PDT) From: "A B (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Created: (DERBY-2503) Implement IN-list multi-probing logic for hash joins. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Implement IN-list multi-probing logic for hash joins. ----------------------------------------------------- Key: DERBY-2503 URL: https://issues.apache.org/jira/browse/DERBY-2503 Project: Derby Issue Type: Improvement Components: Performance Affects Versions: 10.3.0.0 Reporter: A B Priority: Minor DERBY-47 added a new MultiProbeTableScanResult to handle multi-probing for nested loop joins, which leads to significant performance improvements for certain IN-list queries. However, that Jira did not extend the multi-probing functionality to hash joins. As a result, queries for which the optimizer chooses to do hash joins cannot currently reap the benefits of IN-list multi-probing (see DERBY-2500). It would be good to enhance Derby's execution-time handling of HashScanResultSets so that it can take advantage of IN-list multi-probing for hash joins, as well. Doing so would allow Derby to read fewer rows from disk (similar to DERBY-47) and would also have the convenient side-effect of decreasing the size of the in-memory hash table. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.