Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

492
Views
Glue job is failing with connection time out error

I have a Glue ETL job which reads the data from the catalog and writes to s3. Once this is done a crawler needs to be triggered to update the data in Athena.

So, I'm using glue_client.start_crawler(Name='crawler_name') method to start a crawler. But whenever I tried to start a crawler from the ETL Glue job, it is failing with following error

ConnectTimeoutError: Connect timeout on endpoint URL: "https://glue.eu-central-1.amazonaws.com/"
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

When you launch a Glue job inside a VPC by attaching a connection the traffic will be residing in only AWS network and without going through the public internet.

This is the reason why you are not able to connect to Glue boto3 start crawler API call. To do so you need to create/add the Glue VPC endpoint to the VPC and the request to start crawler has to be as shown as below which includes endpoint_url.

import boto3
glue = boto3.client(service_name='glue', region_name='eu-central-1',
              endpoint_url='https://glue.eu-central-1.amazonaws.com')
glue.start_crawler(Name='crawler_name') 
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!