You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lens.apache.org by "Arshad Matin (JIRA)" <ji...@apache.org> on 2015/08/25 12:08:45 UTC

[jira] [Closed] (LENS-714) Replace dimension tables with subquery in Columnar Rewriter

     [ https://issues.apache.org/jira/browse/LENS-714?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Arshad Matin closed LENS-714.
-----------------------------

> Replace dimension tables with subquery in Columnar Rewriter
> -----------------------------------------------------------
>
>                 Key: LENS-714
>                 URL: https://issues.apache.org/jira/browse/LENS-714
>             Project: Apache Lens
>          Issue Type: Improvement
>          Components: driver-jdbc
>            Reporter: Sushil Mohanty
>            Assignee: Sushil Mohanty
>             Fix For: 2.3
>
>         Attachments: LENS-714-2.patch
>
>
> In order to optimise the JDBC sql queries, we can skip directly joining with the dimension tables. Instead we can create a subquery with only required column for a table used in the query. For eg. If column id and name are queried from  table dim1 the query can be rewritten as 
> ... inner join (select id,name from dim1) as d1 instead of ...inner join dim1 as d1. 
> For dimension tables with descent size this helps in improving performance to a great extent. Planning to add this in ColumnarRewriter so that columnar DBs can leverage this. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)