Need help on strace output


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Need help on strace output
# 1  
Old 09-15-2012
Need help on strace output

Hi All,
Good day, need some help on strace result. We're encountering oracle Database server connection slowness (using sqlplus login to db server, there have 1 or 2 secs delay) we had generated strace and provide to oracle to investigate, and they told us it look like OS problem (Our OS is Red Hat Enterprise Linux Server release 5.6 (Tikanga). Oracle support told us it is "A slow mmap function should be checked with OS support."

Base on strace, the slowness encounter "mmap" and ..read resumed NTP0"

Code:
14729      0.000101 chdir("/usr/oracle_u01/oracle/product/11.2/db_1/dbs") = 0 <0.000019>
14729      0.724313 mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b6525bd2000 <0.000034>
14729      0.000174 mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b6525bf5000 <0.000025>
14729      0.000220 mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b6525c18000 <0.000018>

:
14729      0.000054 fcntl(7, F_SETFD, FD_CLOEXEC) = 0 <0.000017>
14729      0.000052 fcntl(10, F_SETFD, FD_CLOEXEC) = 0 <0.000015>
14729      0.000062 write(10, "NTP0 14729\n", 11) = 11 <0.000025>
14726      0.000059 <... read resumed> "NTP0 14729\n", 64) = 11 <0.794318>
14729      0.000017 fcntl(7, F_SETFD, FD_CLOEXEC) = 0 <0.000048>

I have limited knowledge on strace, would like to learn from you, what does the strace mean. And where I can deep further to find out the root cause for the slowness. Thanks.

Thanks in advance.

Regards,
klng
# 2  
Old 09-17-2012
Here is a wild guess... the box is out of memory probably because oracle ate it all with shared memory segments. I would be using commands like "free", "vmstat" and "ipcs" to check that out.

I have to say that every time I investigate an oracle box running slow it always turns out to be memory shortage.
# 3  
Old 10-09-2012
Hi,
Thanks your sharing, we found the issue was caused by slowness when create oracle background process, we have change some parameter and issue was resolved.

Thanks your sharing.

Regards,
Klng
This User Gave Thanks to klng For This Post:
# 4  
Old 10-09-2012
Thank you for reporting back, klng. It's appreciated. If you could provide some details, they may prove helpful to someone in the future.

Regards,
Alister
# 5  
Old 10-21-2012
Hi Alister,

Sorry for not mention the detail, actually this is oracle parameter change, nothing change in OS level.

In Oracle DB (in Linux), we used to enable hugepages for oracle SGA. So we change oracle "PRE_PAGE_SGA" parameter to TRUE.

Base on Oracle Document:
Operating system page table entries are then prebuilt for each page of the SGA. This setting can increase the amount of time necessary for instance startup, but it is likely to decrease the amount of time necessary for Oracle to reach its full performance capacity after startup"

Default parameter is "FALSE", thus we thought to set it to true will improve the performance, but it is NOT.

Actually, the parameter is not regarding the SGA itself, but any process startup. If setting this parameter to true, whenever a process starts, it reads the entire SGA and maps it into its virtual memory space and this is meant to take some time, depending on how memory pages exist in the SGA.

So, we reset oracle PRE_PAGE_SGA parameter to "FALSE" to solve the issue.

Thanks & Best Regards
These 2 Users Gave Thanks to klng For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Strace rpm requirement for RHEL 5.9

I have requirement for strace utility rpm package for RHEL 5.9. I have made a google for last 1 hr. but did not find the required one. Can any one help me out to find out the compatible rpm package of strace for Redhat 5.9 version (I require 64 bit version). (7 Replies)
Discussion started by: Anjan Ganguly
7 Replies

2. Ubuntu

Running strace command

I want to run the strace -p xxxx -o in a script to monitor a process that hangs sometimes and requires a restart, my question is if strace is constantly running in the background will it chew up system resources and cause the system slowness? (3 Replies)
Discussion started by: wereyou
3 Replies

3. Android

Strace help

I need to run and monitor applications on Android Emulator. I am using the strace utility to monitor system calls. Everytime to start strace i need to manually start the application , get the process Id of the application and then give it to strace to start logging all the system calls. So is... (20 Replies)
Discussion started by: far001han
20 Replies

4. Shell Programming and Scripting

script to mail monitoring output if required or redirect output to log file

Below script perfectly works, giving below mail output. BUT, I want to make the script mail only if there are any D-Defined/T-Transition/B-Broken State WPARs and also to copy the output generated during monitoring to a temporary log file, which gets cleaned up every week. Need suggestions. ... (4 Replies)
Discussion started by: aix_admin_007
4 Replies

5. Shell Programming and Scripting

Awk script to run a sql and print the output to an output file

Hi All, I have around 900 Select Sql's which I would like to run in an awk script and print the output of those sql's in an txt file. Can you anyone pls let me know how do I do it and execute the awk script? Thanks. (4 Replies)
Discussion started by: adept
4 Replies

6. UNIX for Advanced & Expert Users

strace

Hi, does anyone know the equivalent command of the following in AIX : $ strace -tp 15033 Process 15033 attached - interrupt to quit 11:28:06 gettimeofday({1257766086, 104118}, NULL) = 0 11:28:06 getrusage(RUSAGE_SELF, {ru_utime={2270, 615813}, ru_stime={0, 634903}, ...}) = 0 Thank you (6 Replies)
Discussion started by: big123456
6 Replies

7. UNIX for Advanced & Expert Users

ioctl : strace

Hi All, int ioctl(int d, int request, ...); Can somebody tell me how does ioctl decides the input parameter: "request". Sometimes, its SNDCTL_TMR_TIMEBASE or TCGETS or FIONREAD...etc. What is the pattern?? I am asking this coz my strace returns this: ... (1 Reply)
Discussion started by: angad.makkar
1 Replies

8. UNIX for Advanced & Expert Users

strace

Hi Gurus, I need to trace a sqlplus session using strace. Can someone please provide me the syntax. sorry was not able to figure out by reading the man page. :-( i tried to do as below but getting the error xt33db006/u1/app/oracle/product/10.2.0/asm_1$ strace -f sqlplus '/as sysdba'... (0 Replies)
Discussion started by: p4cldba
0 Replies

9. Shell Programming and Scripting

how to make a line BLINKING in output and also how to increase font size in output

how to make a line BLINKING in output and also how to increase font size in output suppose in run a.sh script inside echo "hello world " i want that this should blink in the output and also the font size of hello world should be big .. could you please help me out in this (3 Replies)
Discussion started by: mail2sant
3 Replies

10. UNIX for Advanced & Expert Users

help running strace

OK so I wanted to know how does grep outputs to the pipe and how sort reads from it. So I run a strace over "grep blah myfile | sort" and this is what I got: open("myfile", O_RDONLY|O_LARGEFILE) = 3 fstat64(3, {st_mode=S_IFREG|0600, st_size=84, ...}) = 0 read(3, "blah blah and blah cause of... (4 Replies)
Discussion started by: klam
4 Replies
Login or Register to Ask a Question