epugh commented on issue #3358: [ZEPPELIN-2444] Better error message on shell timeout being reached. URL: https://github.com/apache/zeppelin/pull/3358#issuecomment-491224213 It may be… I didn’t realize that it was until months later when I google around, and found the issue ZEPPELIN-2444! When I got the SIGTERM error, I though it was my shell command (in my case a python pip install) had died due to something random, I didn’t think “oh, it took too long and hit a time out”…. > On May 10, 2019, at 2:35 AM, Felix Cheung <[email protected]> wrote: > > @felixcheung commented on this pull request. > > In shell/src/main/java/org/apache/zeppelin/shell/ShellInterpreter.java <https://github.com/apache/zeppelin/pull/3358#discussion_r282761598>: > > > @@ -132,7 +132,7 @@ public InterpreterResult internalInterpret(String cmd, > String message = outStream.toString(); > if (exitValue == 143) { > code = Code.INCOMPLETE; > - message += "Paragraph received a SIGTERM\n"; > + message += "Timeout of " + getProperty(TIMEOUT_PROPERTY) + " ms to run reached.\n"; > hmm, I'm not sure these are the same? SIGTERM is not a timeout? > > — > You are receiving this because you authored the thread. > Reply to this email directly, view it on GitHub <https://github.com/apache/zeppelin/pull/3358#pullrequestreview-235944633>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AAAFO62ZQIZ24L4EOXZQ5KTPUUJUXANCNFSM4HL42F5A>. > _______________________ Eric Pugh | Founder & CEO | OpenSource Connections, LLC | 434.466.1467 | http://www.opensourceconnections.com <http://www.opensourceconnections.com/> | My Free/Busy <http://tinyurl.com/eric-cal> Co-Author: Apache Solr Enterprise Search Server, 3rd Ed <https://www.packtpub.com/big-data-and-business-intelligence/apache-solr-enterprise-search-server-third-edition-raw> This e-mail and all contents, including attachments, is considered to be Company Confidential unless explicitly stated otherwise, regardless of whether attachments are marked as such.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
