Input/Output Completion Port (I/O Completion Ports, or IOCP) is an API for performing multiple simultaneous asynchronous input/output operations in Windows, AIX and Solaris.
1
vote
1answer
59 views
I/O Completion Ports vs. RegisterWaitForSingleObject?
What's the difference between using I/O completion ports, versus just using RegisterWaitForSingleObject to have a thread pool thread wait for I/O to complete?
Is one of them faster, and if so, why?
3
votes
3answers
150 views
Processing a large file in .Net
The Problem
I need to be able to save and read a very big data structure using C#. The structure itself is rather simple, it's a very long array of a simple structs of a constant size.
just an ...
0
votes
1answer
49 views
I/O completion port silently fails to read completely
I'm developing a program that needs to write a large amout of data to disk then read back much smaller amount of data back later on. It needs to "bin" related data together then once it figures out ...
0
votes
1answer
88 views
Forcing WSARecv to overlap
I'm triying to implement a server which uses IOCompletionPort to read from its clients.
I have something very similar to this example.
If I understand correctly, this should be my design:
[Main ...
2
votes
1answer
62 views
iocpreactor release status in twisted
we are having issues with the default select reactor on Windows 2008. There is an alternative reactor, the iocpreactor, that looks like an ideal solution for Windows. it is listed in the documentation ...
1
vote
0answers
174 views
Multiple threads on I/O completion ports
I'm working on a C++ socket server using I/O completion ports. I create one I/O port and two worker threads per processor as some articles recommend in order to handle the overlapped I/O activity
...
1
vote
1answer
268 views
Using IO completion ports from multiple Sockets on a limited threadpool in C#
I am trying to listen for UDP packets from a variety of incoming ports(~20). I would like to dedicate ~3-5 threads to receiving and processing these packets. This seems like an ideal situation for IO ...
1
vote
2answers
180 views
IO Completion Ports - send or recv?
If I wrote a program that used IO Completion Ports to multiplex using non blocking sockets, how would I know whether the function performed on the socket was send or recv when ...
1
vote
1answer
73 views
Associate several files to the same io completion port, while keeping file stream order c#
I need to write objects, sent to me from another process, to several files on my disk.
Each object comes with fileID (the name of file to be written in to) and chunks of data.
I would like to use IO ...
6
votes
1answer
431 views
SocketAsyncEventArgs buffer is full of zeroes
I'm writing a message layer for my distributed system. I'm using IOCP, ie the Socket.XXXAsync methods.
Here's something pretty close to what I'm doing (in fact, my receive function is based on his):
...
0
votes
1answer
360 views
WriteFile with IO Completion Port Issue
I have this code that basically writes to a file 5 times using IO completion ports. As you've guessed, it doesn't work very well. The issue is that I expect "hello" to be written to the file 5 times ...
1
vote
2answers
309 views
WSARecv, Completionport Model, how to manage Buffer and avoid overruns?
My Problem: My Completionport Server will receive Data of unknown size from different clients, the thing is, that i don't know how avoid buffer overruns/ how to avoid my (receiving) buffer being ...
1
vote
2answers
1k views
CloseHandle() returns before the serial port is actually closed
I'm pulling my hair trying to figure out when a serial port finishes closing so I can reopen it. It turns out that CloseHandle() returns before the port is actually unlocked.
I am opening a serial ...
3
votes
2answers
810 views
How to detect WinSock TCP timeout with BindIoCompletionCallback
I am building a Visual C++ WinSock TCP server using BindIoCompletionCallback, it works fine receiving and sending data, but I can't find a good way to detect timeout: ...
4
votes
2answers
697 views
c# parallel IO Completion Ports
I'm trying to figure out the best way to wait for some number of I/O Completion ports to complete.
For this scenario, let's say that I'm in a MVC3 web app. (My understanding is the use of I/O ...
32
votes
3answers
2k views
.NET sockets vs C++ sockets at high performance
My question is to settle an argument with my co-workers on C++ vs C#.
We have implemented a server that receives a large amount of UDP streams. This server was developed in C++ using asynchronous ...
2
votes
2answers
245 views
Put several HTTP request to wait for the same I/O completion port
My application load asynchronously a big amount of information from a web service and "Application_Start".
If an user request wants to use that information, and it is nor ready, the thread will be ...
1
vote
1answer
286 views
Non-blocking socket connect on Windows without ConnectEx
I need to initiate 1000's of client connections in a single process, the key limitation I need to work around is the driver does not support ConnectEx, so I cannot have a pure IOCP solution.
My ...
0
votes
1answer
443 views
GetQueuedCompletionStatus blocks forever
I'm writing a server application and I want to use IOCompletion ports, so I wrote a prototype for the server, but I'm facing a problem with GetQueuedCompletionStatus that it never returns(it blocks). ...
1
vote
0answers
308 views
Why CompletionKey in I/O completion port?
Remark from MSDN about CompletionKey in CreateIoCompletionPort function:
Use the CompletionKey parameter to help your application track which
I/O operations have completed. This value is not ...
0
votes
3answers
873 views
Winsock: Overlapped AcceptEx indicates a new connection while no client connecting
In my program I am using the overlapped version of AcceptEx() to accept new connections.
After a new connection has been accepted, the programm initiates another overlapped call to AcceptEx() for ...
1
vote
2answers
794 views
Resources To learn IOCP On Windows
I recently was made aware of this thing called IOCP on windows and i began searching for more information on it but i couldn't find anything up to date (most of the examples were on codeproject almost ...
0
votes
1answer
49 views
About synchronous access in I/O Works in I/O Completion
Supposing there are 4 I/O workers in the use of I/O Completion Port corresponding to the number of processors, do they need synchronous access on client context among each other?
The client context ...
1
vote
2answers
228 views
IO COmpletion Ports for Mac OS X
Is there any equivalent of IO COmpletion ports on Mac OS X for implementing Asynchronous IO on files....
Thank you....
1
vote
1answer
322 views
Is it necessary to set hEvent on the OVERLAPPED structure when doing I/O completion ports?
I'm using I/O completion ports on Windows for serial port communication (we will potentially have lots and lots of serial port usage). I've done the usual, creating the IOCP, spinning up the I/O ...
3
votes
6answers
649 views
Exiting a thread that does not have a loop
I need a way to stop a worker thread that does not contain a loop. The application starts the thread, the thread then creates a FileSystemWatcher object and a Timer object. Each of these has callback ...
1
vote
1answer
497 views
Is my loop wrong ? Do I misuse ReadFile() and I/O completion port ?
I want to implement a server/client using named pipes (for IPC).I'm using async (overlapped) connections and I/O completion port (I searched a lot and it seems that it is the most efficient way to do ...
0
votes
2answers
2k views
GetQueuedCompletionStatus returns ERROR_NETNAME_DELETED on remote socket closure
I am writing a small server-client-stuff using an I/O-Completion Port.
I get the server and client connected successfully via AcceptEx over my completion port.
After the client has connected the ...
2
votes
2answers
806 views
Efficient Overlapped I/O for a socket server
Which of these two different models would be more efficient (consider thrashing, utilization of processor cache, overall desgn, everything, etc)?
1 IOCP and spinning up X threads (where X is the ...
5
votes
2answers
1k views
Intermittently no data delivered through boost::asio / io completion port
Problem
I am using boost::asio for a project where two processes on the same machine communicate using TCP/IP. One generates data to be read by the other, but I am encountering a problem where ...
39
votes
1answer
6k views
Whats the difference between epoll, poll, threadpool?
Could someone explain what the difference is between epoll, poll and threadpool?
What are the pros / cons?
Any suggestions for frameworks?
Any suggestions for simple/basic tutorials?
It seams that ...
