Sponsored Content
Operating Systems Linux Is Concurrent I/O (CIO) available on Linux? Post 302405451 by jim mcnamara on Friday 19th of March 2010 12:10:52 AM
Old 03-19-2010
No, there is nothing that exactly matches concurrent I/O. AFAIK. You can back into it by turning off file caching, for example:

You can drop_caches for a one-time flush:

Writing to this will cause the kernel to drop clean caches, dentries and
inodes from memory, causing that memory to become free.
Code:
To free pagecache:
	echo 1 > /proc/sys/vm/drop_caches
To free dentries and inodes:
	echo 2 > /proc/sys/vm/drop_caches
To free pagecache, dentries and inodes:
	echo 3 > /proc/sys/vm/drop_caches

This is a non-destructive operation and dirty data objects are not freeable, the
user should run `sync' first.

You can mount filesystems
Code:
 mount -o sync ....

to bypass file caching
The dirsync flag also bypasses file metadata update caching. Doing these can increase your exposure to possible data loss for long term operation.

You can use the O_DIRECT flag on open.

If this question refers to a db applications I would bet the system designers are aware of all of this for a linux install. Are you experiencing performance issues?
 

4 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

turning CIO on and how to monitor

Hi Guys, I have a database server where we run AIX 5.3 on a power5 box and we just turned on CIO (concurrent I/O) for the database filesystems. Now my assumption is that enabling CIO the database basically will bypass the filesystem cache releasing some extra memory that can be allocated... (1 Reply)
Discussion started by: hariza
1 Replies

2. AIX

turning CIO on and how to monitor

Hi Guys, I have a database server where we run AIX 5.3 on a power5 box and we just turned on CIO (concurrent I/O) for the database filesystems. Now my assumption is that enabling CIO the database basically will bypass the filesystem cache releasing some extra memory that can be allocated... (1 Reply)
Discussion started by: hariza
1 Replies

3. UNIX for Advanced & Expert Users

CIO in AIX

Hi, I'm reading AIX documentation : Examples 1.To list the mounted file systems, enter: mountThis command produces output similar to the following: node mounted mounted over vfs date options ---- ------- ------------ --- ------------ ... (2 Replies)
Discussion started by: big123456
2 Replies

4. AIX

Difference between concurrent and enhanced concurrent VG

Hi, What are the differences between concurrent and enhanced concurrent VGs.? Any advantages of enhanced concurrent VG over normal concurrent vg Regards, Siva (2 Replies)
Discussion started by: ksgnathan
2 Replies
RHNPLUGIN(8)							   Red Hat, Inc.						      RHNPLUGIN(8)

NAME
rhnplugin - Spacewalk/Red Hat Satellite support for yum(8). DESCRIPTION
rhnplugin provides Spacewalk support for yum(8) via its plugin architecture. A system registered with Spacewalk will be able to update and install packages from Spacewalk. FILES
/etc/sysconfig/rhn/up2date The common configuration file used by RHN client programs. /etc/yum/pluginconf.d/rhnplugin.conf A file containing plugin specific configuration options. SEE ALSO
yum(8), rhn_check(8), rhn_register(8), rhnplugin.conf(5), up2date(5). AUTHORS
James Bowes <jbowes@redhat.com> and Peter Vetere <pvetere@redhat.com>. BUGS
Report bugs to <http://bugzilla.redhat.com>. COPYRIGHT
Copyright (C) 2006 Red Hat, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICU- LAR PURPOSE. Linux 2006 November 13 RHNPLUGIN(8)
All times are GMT -4. The time now is 10:11 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy