I'm calling a function in Python which I know may stall and force me to restart the script. How do I call the function or what do I wrap it in so that if it takes longer than 5 seconds the script cancels it and does something else.
Thanks
|
I'm calling a function in Python which I know may stall and force me to restart the script. How do I call the function or what do I wrap it in so that if it takes longer than 5 seconds the script cancels it and does something else. Thanks |
|||||||
|
|
I'm making some local xmlrpc calls with a timeout using the following code, borrowed from an ActiveState Cookbook recipe:
Invoking it with a 5 second timeout:
|
|||||||||||||||||
|
|
You may use the signal package if you are running on UNIX:
10 seconds after the call This module doesn't play well with threads (but then, who does?) |
|||||||||||||||||||
|
|
If this is some kind of network or file operation, you might also consider using nonblocking IO. This can be a better option if you're doing a lot of these types of operations at once (otherwise, you can bog your system down fairly quickly with a lot of threads). Here's a socket howto that covers nonblocking IO (in the context of network operations). The downside? Well, it can be a pain to program. Sometimes even moreso than just using a thread. |
|||
|
|
|
Maybe try to call it from other thread, which You could easily terminate. |
|||||
|
|
What yabcok said - start a new thread to call the function. In the original thread, sleep for 5 seconds, then terminate the function thread if it hasn't already ended. Maybe there is a better approach to your problem? Why might the function take longer than 5 seconds? |
|||
|
|
|
You can use Code
|
|||
|
|
|
Here is a slight improvement to the given thread-based solution. The code below supports exceptions:
Invoking it with a 5 second timeout:
|
|||
|
|
I have a different proposal which is a pure function (with the same API as the threading suggestion) and seems to work fine (based on suggestions on this thread)
|
|||
|
|
|
Jeff version is great that I am using it in a production. However, I have noticed that exception raised inside the function (now an independent thread) are not communicated back to the caller. So here is my workaround it.
This will raise the exception providing a full traceback from the line inside the thread that originated the error. |
|||
|
|
I would use the time() method from time to compare the time while you're running your function, but clearly this only works if you'd be hitting an infinite loop, not a function hanging.
But I'm just a small fry. |
|||
|
|