You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jc...@apache.org on 2020/08/03 19:46:45 UTC

[hive] branch master updated: HIVE-23949: Introduce caching layer in HS2 to accelerate query compilation (Soumyakanti Das, reviewed by Vineet Garg, Jesus Camacho Rodriguez) (addendum)

This is an automated email from the ASF dual-hosted git repository.

jcamacho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new ad28ea0  HIVE-23949: Introduce caching layer in HS2 to accelerate query compilation (Soumyakanti Das, reviewed by Vineet Garg, Jesus Camacho Rodriguez) (addendum)
ad28ea0 is described below

commit ad28ea0fdfd5dbd8736de393af02ac202f439949
Author: Jesus Camacho Rodriguez <jc...@apache.org>
AuthorDate: Mon Aug 3 12:46:21 2020 -0700

    HIVE-23949: Introduce caching layer in HS2 to accelerate query compilation (Soumyakanti Das, reviewed by Vineet Garg, Jesus Camacho Rodriguez) (addendum)
---
 .../metastore/HiveMetaStoreClientWithLocalCache.java    | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientWithLocalCache.java b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientWithLocalCache.java
index 4146d52..17262b9 100644
--- a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientWithLocalCache.java
+++ b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientWithLocalCache.java
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.hadoop.hive.metastore;
 
 import com.github.benmanes.caffeine.cache.Cache;