[ https://issues.apache.org/jira/browse/HIVE-21456?focusedWorklogId=754689&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-754689 ]
ASF GitHub Bot logged work on HIVE-21456: ----------------------------------------- Author: ASF GitHub Bot Created on: 08/Apr/22 16:12 Start Date: 08/Apr/22 16:12 Worklog Time Spent: 10m Work Description: saihemanth-cloudera commented on code in PR #3105: URL: https://github.com/apache/hive/pull/3105#discussion_r846286761 ########## standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/TestRemoteHiveHttpMetaStore.java: ########## @@ -0,0 +1,47 @@ +/* + * 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 org.apache.hadoop.hive.metastore.annotation.MetastoreUnitTest; +import org.junit.experimental.categories.Category; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import org.apache.hadoop.hive.metastore.annotation.MetastoreCheckinTest; +import org.apache.hadoop.hive.metastore.conf.MetastoreConf; +import org.apache.hadoop.hive.metastore.conf.MetastoreConf.ConfVars; + +@Category(MetastoreCheckinTest.class) +public class TestRemoteHiveHttpMetaStore extends TestRemoteHiveMetaStore { + + private static final Logger LOG = LoggerFactory.getLogger(TestRemoteHiveHttpMetaStore.class); + + @Override + public void start() throws Exception { + MetastoreConf.setVar(conf, ConfVars.THRIFT_TRANSPORT_MODE, "http"); + LOG.info("Attempting to start test remote metastore in http mode"); + super.start(); + LOG.info("Successfully started test remote metastore in http mode"); + } + + @Override + protected HiveMetaStoreClient createClient() throws Exception { + MetastoreConf.setVar(conf, ConfVars.METASTORE_CLIENT_THRIFT_TRANSPORT_MODE, "http"); + return super.createClient(); + } +} Review Comment: Nit: Add a new line at the end of the file. Issue Time Tracking ------------------- Worklog Id: (was: 754689) Time Spent: 3h 50m (was: 3h 40m) > Hive Metastore Thrift over HTTP > ------------------------------- > > Key: HIVE-21456 > URL: https://issues.apache.org/jira/browse/HIVE-21456 > Project: Hive > Issue Type: New Feature > Components: Metastore, Standalone Metastore > Reporter: Amit Khanna > Assignee: Sourabh Goyal > Priority: Major > Labels: pull-request-available > Attachments: HIVE-21456.2.patch, HIVE-21456.3.patch, > HIVE-21456.4.patch, HIVE-21456.patch > > Time Spent: 3h 50m > Remaining Estimate: 0h > > Hive Metastore currently doesn't have support for HTTP transport because of > which it is not possible to access it via Knox. Adding support for Thrift > over HTTP transport will allow the clients to access via Knox -- This message was sent by Atlassian Jira (v8.20.1#820001)