I'm trying to create a Glue Job that enumerates all tables in a database in my catalog. In order to do so I use the following code snippet:
session = boto3.Session(region_name='us-east-2')
glue = session.client('glue')
tables = glue.get_tables(
DatabaseName='customer1'
)
print tables
The job hangs for about 15 minutes and the connection appears to be refused, because I eventually get the following error:
botocore.vendored.requests.exceptions.ConnectTimeout: HTTPSConnectionPool(host='glue.us-east-2.amazonaws.com', port=443): Max retries exceeded with url: / (Caused by ConnectTimeoutError(, 'Connection to glue.us-east-2.amazonaws.com timed out. (connect timeout=60)’))
This issue is specific to the glue API. I can use the S3 API with no problems.
I've gone through all my security groups and opened up all the ports to traffic from anywhere. I've even added self-referencing rules. But this is to no avail.
I can't figure out what could be causing the connection to be blocked. Is AWS specifically blocking glue requests?