/**
* @return the zookeeper_port
*/
public String getZookeeperPort()
{
DataStore ds = getDataStore();
if (ds != null && ds.getConnection() != null)
{
Connection conn = ds.getConnection();
if (conn.getProperties() != null && !conn.getProperties().isEmpty())
{
zookeeperPort = conn.getProperties().getProperty(HBaseConstants.ZOOKEEPER_PORT).trim();
}
}