7

I have a use case where I need to use ROW_NUMBER() over PARTITION: Something like:

SELECT
  Column1 , Column 2
  ROW_NUMBER() OVER (
    PARTITION BY ACCOUNT_NUM
    ORDER BY FREQ, MAN, MODEL) as LEVEL
FROM
  TEST_TABLE

I need a workaround for this in Impala. Unfortunately Impala does not support sub queries and also does not support ROW_NUMBER() OVER functionality. Thank you for your help.

user1189851
  • 4,861
  • 15
  • 47
  • 69
  • 5
    Impala will support both analytic window functions (including ROW_NUMBER()) as well as correlated subqueries in the upcoming 2.0 release. – Matt Oct 06 '14 at 20:17

4 Answers4

10

ROW_NUMBER() OVER PARTITION was added in CDH 5.2:

https://www.cloudera.com/documentation/enterprise/latest/topics/impala_analytic_functions.html#row_number

ROW_NUMBER() OVER([partition_by_clause] order_by_clause)
Tagar
  • 13,911
  • 6
  • 95
  • 110
4

Impala is rather limited for this type of query. With some assumptions, this query is possible:

  • The four columns in the partitioning clause are never NULL
  • The four columns in the partitioning clause uniquely identify a row

The query is rather ugly and expensive:

select tt.column1, tt.column2, count(*) as level
from test_table tt join
     test_table tt2
     on tt.account_num = tt2.account_num and
        (tt2.freq < tt.freq or
         tt2.freq = tt.freq and tt2.man < t.man or
         tt2.freq = tt.freq and tt2.man = t.man and tt2.model <= t.model
        )
group by tt.column1, tt.column2, tt.account_num, tt.freq, tt.man, tt.model;
Gordon Linoff
  • 1,242,037
  • 58
  • 646
  • 786
2

Impala supports now the over clause. Syntax is the same as in the question.

SELECT
  Column1 , Column 2
  ROW_NUMBER() OVER (
    PARTITION BY ACCOUNT_NUM
    ORDER BY FREQ, MAN, MODEL) as LEVEL
FROM
  TEST_TABLE

Impala documentation: https://www.cloudera.com/documentation/enterprise/5-6-x/topics/impala_analytic_functions.html#over

Alexis.Rolland
  • 5,724
  • 6
  • 50
  • 77
0

Impala supports sub-queries. Both in parentheses and using the with function.

Keng
  • 52,011
  • 32
  • 81
  • 111