All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lordofthejars.nosqlunit.hbase.HBaseUtils Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.lordofthejars.nosqlunit.hbase;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.MasterNotRunningException;
import org.apache.hadoop.hbase.ZooKeeperConnectionException;
import org.apache.hadoop.hbase.client.HBaseAdmin;

public class HBaseUtils {

	
	public boolean isConnectionPossible(Configuration config) {
		 try {
				HBaseAdmin.checkHBaseAvailable(config);
				return true;
			} catch (MasterNotRunningException e) {
				return false;
			} catch (ZooKeeperConnectionException e) {
				return false;
			}
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy