Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions catalogs/hive-metastore-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ dependencies {
exclude("org.slf4j")
}
testImplementation(libs.junit.jupiter.api)
testImplementation(libs.mockito.core)
testImplementation(libs.woodstox.core)
testImplementation(libs.testcontainers)
testImplementation(project(":integration-test-common", "testArtifacts"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class HiveClientPool extends ClientPoolImpl<HiveClient, GravitinoRuntimeE
* @param properties The configuration used to initialize the Hive Metastore clients.
*/
public HiveClientPool(String name, int poolSize, Properties properties) {
// Do not allow retry by default as we rely on RetryingHiveClient
// Do not allow retry by default as we rely on RetryingMetaStoreClient
super(poolSize, GravitinoRuntimeException.class, false);
this.clientFactory = new HiveClientFactory(properties, name);
}
Expand All @@ -58,17 +58,20 @@ protected HiveClient newClient() {

@Override
protected HiveClient reconnect(HiveClient client) {
// No-op reconnect: RetryingMetaStoreClient handles reconnect logic.
LOG.warn("Reconnecting to Hive Metastore");
return client;
}

@Override
protected boolean isConnectionException(Exception e) {
// Pool-level reconnection is not required by design.
return false;
}

@Override
protected void close(HiveClient client) {
LOG.info("Closing Hive Metastore client");
client.close();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
/*
* 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;
Copy link

Copilot AI Jan 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider using static imports for Mockito methods to improve readability and align with the project's conventions. Most test files in the codebase use static imports like import static org.mockito.Mockito.mock;, import static org.mockito.Mockito.spy;, etc., instead of using Mockito. prefix throughout the test class.

Copilot uses AI. Check for mistakes.

/**
* Referenced from Apache Iceberg's {@code TestHiveClientPool} implementation.
*
* <p>Source: hive-metastore/src/test/java/org/apache/iceberg/hive/TestHiveClientPool.java
*/
public class TestHiveClientPool {

private HiveClientPool clients;

@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;
}
}