CIO/DIO and JFS2 read ahead


 
Thread Tools Search this Thread
Operating Systems AIX CIO/DIO and JFS2 read ahead
# 8  
Old 11-14-2008
pstat -a shows, like for example ps aux, only the number of current started aioservers, but not if they are busy or not. With nmon shift+a you see how many are really currently busy and this is on system with an app using AIO, going up and down. Often the maxreqs is forgotten to be configured somewhat large too so the app doesn't get errors regarding to hit the max of queued AIO requests (some "error 5" in Oracle for example).

Nevertheless, we will have to check out if the OP needs AIO at all, which he could and should find out. Maybe he uses it already, no idea. Maybe he offers us some more info to help him.
In our environments I used CIO as a kind of last ressort of tuning, when everything else with AIO and ioo tuning didn't help anymore.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Two days ahead

Hi, I have a code that will show one day ahead, how to make it show two days ahead p-dev1-db-tst:/$ day=$(TZ=IST-24 date +%d) p-dev1-db-tst:/$ echo $day 17 p-dev1-db-tst:/$ Regards, Adam (5 Replies)
Discussion started by: answer
5 Replies

2. AIX

AIX JFS2 content

Hello! I have a LPAR with 51GB RAM topas shows 21% of memory for client pages (~11Gb) svmon -G show 2906772 client pages in use (~11Gb) but then i try to investigate per process client memory usage svmon -P -O filtertype=client and summarize inuse column, i get only 347880 pages... (1 Reply)
Discussion started by: sys
1 Replies

3. AIX

Slow NFS when cio/dio enabled

Hi, I have a bit of a NFS problem on AiX 6.1 : When I set the mount to cio and dio - needed for a database app - Everything slows down. The following is copying 700mb, top one is a normal mount bottom one is a mount with the cio/dio option enabled : # ./a.sh Wed Jan 11 11:41:24 GMT 2012... (5 Replies)
Discussion started by: AJCG1976
5 Replies

4. Red Hat

How to enable AIO and DIO on rhel5 64bit?

Hi Friends, Please help me to understand, how to enable async disk IO and Direct disk IO in ext3 filesystem on rhel5. Regards, Arumon (0 Replies)
Discussion started by: arumon
0 Replies

5. AIX

Jfs and jfs2

Hi all, Can anyone define the difference between jfs and jfs2 filesystem as well as usage of jfs log files.... Thanks.... (7 Replies)
Discussion started by: sumathi.k
7 Replies

6. Shell Programming and Scripting

PERL look ahead and behind ...

I would like to search a router config file for "ip address $ip", once found, I want to grab the line just before that contains "interface $interfacetype" basically saying, 10.3.127.9 is assigned to "Loopback1" given the below as an example. interface Loopback1 ip address 10.3.127.9... (1 Reply)
Discussion started by: popeye
1 Replies

7. AIX

JFS and JFS2

hi all, can sumbody give me a link which gives the basic layout of JFS, JFS2 and the veritas file system. and i also want to know about the data structures used in this filsystem thanx in advance (0 Replies)
Discussion started by: anwerreyaz
0 Replies

8. HP-UX

Read-ahead in HP-UX

One cool thing about unix is that it predicts disk blocks that you may need and tries to have them in core before you need them. Over the years, various unix vendors tried various algorithms to improve performance. HP has patented their latest algorithm... Multi-threaded Read Ahead Prediction... (0 Replies)
Discussion started by: Perderabo
0 Replies
Login or Register to Ask a Question
mkfs.jfs(8)						     JFS file system creation						       mkfs.jfs(8)

NAME
mkfs.jfs - create a JFS formatted partition SYNOPSIS
mkfs.jfs [options] device DESCRIPTION
mkfs.jfs is used to create (format) a JFS partition. mkfs.jfs must be run as root. device is the special file name corresponding to the actual device (e.g. /dev/hdb1) on which a JFS file system will be created. The default block size is 4096. WARNING
mkfs.jfs will destroy all data on the specified device! OPTIONS
-c Check the device for bad blocks before building the file system. -L volume_label Set the volume label for the file system. -O Provide case-insensitive support for compatibility with OS/2. -q Quiet execution - do not ask for confirmation before creating the file system. -s log_size Set the log size (in megabytes). If the -s option is not used, the default log size is 0.4% of the aggregate size. -V Print version information and exit (regardless of any other chosen options). EXAMPLES
Format 3rd partition on 2nd hard disk with the volume label "JFS_hdb3": mkfs.jfs -L JFS_hdb3 /dev/hdb3 Format 5th partition on 1st hard disk, verifying each block created: mkfs.jfs -c /dev/hda5 REPORTING BUGS
If you find a bug in JFS or mkfs.jfs, please report it via the bug tracking system ("Report Bugs" section) of the JFS project web site: http://oss.software.ibm.com/jfs Please send as much pertinent information as possible including any error messages resulting from running mkfs.jfs and the complete output of running fsck.jfs with the -v option. SEE ALSO
mkfs(8), fsck.jfs(8), extendfs(8), logdump(8), logredo(8), xchkdmp(8), xpeek(8) AUTHORS
Barry Arndt (barndt@us.ibm.com) William Braswell, Jr. mkfs.jfs is maintained by IBM. See the JFS project web site for more details: http://oss.software.ibm.com/jfs/ November 9, 2001 mkfs.jfs(8)