You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Daniel Voros (Jira)" <ji...@apache.org> on 2019/11/15 14:23:00 UTC

[jira] [Assigned] (HIVE-22501) Stats reported multiple times during MR execution for UNION queries

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

Daniel Voros reassigned HIVE-22501:
-----------------------------------


> Stats reported multiple times during MR execution for UNION queries
> -------------------------------------------------------------------
>
>                 Key: HIVE-22501
>                 URL: https://issues.apache.org/jira/browse/HIVE-22501
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Daniel Voros
>            Assignee: Daniel Voros
>            Priority: Major
>              Labels: mapreduce
>
> Take the following example:
> {code}
> set hive.execution.engine=mr;
> create table tb(id string) stored as orc;
> insert into tb values('1');
> create table tb2 like tb stored as orc;
> insert into tb2 select * from tb union all select * from tb;
> {code}
> Last insert results in 2 records in the table, but {{TOTAL_TABLE_ROWS_WRITTEN}} statistic (and number of affected rows on the consolse) is 4.
> We seem to traverse the operator graph multiple times starting from every TS operator and increment the counters every time we hit the FS operator. UNION-ing the table 3 times results in 9 TOTAL_TABLE_ROWS_WRITTEN.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)