Tagged Questions
The aio tag has no wiki summary.
24
votes
2answers
4k views
What is the status of POSIX asynchronous I/O (AIO)?
There are pages scattered around the web that describe POSIX AIO facilities in varying amounts of detail. None of them are terribly recent. It's not clear what, exactly, they're describing. For ...
9
votes
2answers
658 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 ...
7
votes
2answers
173 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 ...
5
votes
1answer
735 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 ...
4
votes
3answers
419 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 ...
4
votes
1answer
1k 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 & ...
3
votes
4answers
562 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 ...
3
votes
3answers
2k 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 ...
2
votes
1answer
123 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
33 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 ...
2
votes
1answer
347 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 ...
2
votes
2answers
82 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 ...
2
votes
2answers
289 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
403 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
0answers
444 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 ...
2
votes
5answers
366 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 ...
2
votes
1answer
563 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 ...
1
vote
2answers
88 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 ...
1
vote
3answers
150 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.
...
1
vote
1answer
141 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 ...
1
vote
1answer
291 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
220 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 ...
1
vote
1answer
252 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 ...
1
vote
1answer
601 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
3answers
1k 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 ...
1
vote
3answers
2k 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 ...
0
votes
1answer
115 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 ...
0
votes
1answer
38 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 ...
0
votes
3answers
261 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 ...
0
votes
1answer
68 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 ...
0
votes
1answer
220 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
262 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 ...
0
votes
5answers
1k views
Compiling C++ program with POSIX AIO lib on Linux
I'm having difficulty with the linker when it comes to compiling a sample program that uses the POSIX aio library (e.g. aio_read(), aio_write(), etc) on Linux.
I'm running Ubuntu with a 2.6 kernel, ...