Sponsored Content
Top Forums Shell Programming and Scripting Killing the process if running for long time in script Post 302974151 by dineshaila on Thursday 26th of May 2016 02:01:01 AM
Old 05-26-2016
Killing the process if running for long time in script

I am running a script which will read the data from fail line by line and call the Java program by providing the arguments from the each line.

The Java code is working fast for few records and for some records its getting hanged not providing response for morethan one hour.

Currently am killing it manually, so that the script will proceed with next line.

How can we automate it , we don't get response the process id should be killed.
and the script should proceed with the other data.

Code:
while read line
do
 <java program> $line 

st=`grep -c "{\"status\":false}" <JAR_LOG>
if [ $st -gt 0 ]; then
echo "${USRNAME}" >> $FAILURE_IDS_FILE
else
echo "${USRNAME}" >> $SUCCESS_IDS_FILE
fi
done

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Killing a process that takes too long

Hello, I have a C program that takes anywhere from 5 to 100 arguments and I'd like to run it from a script that makes sure it doesnt take too long to execute. If the C program takes more than 5 seconds to execute, i would like the shell script to kill it and return a short message to the user. ... (3 Replies)
Discussion started by: WeezelDs
3 Replies

2. UNIX for Advanced & Expert Users

how to check how long the process has been running.

I have a requirement to check how long a process is running on unix system.If i use ps -ef i am getting the following message guest 2453638 1998920 0 16:16:05 - 0:00 dsapi_slave 9 8 0 but this is showing only time not the date.Can any one please advice me any script to find out how... (2 Replies)
Discussion started by: ukatru
2 Replies

3. UNIX for Advanced & Expert Users

How to check since when (for how long) a particular process is running ?

How do I check if a particular process is running from a certain date and time ? (2 Replies)
Discussion started by: hpuxlxboy
2 Replies

4. UNIX for Dummies Questions & Answers

killing 300 process at the same time

Here's the scenario i have this servd process i want to kill, but i want to kill it one time. bash-2.03# ps -ef | grep servd | grep User123 | wc -l 300 bash-2.03# ps -ef | grep servd | grep User123 | more User123 2007 2006 0 03:17:09 pts/12 0:00 /usr/bin/su - User123 -c ssh... (2 Replies)
Discussion started by: hrist
2 Replies

5. Shell Programming and Scripting

Monitor a long running process

Gurus, I am writing a shell script that will be used to automate cold backup of an Oracle Database. The database size is around 300G and will take around 5-6 hours to copy. I have finished the script till the copy of the datafiles. Now, I am stuck at the point where I need to monitor the... (4 Replies)
Discussion started by: sunpraveen
4 Replies

6. UNIX Desktop Questions & Answers

Killing a process if it is not using any cpu time

Hi i am a newbie thanks in advance i have a process which keeps on running but doesn't use any CPU time and doesn't do the functionality which it is suppose to do . If i kill the process and start the process again then the process kicks in and starts using CPU time and continues to do its... (3 Replies)
Discussion started by: nick1982
3 Replies

7. UNIX for Dummies Questions & Answers

Killing a process which is running in different server

Consider two servers tst01 and tst02. i need to log in tst01 and check for the processes which run in tst02. then based on pid , i need to kill that process. is it possible to achieve? I am able to connect to tst02 using ftp. But the problem is, if i use ps it says invalid command. ... (3 Replies)
Discussion started by: pandeesh
3 Replies

8. UNIX Desktop Questions & Answers

Automatically killing a process if it doesn't use any CPU time

Hi, I'm new to Linux. I have a windows server that run many processes on it. In some cases the processes doesn't exit properly or just stop working and the process needs to be killed. I was wondering how i can automatically (couple of times a day) check which process doesn't use any CPU... (3 Replies)
Discussion started by: ramikom
3 Replies

9. Shell Programming and Scripting

Kill long running script, if it crosses the threshold time

Hi, I need a script to kill the process if it running for long time. Inputs for the scripts: 1.test.sh (will be running fron cron scheduler) 2.1 hr (ie threshold_time - if the test.sh is running for more than 1 hr test.sh has to kill) Thanks, Divya (1 Reply)
Discussion started by: Divya Nochiyil
1 Replies

10. Shell Programming and Scripting

Killing a bash process and running the second part of script

I want to run a script that calls remote ssh and if it gets hung, I want to be able to kill that part of the script and run another command in the script for example I have a statement like this: if ]; then export tapes=$(for tape in $(su - nacct -c 'ssh remote1 "cat... (1 Reply)
Discussion started by: newbie2010
1 Replies
JYTHON(1)						      General Commands Manual							 JYTHON(1)

NAME
jython - Python seamlessly integrated with Java SYNOPSIS
jython [ -i ] [ -S ] [ -v ] [ -Dproperty=value ... ] [ -Wargument ] [ -Ecodec ] [ -Qargument ] [ -jar jar | -c cmd | file | - ] [ script-args ] jython [ --help | --version ] DESCRIPTION
Jython is an implementation of the high-level, dynamic, object-oriented language Python seamlessly integrated with the Java platform. The predecessor to Jython, JPython, is certified as 100% Pure Java. Jython is complementary to Java and is especially suited for the following tasks: Embedded scripting: Java programmers can add the Jython libraries to their system to allow end users to write simple or complicated scripts that add functionality to the application. Interactive experimentation: Jython provides an interactive interpreter that can be used to interact with Java packages or with running Java applications. This allows programmers to experiment with and debug any Java system using Jython. Rapid application development: Python programs are typically 2-10X shorter than the equivalent Java program. This translates directly to increased programmer pro- ductivity. The seamless interaction between Python and Java allows developers to freely mix the two languages both during develop- ment and in shipping products. To make a jython script executable on your system you can add the following line to the top of the file: #!/usr/bin/env jython You will also need to add execute permissions to the script using chmod(1). Note that #!/usr/bin/jython will not work; you must use #!/usr/bin/env jython. This is because /usr/bin/jython is a script itself, not a compiled binary. OPTIONS
A summary of options is included below. -i Continue running Jython interactively after running the given script, and force prompts even if standard input doesn't appear to be a terminal. -S Don't imply import site on initialisation. -v Trace import statements on error output. -Dproperty=value Set the Jython property property to value; see jython.conf(5) for details of available properties. -Wargument Warning control. The full form of argument is action:message:category:module:line. Trailing empty fields may be omitted. Multiple -W options may be given. See documentation of the warnings module for details. -Ecodec Set the encoding used to read module source files from disk. -Qargument Division control. See PEP 239 for details. Valid arguments are old, new, warn and warnall. -jar jar The program to run is read from the file __run__.py in the specified jar archive. -c cmd The program to run is passed as the cmd string. This option terminates the options list. file The program to run is the script file. - The program to run is read from standard input (default behaviour). Interactive mode is used if running on a tty. This flag allows you to pipe a file into Jython and have it be treated correctly. script-args Command-line arguments to pass to the Jython script in sys.argv[1:]. --help Print a usage message and exit. --version Print the Jython version number and exit. ENVIRONMENT VARIABLES
JAVA (default: /usr/bin/java) The Java interpreter to use when running Jython. JAVA_OPTIONS (default: empty) Options to pass to the Java interpreter when running Jython. SEE ALSO
jythonc(1), jython.conf(5). If the Debian package jython-doc is installed, full documentation from the Jython authors will be available in /usr/share/doc/jython- doc/html/. AUTHOR
This manual page was prepared by Ben Burton <bab@debian.org> for the Debian GNU/Linux system (but may be used by others). It is based upon the official Jython documentation. July 7, 2001 JYTHON(1)
All times are GMT -4. The time now is 08:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy