AIX 6.1 Memory Performance issues


 
Thread Tools Search this Thread
Operating Systems AIX AIX 6.1 Memory Performance issues
# 1  
Old 07-02-2013
AIX 6.1 Memory Performance issues

Good Day Everyone,
Just wonder anyone has encounter AIX 6.1 Memory Performance issues ? What I have in my current scenario is we have 3 datastage servers (Segregate server and EE jobs - for those who know Datastage achitect) and 2 db servers(running HA to load balance 4 nodes partitions for each server). From our observation, after ETL jobs run for quite sometime (about a week), the performance of jobs start degrading. And we found out that the paging start occurring. After that we decided to restart all 3 servers after the whole day batch job finished. After restart, for the next 5-7 days the performance is within our expectation, but after that the paging start happen again.
Anyone has shine me bright idea how to resolve this or anyone encounter this before ? your input is very much appreciated.

Thank you Everyone!
# 2  
Old 07-02-2013
Using which tool did you see the paging (just to make sure)?
Do you have a long term monitoring set up like with nmon so that you can see when the Paging Out occurs?
You could write a short script and put it to the crontab or background on those 3 machines with the paging, so that you can note down every 10 minutes the size of the processes. Maybe you have a memory leak that uses up RAM until things have to be swapped out, most probably reducing the cached files first.
# 3  
Old 07-02-2013
Hi zaxxon,
Yes I have nmon capture running all the time (daily, weekly and monthly). From the nmon I can find the Paging happen.

Thanks for the reply.

Best Regards,
ckwan
# 4  
Old 07-02-2013
You could put something like this in a cronjob:
Code:
$ printf "DATE: %s\n" "$(date)"; svmon -P| awk '/^[[:space:]]*Pid/ {getline; print $1, $2, $5} END{print "-----------------"}'
DATE: Tue Jul  2 11:15:27 CEST 2013
9568460 sshd 0
10747986 ksh 0
6684732 awk 0
10485876 svmon 0
-----------------

1st is the PID, 2nd the process name and 3rd pages in paging space.
Redirect >> it to some logfile and have it run every 10 minutes, just for monitoring.
As root you will see many more processes - so you can just filter those of interesst for you.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

Baiduspider and Forum Performance Issues

For years we blocked Baiduspider due to the fact their bots do not obey the robots.txt directive and can really hurt site performance when they unleash 100 bots on the site each pulling pages many times per second. Last year, I unblocked Baiduspider's IP addresses, and now the problem is back. ... (1 Reply)
Discussion started by: Neo
1 Replies

2. AIX

AIX Memory and Performance Doubt

Hi All, I have 5 Servers ( 3 DataStages Server and 2 Database Servers running HACMP and DPF). My question is 1 of the Main Core DataStage Server has few unsolved issues that I will post the question as following 1. Why most of time the File Cache in the memory seems constantly... (3 Replies)
Discussion started by: ckwan
3 Replies

3. Solaris

Getcwd performance issues

Hello everyone, recently we have been experiencing performance issues with chmod. We managed to narrow it down to getcwd. The following folder exists: /Folder1/subfol1/subfol2/subfol3 cd /Folder1/subfol1/subfol2/subfol3 truss -D pwd 2>&1 | grep getcwd 0.0001... (4 Replies)
Discussion started by: KotekBury
4 Replies

4. Solaris

zfs send receive performance issues

I 'm trying to clone a zfs file system pool/u01 to a new file system called newpool/u01 using following commands zfs list zfs snapshot pool/u01@new zfs send pool/u01@new | zfs -F receive newpool/u01 Its a 100G file system snapshot and copied to same server on different pool and... (9 Replies)
Discussion started by: fugitive
9 Replies

5. AIX

Performance issues for LPAR with GPFS 3.4

Hi, We have GPFS 3.4 Installed on two AIX 6.1 Nodes. We have 3 GPFS Mount points: /abc01 4TB (Comprises of 14 x 300GB disks from XIV SAN) /abc02 4TB (Comprises of 14 x 300GB disks from XIV SAN) /abc03 1TB ((Comprises of Multiple 300GB disks from XIV SAN) Now these 40... (1 Reply)
Discussion started by: aixromeo
1 Replies

6. Solaris

Solaris 11 Express NAT performance issues

Hi all, I decided to replace my linux router/firewall with Solaris 11 express. This is a pppoe connection directly to my server...no router boxes. I got everything setup, but the performance is terrible on the NAT....really slow. A web page that loads on the server instantly will take... (3 Replies)
Discussion started by: vectox
3 Replies

7. Programming

performance issues of calling a function in if condition

Hi, I have written a program in C and have to test the return value of the functions. So the normal way of doin this wud b int rc rc=myfunction(input); if(rc=TRUE){ } else{ } But instead of doing this I have called the function in the if() condition. Does this have any... (2 Replies)
Discussion started by: sidmania
2 Replies

8. UNIX for Dummies Questions & Answers

Awk Performance Issues

Hi All, I'm facing an issue in my awk script. The script is processing a large text file having the details of a number of persons, each person's details being written from 100 to 250 tags as given below: 100 START| 101klklk| ... 245 opr| 246 55| 250 END| 100 START| ... 245 pp| 246... (4 Replies)
Discussion started by: pgp_acc1
4 Replies

9. Solaris

raidctl performance issues

using the internal 2 drives mirror was created using raidctl on 100's of our servers . sometime when one drive fails we dont face any issue & we replace the drive with out any problem . but sometimes when one drive fails , system becomes unresponsive and doesnot allow us to login , the only way to... (1 Reply)
Discussion started by: skamal4u
1 Replies

10. AIX

AIX-specific memory issues?

Hi, Does anyone here write cross-platform applications to be run on different Unix variants? For some reason, an application I'm working with, when being run on machines with similar specifications, I run into "cannot allocate" errors (St9bad_alloc) on AIX but not on other platforms. Is it a... (8 Replies)
Discussion started by: wolfier
8 Replies
Login or Register to Ask a Question