-
Notifications
You must be signed in to change notification settings - Fork 722
[#9581] fix(hive): Perform resource cleanup in HiveClientPool close #9617
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
67670a1
4cbc390
9175142
597b6d1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,97 @@ | ||
| /* | ||
| * 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.gravitino.hive; | ||
|
|
||
| import static org.junit.jupiter.api.Assertions.assertEquals; | ||
| import static org.junit.jupiter.api.Assertions.assertThrows; | ||
| import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
|
||
| import com.google.common.collect.Lists; | ||
| import java.util.List; | ||
| import java.util.Properties; | ||
| import org.apache.gravitino.exceptions.GravitinoRuntimeException; | ||
| import org.apache.gravitino.hive.client.HiveClient; | ||
| import org.junit.jupiter.api.AfterEach; | ||
| import org.junit.jupiter.api.BeforeEach; | ||
| import org.junit.jupiter.api.Test; | ||
| import org.mockito.Mockito; | ||
|
||
|
|
||
| // Referred from Apache Iceberg's TestHiveClientPool implementation | ||
| // hive-metastore/src/test/java/org/apache/iceberg/hive/TestHiveClientPool.java | ||
| public class TestHiveClientPool { | ||
joeyutong marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| HiveClientPool clients; | ||
joeyutong marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| @BeforeEach | ||
| public void before() { | ||
| HiveClientPool clientPool = new HiveClientPool("hive", 2, new Properties()); | ||
| clients = Mockito.spy(clientPool); | ||
| } | ||
|
|
||
| @AfterEach | ||
| public void after() { | ||
| clients.close(); | ||
| clients = null; | ||
| } | ||
|
|
||
| @Test | ||
| public void testNewClientFailure() { | ||
| Mockito.doThrow(new RuntimeException("Connection exception")).when(clients).newClient(); | ||
| RuntimeException ex = assertThrows(RuntimeException.class, () -> clients.run(Object::toString)); | ||
| assertEquals("Connection exception", ex.getMessage()); | ||
| } | ||
|
|
||
| @Test | ||
| public void testReconnect() { | ||
| HiveClient hiveClient = newClient(); | ||
|
|
||
| String metaMessage = "Got exception: org.apache.thrift.transport.TTransportException"; | ||
| Mockito.doThrow(new GravitinoRuntimeException(metaMessage)) | ||
| .when(hiveClient) | ||
| .getAllDatabases(""); | ||
|
|
||
| GravitinoRuntimeException ex = | ||
| assertThrows( | ||
| GravitinoRuntimeException.class, | ||
| () -> clients.run(client -> client.getAllDatabases(""))); | ||
| assertEquals("Got exception: org.apache.thrift.transport.TTransportException", ex.getMessage()); | ||
| // Verify that the method is never called. | ||
| Mockito.verify(clients, Mockito.never()).reconnect(hiveClient); | ||
| } | ||
|
|
||
| @Test | ||
| public void testClose() throws Exception { | ||
| HiveClient hiveClient = newClient(); | ||
|
|
||
| List<String> databases = Lists.newArrayList("db1", "db2"); | ||
| Mockito.doReturn(databases).when(hiveClient).getAllDatabases(""); | ||
| assertEquals(clients.run(client -> client.getAllDatabases("")), databases); | ||
|
|
||
| clients.close(); | ||
| assertTrue(clients.isClosed()); | ||
| Mockito.verify(hiveClient).close(); | ||
| } | ||
|
|
||
| private HiveClient newClient() { | ||
| HiveClient hiveClient = Mockito.mock(HiveClient.class); | ||
| Mockito.doReturn(hiveClient).when(clients).newClient(); | ||
| return hiveClient; | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.