Re: [VOTE] Should we release Hive Storage API 2.7.3-rc0 ?

2021-06-11 Thread Pavan Lanka
+1 (non binding)

Built and verified unit tests
Built and tested ORC
Verified HIVE-24458 functionality and performance gains

Regards,
Pavan


> On Jun 8, 2021, at 2:14 AM, Panos Garefalakis  wrote:
> 
> Hello all,
> 
> I would like to propose a new storage-api release with HIVE-24458
>  in it (as discussed in a
> previous thead).
> 
> Shall we release the following artifacts as Hive Storage API 2.7.3?
> 
> tar: http://home.apache.org/~pgaref/hive-storage-2.7.3/
> tag: https://github.com/apache/hive/releases/tag/storage-release-2.7.3-rc0
> jiras: https://issues.apache.org/jira/projects/HIVE/versions/12350287
> 
> Cheers,
> Panagiotis



[jira] [Created] (HIVE-25241) Simplify Metrics System

2021-06-11 Thread David Mollitor (Jira)
David Mollitor created HIVE-25241:
-

 Summary: Simplify Metrics System
 Key: HIVE-25241
 URL: https://issues.apache.org/jira/browse/HIVE-25241
 Project: Hive
  Issue Type: Improvement
Reporter: David Mollitor
Assignee: David Mollitor


Took a look at the {{Metrics}} stuff in Hive and found a lot of boilerplate 
code on the client code to interact with Metrics.  It's too much stuff and it's 
done differently in different places.

* Never allow Metrics System to be "null" - supply a no-op version by default
* Metrics system should never throw an error to the client, just 
log-and-ignore. Metrics shouldn't break a query or other operation
* General cleanup



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


[jira] [Created] (HIVE-25240) Query Text based MaterializedView rewrite if subqueries

2021-06-11 Thread Krisztian Kasa (Jira)
Krisztian Kasa created HIVE-25240:
-

 Summary: Query Text based MaterializedView rewrite if subqueries
 Key: HIVE-25240
 URL: https://issues.apache.org/jira/browse/HIVE-25240
 Project: Hive
  Issue Type: Improvement
Reporter: Krisztian Kasa
Assignee: Krisztian Kasa


{code}
create materialized view mat1 as
select col0 from t1 where col0 > 1;

explain cbo
select col0 from
  (select col0 from t1 where col0 > 1) sub
where col0 = 10;
{code}
{code}
HiveProject(col0=[CAST(10):INTEGER])
  HiveFilter(condition=[=($0, 10)])
HiveTableScan(table=[[default, mat1]], table:alias=[default.mat1])
{code}

 



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