Questions tagged [timeoutexception]

TimeoutException is thrown when the time allotted for a process or operation has expired.

TimeoutException is thrown when the time allotted for a process or operation has expired.

427 questions
94
votes
11 answers

WCF timeout exception detailed investigation

We have an application that has a WCF service (*.svc) running on IIS7 and various clients querying the service. The server is running Win 2008 Server. The clients are running either Windows 2008 Server or Windows 2003 server. I am getting the…
Jason Kealey
  • 7,988
  • 11
  • 42
  • 55
64
votes
4 answers

Changing the CommandTimeout in SQL Management studio

How can I change the CommandTimeout in SQL Management Studio?
OrElse
  • 9,709
  • 39
  • 140
  • 253
55
votes
6 answers

How to Fix Read timed out in Elasticsearch

I used Elasticsearch-1.1.0 to index tweets. The indexing process is okay. Then I upgraded the version. Now I use Elasticsearch-1.3.2, and I get this message randomly: Exception happened: Error raised when there was an exception while talking to…
43
votes
4 answers

Simple timeout in java

Can anyone guide me on how I can use a simple timeout in java? Basically in my project I'm executing a statement br.readLine(), which is reading a response from a modem. But sometimes the modem isn't responding. For that purpose I want to add a…
Yuvraj
  • 431
  • 1
  • 4
  • 4
18
votes
1 answer

How to gracefully timeout with asyncio

So before adding try/catch block my event loop closed gracefully when process ran for less than 5 minutes, but after adding try/catch block I started getting this error when the process exceeded 5 minutes async def run_check(shell_command): p =…
18
votes
4 answers

Seeking WCF Duplex "TwoWay" Subscribe+Callback Example

Renewing the bounty AGAIN because I really need to know how to get this to work, or a definitive answer about why it won't. I've added an alternative explanation of the problem here. Having a hell of a time getting a two-way (IsOneWay = false) WCF…
Jason Kleban
  • 20,024
  • 18
  • 75
  • 125
17
votes
3 answers

MySql.Data.MySqlClient.MySqlException: Timeout expired

In recent times, a particular page in my web app throws the Exception Details: MySql.Data.MySqlClient.MySqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. Though…
Gopi
  • 5,656
  • 22
  • 80
  • 146
16
votes
1 answer

Rails app hosted on heroku: Error R12 (Exit timeout)

I have a Rails 3.1.4 app hosted on heroku. I have added the logentries add-on. I didn't touch the default configuration for alerts, and I now receive every few hours an alert: 'Exit timeout': Exit timeout: Heroku/myappname 2012-03-23…
Guillaume
  • 21,685
  • 6
  • 63
  • 95
12
votes
4 answers

MongoDB C# 2.0 TimeoutException

We've recently upgraded our web application to MongoDB C# Driver 2.0 and deployed to production. Below a certain load, the application runs fine. Once the load on the production server exceeds a certain limit, the CPU of the application instantly…
Serhat Ozgel
  • 23,496
  • 29
  • 102
  • 138
12
votes
0 answers

Android Mediaplayer strange TimeoutException exception

I'm dealing with an strange crash reported by the app coming from the MediaPlayer. It seems that the system tries to finalize the MediaPlayer and it returns a TimeOut exception. java.util.concurrent.TimeoutException:…
12
votes
4 answers

MediaPlayer TimeoutException

I have made an Android app and now it's on Google Play. But now someone reported a Crash, and the stacktrace said the following: java.util.concurrent.TimeoutException: android.media.MediaPlayer.finalize() timed out after 10 seconds at…
jessetvogel
  • 141
  • 1
  • 4
11
votes
2 answers

Sending email using Gmail gives a time out error

We are testing some code to send email messages using Gmail from a form, but get a time out error. Can you tell us what is missing from this code to get the email message sent? Try Dim SmtpServer As New SmtpClient() Dim mail As…
Emad-ud-deen
  • 4,734
  • 21
  • 87
  • 152
9
votes
3 answers

How to prevent raise asyncio.TimeoutError and continue the loop

I'm using aiohttp with limited_as_completed method to speed up scrapping (around 100 million static website pages). However, the code stops after several minutes, and returns the TimeoutError. I tried several things, but still could not prevent the…
9
votes
12 answers

GlassFish server fails to launch from Eclipse, it gets stuck at 69%

I am trying to test my web application in GlassFish 4 from eclipse. When I am starting GlassFish 4 with a file (startserv.bat), it works fine, but when I am trying to run it from Eclipse, it starts loading, but then the startup process gets stuck at…
Victor2748
  • 4,149
  • 13
  • 52
  • 89
8
votes
4 answers

Guidelines to handle Timeout exception for Kafka Producer?

I often get Timeout exceptions due to various reasons in my Kafka producer. I am using all the default values for producer config currently. I have seen following Timeout exceptions: org.apache.kafka.common.errors.TimeoutException: Failed to…
xabhi
  • 798
  • 1
  • 13
  • 30
1
2 3
28 29