Skip to content

Commit b9ffa77

Browse files
committed
Fix Hbase issue HBASE-28908
1 parent 18d992f commit b9ffa77

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

itests/util/src/main/java/org/apache/hadoop/hive/hbase/HBaseTestSetup.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ private void setUpFixtures(HiveConf conf) throws Exception {
106106
"org.apache.hadoop.hbase.shaded.");
107107

108108
Configuration hbaseConf = HBaseConfiguration.create(conf);
109+
// A workaround for HBASE-28908
110+
hbaseConf.set("hbase.wal.provider", "filesystem");
109111
util = new HBaseTestingUtility(hbaseConf);
110112

111113
util.startMiniDFSCluster(1);

0 commit comments

Comments
 (0)