You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues-all@impala.apache.org by "Csaba Ringhofer (JIRA)" <ji...@apache.org> on 2019/04/12 12:05:00 UTC

[jira] [Created] (IMPALA-8409) STRINGs without stats have too low row-size in explain plan

Csaba Ringhofer created IMPALA-8409:
---------------------------------------

             Summary: STRINGs without stats have too low row-size in explain plan
                 Key: IMPALA-8409
                 URL: https://issues.apache.org/jira/browse/IMPALA-8409
             Project: IMPALA
          Issue Type: Bug
          Components: Frontend
    Affects Versions: Impala 3.2.0
            Reporter: Csaba Ringhofer


STRING columns without avg_size statistic are calculated into the row-size as 11 bytes, while they take 12 bytes in the tuple (+ more somewhere in  the memory if they are not empty). The issue is caused by adding -1 (meaning unknown) to the 12 byte slot size.

I think that this doesn't cause problems, as the estimation is probably way off without statistics anyway, but row-size >= tuple size seems like a meaningful invariant that we shouldn't break.

Reproduce:
{code}
create table test_row_size (s string);
explain select * from test_row_size; 
Result:
...
WARNING: The following tables are missing relevant table and/or column statistics.
default.test_row_size
...
00:SCAN HDFS [default.test_row_size]
   partitions=1/1 files=0 size=0B
   row-size=11B cardinality=0
{code}





--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-all-unsubscribe@impala.apache.org
For additional commands, e-mail: issues-all-help@impala.apache.org