The aio tag has no wiki summary.
1
vote
1answer
11 views
linux IOSTAT double counting AIO write operations?
As part of debugging an IO generator, I've run across an odd set of results under RH 6.4 running on x64 hardware (validated on multiple systems):
-- The application uses linux async IO (i.e., ...
0
votes
0answers
39 views
Adding NetSNMP agent functionality to code using AIO (epoll_wait) on Linux
I am working with some existing C++ code for Linux with a main processing event loop using epoll_wait(), that is Asynchronous IO (AIO).
I would like to add SNMP agent or sub-agent functionality, that ...
3
votes
1answer
47 views
Exit while performing asynchronous I/O operation
A program may first issues an asynchronous I/O operation with aio_read() or aio_write() and then call exit() to terminate itself.
...
aio_write(aiocbp);
exit(0);
My question is, will the exit() ...
0
votes
0answers
58 views
linux asyncronous io benchmarks
I'm dealing with a project at work that requires some form of asynchronous or parallel IO under Linux. The main design of this program would be to act as proxy between a locally running web server and ...
1
vote
0answers
53 views
what is difference between io_submit and file with O_ASYNC
I am reading this tutorial asynchronous disk file io, however it does't make me clear, and actually make me more confuesd.
There are two diffierent async IO model according to this tutorial:
...
0
votes
0answers
44 views
io_getevents returns less number of jobs than requested in time shorter than timout
I am reading SSD, requesting 20 async jobs. io_getevents returned value 7 indicating that it timed out. timeout is set to 10 seconds as seen below. elapsed time of the call is really 4.89e-05 seconds, ...
1
vote
0answers
464 views
I'm getting “Resource temporarily unavailable” in aio_read completion routine for SIGEV_THREAD in RedHat
Here is my design;
1) Init the AIO control block;
memset(&m_ReadBuffer, 0, sizeof(struct aiocb));
m_ReadBuffer.aio_fildes = dup(m_Socket);
m_ReadBuffer.aio_buf = NULL; /* Not yet */
...
0
votes
1answer
200 views
Linux open(path, O_NONBLOCK | O_RDONLY | O_DIRECT) blocks pread on file
I want to have async disk read in my program.
There are many HDD on server and if one hdd is slow, program is blocking. I want to make calls async.
If I call:
open(path, O_NONBLOCK | O_RDONLY | ...
0
votes
0answers
77 views
Read file using libaio with O_DIRECT flag
I am reading file using asynchronous libaio.
The code below shows how I do that. The code works fine,
but now I want to switch to O_DIRECT mode to avoid file caching.
When I change the line 25 to fd = ...
0
votes
1answer
41 views
Duplicated LBA request in Block Layer
I am using blktrace to understand Block Layer behavior in a
multi-thread IO workload with high IO load. I can observe some
duplicated LBA request in block layer. For example, I have only one
write ...
4
votes
2answers
91 views
Does aio_write always write the whole buffer?
I know that the POSIX write function can return successfully even though it didn't write the whole buffer (if interrupted by a signal). You have to check for short writes and resume them.
But does ...
0
votes
0answers
22 views
Accessing SCSI sense buffer as a result of AIO requests
We have been using aio as the basis for our I/O system for some time. However the granularity of any errors returned is very coarse and we were wondering whether there might be a way to access finer ...
0
votes
1answer
74 views
lio_listio: How to wait until all requests complete?
In my C++ program, i use the lio_listio call to send many (up to a few hundred) write requests at once. After that, I do some calculations, and when I'm done I need to wait for all outstanding ...
0
votes
1answer
174 views
open: Invalid argument in direct I/O
I was trying to make a AIO practice via kernel AIO API. Here is some code:
#define _GNU_SOURCE /* syscall() not POSIX */
#define ALIGN_SIZE 4096
#define RD_WR_SIZE 1024
/* ... */
/* Make the ...
0
votes
1answer
61 views
undefined reference to 'lio_listio' [posix asynchronous I/O]
I am trying to use POSIX API 'lio_listio' in my program to issue multiple asynchronous I/O system calls with the overhead of 1 kernel context switch.
I have included the library aio.h and also ...
0
votes
0answers
74 views
Does Google GFS use asynchronous IO?
I know the IO bandwidth of Google GFS is very high. But GFS is built upon normal file systems such as ext3, XFS. When it read or write files on these FS, does it use normal synchronous IO operations ...
0
votes
1answer
409 views
Proper handling of context data in libaio callbacks?
I'm working with kernel-level async I/O (i.e. libaio.h). Prior to submitting a struct iocb using io_submit I set the callback using io_set_callback that sticks a function pointer in iocb->data. ...
1
vote
1answer
1k views
Asynchronous I/O Linux
Need an async I/O Processing
Plan to use async I/O through aio* calls on Linux
The situation:
I have opened socket with AF_INET and SOCK_STREAM flags (TCP)
Have limit high watermark for send ...
1
vote
1answer
139 views
Can AIO run without creating thread?
I would like aio to signal to my program when a read operation completes, and according to this page, such notification can be received by either a signal sent by the kernel, or by starting a thread ...
10
votes
2answers
2k views
Getting to know the basics of Asynchronous programming on *nix
For some time now I have been googling a lot to get to know about the various ways to acheive asynchronous programming/behavior on nix machines and ( as known earlier to me ) got confirmed on the fact ...
13
votes
1answer
3k views
Difference between POSIX AIO and libaio on Linux?
What I seem to understand:
POSIX AIO APIs are prototyped in <aio.h> and you link your program with librt(-lrt), while the libaio APIs in <libaio.h> and your program is linked with libaio ...
2
votes
1answer
1k views
Linux async IO with libaio performance issue
I'm trying Linux libaio for optimized IO performance in server application. I believe I've done everything necessary (using O_DIRECT, align buffer with memory page...). I'm expecting the call to ...
2
votes
2answers
2k views
Linux Disk File AIO
According to this tutorial asynchronous disk file io can easily be achieved using AIO on linux, at least from a programming/api point-of-view. But before and after this tutorial I had read a lot of ...
2
votes
1answer
174 views
POSIX AIO: Any (good) way to correlate completion notifications back to original request?
Am I right in thinking that AIO completion notifications (whether done via threads or signals) give you no information as to which request has completed? Is there any way to accomplish this ...
1
vote
3answers
907 views
AIO support on Linux
Does anyone know where I can get up to date information about the state on Kernel support for aio on the latest Linux Kernel?. Google searches bring up web pages that may be hopelessly out of date.
...
2
votes
1answer
2k views
linux kernel aio functionality
I am testing kernel asynchronous io functions (not posix aio) and am trying to figure out how it works. The code below is a complete program where I simply write an array repeatedly to a file opened ...
4
votes
4answers
2k views
C - How to use both aio_read() and aio_write()
I implement game server where I need to both read and write. So I accept incoming connection and start reading from it using aio_read() but when I need to send something, I stop reading using ...
2
votes
2answers
222 views
check if aio_write finished
Is there any way to check if there are no AIO writes to a given file? Im making an project on my Unix course which will be a context free (based on UDP) chess server and all data has to be stored in ...
0
votes
1answer
81 views
Conventional way of accepting connections in a proactive web-server (using asynchronous IO)
I'm currently exploring the aio on linux to use it for implementing a web-server. As I have already discovered, there are not too many resources that cover in detail the usage of aio.
The question is ...
3
votes
1answer
563 views
aio on osx: Is it implemented in the kernel or with user threads? Other Options?
I am working on my small c++ framework and have a file class which should also support async reading and writing. The only solution other than using synchronous file i/o inside some worker threads I ...
9
votes
3answers
2k views
What's the difference between event-driven and asynchronous? Between epoll and AIO?
Event-driven and asynchronous are often used as synonyms. Are there any differences between the two?
Also, what is the difference between epoll and aio? How do they fit together?
Lastly, I've read ...
0
votes
3answers
638 views
Large byte array transfer to client
Let me present my situation.
I have a lot of data in bytes stored in files on server. I am writing and reading this files using AIO that is coming in JDK7. Thus, I am using ByteBuffer(s) for read and ...
13
votes
3answers
3k views
buffered asynchronous file I/O on linux
I am looking for the most efficient way to do asynchronous file I/O on linux.
The POSIX glibc implementation uses threads in userland.
The native aio kernel api only works with unbuffered ...
0
votes
1answer
136 views
aio_write failing on release builds
I'm using aio_write it is working in a debug build but not in release. I've checked the constructor that everything is initialized and I'm not getting any warnings about uninitialized variables. The ...
2
votes
1answer
588 views
How to get user data for aio signal handler in Mac OS X
I am attempting to use the aio_* functions for asynchronous file IO under Mac OS X, but I am having problems with getting some form of user data into the signal handler.
This is the code that sets up ...
1
vote
2answers
506 views
aio_read from file error on OS X
The following code:
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <aio.h>
#include <errno.h>
int main (int argc, char const *argv[])
{
char ...
4
votes
1answer
3k views
Simultaneous socket read/write (“full-duplex”) in Linux (aio specifically)
I'm porting an application built on top of the ACE Proactor framework. The application runs perfectly for both VxWorks and Windows, but fails to do so on Linux (CentOS 5.5, WindRiver Linux 1.4 & ...
2
votes
2answers
687 views
How do disk controllers handle concurrent writes to same sector in absence of write barriers?
When I open a file with O_DIRECT|O_ASYNC and do two concurrent writes to the same disk sector, without a fsync or fdatasync in between, does the linux disk subsystem or the Hardware disk controllers ...
2
votes
1answer
603 views
aio.h aio_read() and write memory leak
I'm trying to read and write asynchronously to disk in C++ (using the posix aio library in Ubuntu 10.04), following the directions outlined here: aio tutorial. I can asynchronously read and write, ...
2
votes
1answer
790 views
Does posix aio in linux 2.6 support socket file descriptor?
I've seached such question in google and got different answers.I cann't determine whether posix aio in linux 2.6 support socket file descriptor or not.
if it support tcp socket,does the ...
1
vote
1answer
399 views
use aio_write() but still see data going through cache?
I'm playing with this code on Linux 2.6.16.46:
io.aio_fildes = open(name, O_CREAT | O_TRUNC | O_WRONLY | O_SYNC, 00300);
io.aio_buf = buffer;
io.aio_nbytes = size;
io.aio_sigevent = sigev;
...
0
votes
1answer
509 views
IO multiplexing in Linux
Is there something like the sendfile-syscall that works with multiple target file descriptors (i.e. instead of copying from one FD to another FD, it could should copy to, say, 4 FDs)?
I know that ...
3
votes
1answer
386 views
Where can I get the latest information about aio on Linux 2.6.x
Recently I am learning how to write a high performance web server.There is a experiment by RedHat says that epoll is faster than aio. someone says that because aio in Linux kernel is implemented with ...
3
votes
5answers
560 views
Posix AIO Bad/Broken?
I'm working on a TFTP implementation that is transitioning away from a convoluted multi-threaded implementation to a single-thread/single-process implementation which uses a state machine to track the ...
5
votes
1answer
1k views
AIO network sockets and zero-copy under Linux
I have been experimenting with async Linux network sockets (aio_read et al in aio.h/librt), and one thing i have been trying to find out is whether these are zero-copy or not. Pretty much all i have ...
2
votes
1answer
978 views
Is I/O Completion ports(Windows) or Asynchronous I/O (AIO) will improve performance of multithreaded servers handling large volume of requests?
I want to use I/O Completion ports for Windows and Asynchronous I/O (AIO) for solaris and Linux versions of my server application. The application server is multithreaded and it can accept lot of ...
1
vote
4answers
2k views
AIO on OS X vs Linux - why it doesn't work on Mac OS X
My question is really simple. Why the code below does work on linux, and doesn't on Mac OS X.
To compile save the file to aio.cc, and compile with g++ aio.cc -o aio -lrt on Linux, and g++ aio.cc -o ...
5
votes
1answer
1k views
revisiting “how do you use aio and epoll together”
following the discussion at http://stackoverflow.com/questions/1825621/how-do-you-use-aio-and-epoll-together-in-a-single-event-loop.
There are in fact 2 "aio" APIs in linux.
There's POSIX aio (the ...
6
votes
4answers
3k views
How do you use AIO and epoll together in a single event loop?
How can you combine AIO and epoll together in a single event loop?
Google finds lots of talk from 2002 and 2003 about unifying them, but its unclear if anything happened, or if it's possible.
Has ...
4
votes
3answers
3k views
POSIX AIO Library and Callback Handlers
According to the documentation on aio_read/write, there are basically 2 ways that the AIO library can inform your application that an async file I/O operation has completed. Either 1) you can use a ...


