LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-12-2018, 10:52 PM   #1
catiewong
Member
 
Registered: Aug 2018
Posts: 190

Rep: Reputation: Disabled
Is this process normal


#top

Code:
"
30817 tst_user    20   0 2635604 640684   6120 S  52.1  3.9  17071:20 obid
I just use top to check the system status and have one process is using rather high resource , this process is created by development team , one thing I am wondering is that the time it have run is "13031:20" .

I don't know what the job is actually processing as I am not come from development team , I seldom found any process are running over "1000:00" in my system .

In general speaking , the process running in such long time , is that a alnormal process ( in usually ) , we should control the system not to allow such kind of process is running ?

Last edited by catiewong; 09-12-2018 at 11:06 PM.
 
Old 09-13-2018, 12:33 AM   #2
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,359

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
Well, this https://it.toolbox.com/blogs/william...sid-etc-100705 implies its part of an SQL db server, but really you should just ask your dev team - it could be anything at all...
 
Old 09-13-2018, 12:45 AM   #3
catiewong
Member
 
Registered: Aug 2018
Posts: 190

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by chrism01 View Post
Well, this https://it.toolbox.com/blogs/william...sid-etc-100705 implies its part of an SQL db server, but really you should just ask your dev team - it could be anything at all...
thanks reply,

Please ignore the process name.

Of course I will ask them if I sure there is any alnormal , but I am not know at this time

I just wonder if it run for such long time , is there any inproper way to run the process , or waste of CPU time .
 
Old 09-13-2018, 12:49 AM   #4
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,359

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
Without knowing what it is, there's no answer to your qn for that specific process.

In general, of course there are some processes that should run forever eg DB - you wouldn't want it restarting all the time, now would you ... ?
 
Old 09-13-2018, 01:07 AM   #5
catiewong
Member
 
Registered: Aug 2018
Posts: 190

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by chrism01 View Post
Without knowing what it is, there's no answer to your qn for that specific process.

In general, of course there are some processes that should run forever eg DB - you wouldn't want it restarting all the time, now would you ... ?
yes , the DB is non-stop running , but I didn't find the db process use over "10000:00 " CPU time

I found another process ( it is a monitoring tools ) is using "10000:00 " CPU time , in such case , is it nornal ?
 
Old 09-13-2018, 01:31 AM   #6
JJJCR
Senior Member
 
Registered: Apr 2010
Posts: 2,150

Rep: Reputation: 449Reputation: 449Reputation: 449Reputation: 449Reputation: 449
It could be anything as others suggested, it could be also a bug on the software or program they are developing (memory leak) or just plain lazy programmers that does not consider hardware resources when creating programs. (no optimization)
 
Old 09-13-2018, 01:49 AM   #7
catiewong
Member
 
Registered: Aug 2018
Posts: 190

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by JJJCR View Post
It could be anything as others suggested, it could be also a bug on the software or program they are developing (memory leak) or just plain lazy programmers that does not consider hardware resources when creating programs. (no optimization)
so you mean a process should not have "10000:00" CPU time using ? I have another monitoring tools also have such high CPU time , is it also should not have such high CPU time ?

Last edited by catiewong; 09-13-2018 at 02:01 AM.
 
Old 09-13-2018, 03:40 AM   #8
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,849

Rep: Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309
without knowing anything about that system hard to say anything.
10000:00 can be acceptable, but probably not.
 
Old 09-13-2018, 07:59 AM   #9
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,882
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
You have asked if this is bad versus not. We, your fellow LQ members, can't give you an absolute answer.

How I'd approach this is to take as much data as possible and determine if this process "is", or "can be" disruptive to the system. And then discuss this with the development team, or the correct persons in your organization.

The top report indicates that it is using 52.1% of the CPU, 3.9% of memory, and the PID is a very high number.

You have given the impression that this is a program which is under development and that there is a development team with which you can speak to about these observations. Suggest you do exactly that, speak to your development team about these observations.

Indicators like this can mean "something", "nothing", or they can mean "possible". Perhaps this is a known detail about this code. Perhaps this is already deemed to be a code defect which they are working on, or they have in their queue. Perhaps the state of their code is that it is preliminary and not yet functionally complete.
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
difference between init.rc process and normal process manohar Programming 1 03-31-2011 11:17 PM
How to run daemon process being a normal user [not root user]. narendra1310 Linux - Software 1 10-26-2009 09:48 AM
Boot with 'acpi=no'-Ubuntu shows one core,normal boot-kacpid process is eating 70%CPU WebEyeX Ubuntu 5 05-18-2008 06:48 AM
How to install developing tools after normal installation process guarriman Fedora 1 07-19-2007 05:53 AM
Disabling process listing from normal users ZeiP Linux - Security 8 01-05-2004 10:16 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:20 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration