144
Views
11
Comments
Execution Timeout Expired
Question

Hi all,

I'm getting an error like this 'Execution Timeout Expired. The timeout period elapsed prior to completion of the operation or the server is not responding. Operation cancelled by user . The statement has been terminated. '

Below I'm attaching the image. Please may I know how to overcome this issue.

Dorine Boudry Removed image because it had an unprotected URL in it

Thanks

Bhuvaneshwari



2024-03-22 09-17-23
Chandra Vikas Sharma

Hi ,

Please increase the Timeout of that particular module see below image.

UserImage.jpg
Buddula Bhuvaneshwari

Hi @Chandra Vikas 

I increased the timeout .But again same error is coming.

2021-09-06 15-09-53
Dorine Boudry
 
MVP

@Chandra Vikas ,

this error message is not related to the timeout for a server call from the client, so changing that value will not help.

UserImage.jpg
Alexandre Yip

Hi Bhuvaneshwari Reddy, 

Are you retrieving this information from a Web service? 

Notice that you don't have pagination as well, you could try to return less records and use pagination to access the other records. 

Regards, 

2021-09-06 15-09-53
Dorine Boudry
 
MVP

Hi @Bhuvaneshwari Reddy ,

just a few remarks on what you are sharing here

  • you share the url to your application (the url looks production ?)
  • your application has no authorization, i can just go to that page and see your data
  • i could even go to a page like this

I just removed the image you shared for your protection

UserImage.jpg
Buddula Bhuvaneshwari

Hi @Dorine Boudry 

Thank you so much for removing the image .I given authorization .

2021-09-06 15-09-53
Dorine Boudry
 
MVP

Ok, I  checked, I can no longer access your screens.

So you can add that image again, but maybe make the url unreadable

UserImage.jpg
Buddula Bhuvaneshwari

Hi @Dorine Boudry 

Below I attached the image for reference .May I know how to overcome this error.

2021-09-06 15-09-53
Dorine Boudry
 
MVP

you are showing an image of a screen, how could we possibly know what is going on or why you are getting an error.  On the screen as shown, there isn't even an error.

This is normally a timeout between your server logic and the database.

you need to share

  • an oml
  • what exact server call are you doing
  • what is happening inside that server action that could take a long time
  • what query are you executing
  • how many records do you have in your involved entitities
  • ...
2019-01-07 16-04-16
Siya
 
MVP

@Bhuvaneshwari Reddy  I suggest to read this article once on 'Timeouts under the hood'

UserImage.jpg
Afaque Shaikh

Hi,


The error message indicates that the query execution is taking too long and exceeding the timeout period. Here are some steps to help you overcome this issue:

 

1. Increase the timeout value: you can increase the timeout value for the query/aggregate , set a higher value for "Timeout" (in seconds).


2. Optimize the query: Analyze the query and optimize it for better performance. Check for:

    - Inefficient joins or subqueries

    - Lack of indexing on columns used in WHERE or JOIN clauses

    - High data volumes being processed

3. If you are processing the high volume of data then you must use the pagination mechanism to return the limited set of data.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.