python script stop execution not dead after hours
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am running an infinite python script in loops and catching all Exception so that script will not stop an execution.
the self.pupdate() function is fetching data from sql server and show it on a terminal, if by some reason it may be possible that it will not get data or something but it won't be stop. here is my code.
class live(Thread):
def __init__(self):
Thread.__init__(self)
def run(self):
while True:
try:
self.collect()
except Exception as Conerr:
print("run :",Conerr)
pass
def collect(self):
try:
while True:
self.rep()
pass
except Exception as mai:
print("Collect:", mai)
def rep(self):
try:
self.pick_update()
except Exception as F:
print("REP:",F)
if __name__ == '__main__':
fun = live()
fun.start()
the script is not going to dead it stop executing and stuck somewhere
edit 1:
to overcome this i tried threading.Timer
as following code ,
def runs():
threading.Timer(30.0, runs).start()
try:
for i in range(1,10):
pick_update()
except Exception as yt:
print("datafetch: ", yt)
but an issue with this is that if the whole cycle not complete it will start new thread and previous one is also running, is that first thread stop when it's cycle is complete? or both the thread will continue and start new every time?
python python-3.x python-multithreading
add a comment |
I am running an infinite python script in loops and catching all Exception so that script will not stop an execution.
the self.pupdate() function is fetching data from sql server and show it on a terminal, if by some reason it may be possible that it will not get data or something but it won't be stop. here is my code.
class live(Thread):
def __init__(self):
Thread.__init__(self)
def run(self):
while True:
try:
self.collect()
except Exception as Conerr:
print("run :",Conerr)
pass
def collect(self):
try:
while True:
self.rep()
pass
except Exception as mai:
print("Collect:", mai)
def rep(self):
try:
self.pick_update()
except Exception as F:
print("REP:",F)
if __name__ == '__main__':
fun = live()
fun.start()
the script is not going to dead it stop executing and stuck somewhere
edit 1:
to overcome this i tried threading.Timer
as following code ,
def runs():
threading.Timer(30.0, runs).start()
try:
for i in range(1,10):
pick_update()
except Exception as yt:
print("datafetch: ", yt)
but an issue with this is that if the whole cycle not complete it will start new thread and previous one is also running, is that first thread stop when it's cycle is complete? or both the thread will continue and start new every time?
python python-3.x python-multithreading
So what's the question?
– arudzinska
Nov 29 '18 at 8:58
the script stop by some reason, I want to find that and solve it so that the execution will not going to stop anyhow.
– Nilanj
Nov 29 '18 at 9:24
Is the pick_update using an external library that can crash by itself killing the process? highly likely if it is a DLL implementation then the crash wont propagate upto the python exception handler. Also, is the thread a daemon thread in which case you might need a fun.join().
– Luv
Nov 29 '18 at 9:51
no the thread is not deamon thread, the external libraries i am using is the only pymysql which is collecting data from sql server, i checked pymysql is not crashing, i tried debugging and printing the errors it is not giving any error and just stop. no errors
– Nilanj
Nov 30 '18 at 5:52
add a comment |
I am running an infinite python script in loops and catching all Exception so that script will not stop an execution.
the self.pupdate() function is fetching data from sql server and show it on a terminal, if by some reason it may be possible that it will not get data or something but it won't be stop. here is my code.
class live(Thread):
def __init__(self):
Thread.__init__(self)
def run(self):
while True:
try:
self.collect()
except Exception as Conerr:
print("run :",Conerr)
pass
def collect(self):
try:
while True:
self.rep()
pass
except Exception as mai:
print("Collect:", mai)
def rep(self):
try:
self.pick_update()
except Exception as F:
print("REP:",F)
if __name__ == '__main__':
fun = live()
fun.start()
the script is not going to dead it stop executing and stuck somewhere
edit 1:
to overcome this i tried threading.Timer
as following code ,
def runs():
threading.Timer(30.0, runs).start()
try:
for i in range(1,10):
pick_update()
except Exception as yt:
print("datafetch: ", yt)
but an issue with this is that if the whole cycle not complete it will start new thread and previous one is also running, is that first thread stop when it's cycle is complete? or both the thread will continue and start new every time?
python python-3.x python-multithreading
I am running an infinite python script in loops and catching all Exception so that script will not stop an execution.
the self.pupdate() function is fetching data from sql server and show it on a terminal, if by some reason it may be possible that it will not get data or something but it won't be stop. here is my code.
class live(Thread):
def __init__(self):
Thread.__init__(self)
def run(self):
while True:
try:
self.collect()
except Exception as Conerr:
print("run :",Conerr)
pass
def collect(self):
try:
while True:
self.rep()
pass
except Exception as mai:
print("Collect:", mai)
def rep(self):
try:
self.pick_update()
except Exception as F:
print("REP:",F)
if __name__ == '__main__':
fun = live()
fun.start()
the script is not going to dead it stop executing and stuck somewhere
edit 1:
to overcome this i tried threading.Timer
as following code ,
def runs():
threading.Timer(30.0, runs).start()
try:
for i in range(1,10):
pick_update()
except Exception as yt:
print("datafetch: ", yt)
but an issue with this is that if the whole cycle not complete it will start new thread and previous one is also running, is that first thread stop when it's cycle is complete? or both the thread will continue and start new every time?
python python-3.x python-multithreading
python python-3.x python-multithreading
edited Nov 30 '18 at 6:33
Nilanj
asked Nov 29 '18 at 5:30
NilanjNilanj
4010
4010
So what's the question?
– arudzinska
Nov 29 '18 at 8:58
the script stop by some reason, I want to find that and solve it so that the execution will not going to stop anyhow.
– Nilanj
Nov 29 '18 at 9:24
Is the pick_update using an external library that can crash by itself killing the process? highly likely if it is a DLL implementation then the crash wont propagate upto the python exception handler. Also, is the thread a daemon thread in which case you might need a fun.join().
– Luv
Nov 29 '18 at 9:51
no the thread is not deamon thread, the external libraries i am using is the only pymysql which is collecting data from sql server, i checked pymysql is not crashing, i tried debugging and printing the errors it is not giving any error and just stop. no errors
– Nilanj
Nov 30 '18 at 5:52
add a comment |
So what's the question?
– arudzinska
Nov 29 '18 at 8:58
the script stop by some reason, I want to find that and solve it so that the execution will not going to stop anyhow.
– Nilanj
Nov 29 '18 at 9:24
Is the pick_update using an external library that can crash by itself killing the process? highly likely if it is a DLL implementation then the crash wont propagate upto the python exception handler. Also, is the thread a daemon thread in which case you might need a fun.join().
– Luv
Nov 29 '18 at 9:51
no the thread is not deamon thread, the external libraries i am using is the only pymysql which is collecting data from sql server, i checked pymysql is not crashing, i tried debugging and printing the errors it is not giving any error and just stop. no errors
– Nilanj
Nov 30 '18 at 5:52
So what's the question?
– arudzinska
Nov 29 '18 at 8:58
So what's the question?
– arudzinska
Nov 29 '18 at 8:58
the script stop by some reason, I want to find that and solve it so that the execution will not going to stop anyhow.
– Nilanj
Nov 29 '18 at 9:24
the script stop by some reason, I want to find that and solve it so that the execution will not going to stop anyhow.
– Nilanj
Nov 29 '18 at 9:24
Is the pick_update using an external library that can crash by itself killing the process? highly likely if it is a DLL implementation then the crash wont propagate upto the python exception handler. Also, is the thread a daemon thread in which case you might need a fun.join().
– Luv
Nov 29 '18 at 9:51
Is the pick_update using an external library that can crash by itself killing the process? highly likely if it is a DLL implementation then the crash wont propagate upto the python exception handler. Also, is the thread a daemon thread in which case you might need a fun.join().
– Luv
Nov 29 '18 at 9:51
no the thread is not deamon thread, the external libraries i am using is the only pymysql which is collecting data from sql server, i checked pymysql is not crashing, i tried debugging and printing the errors it is not giving any error and just stop. no errors
– Nilanj
Nov 30 '18 at 5:52
no the thread is not deamon thread, the external libraries i am using is the only pymysql which is collecting data from sql server, i checked pymysql is not crashing, i tried debugging and printing the errors it is not giving any error and just stop. no errors
– Nilanj
Nov 30 '18 at 5:52
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53532435%2fpython-script-stop-execution-not-dead-after-hours%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53532435%2fpython-script-stop-execution-not-dead-after-hours%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
So what's the question?
– arudzinska
Nov 29 '18 at 8:58
the script stop by some reason, I want to find that and solve it so that the execution will not going to stop anyhow.
– Nilanj
Nov 29 '18 at 9:24
Is the pick_update using an external library that can crash by itself killing the process? highly likely if it is a DLL implementation then the crash wont propagate upto the python exception handler. Also, is the thread a daemon thread in which case you might need a fun.join().
– Luv
Nov 29 '18 at 9:51
no the thread is not deamon thread, the external libraries i am using is the only pymysql which is collecting data from sql server, i checked pymysql is not crashing, i tried debugging and printing the errors it is not giving any error and just stop. no errors
– Nilanj
Nov 30 '18 at 5:52