javaLearner java
javaLearner java

Reputation: 129

how to increase 60 second timeout issue on Elastic Load Balancer?

We have use-case where we need to fulfill the request even after 60s.

We get Elastic Load Balancing Connection Timeout 504.

How to increase the timeout in ELB (aws).

Upvotes: 5

Views: 14606

Answers (2)

Rafey Hijazy
Rafey Hijazy

Reputation: 131

Well if you have configured your environment (load balancer) through Elastic beanstalk, then from AWS console

Services -> go to 'EC2'

Under Resources, select 'Load balancers'. Choose your load balancer, and under 'Attributes', click the 'Edit idle timeout' button. Set it to whatever value you want (in seconds).

AWS ELB idle timeout config.

Upvotes: 9

mcfinnigan
mcfinnigan

Reputation: 11638

See the relevant AWS documentation on ELB Connection Management

Upvotes: 3

Related Questions