I created a server EC2 on Amazon AWS and I installed the HappyBase python library for working with HBASE. Also I created a Job Cluster Hbase in EMR. Then I tried to run the script on the first server on EC2:
import happybase
connection = happybase.Connection('….us-west-2.compute.amazonaws.com')
connection.open ()
print connection.tables ()
But I get an error that the server is not found. As host I have Hbase cluster public dns. What I need to configure for working with the database created in the EMR from another EC2 server using python happybase? Thanks.