Tagged Questions

epoll is a Linux 2.6 readiness notification API for sockets, pipes, and special event-, signal-, and timer descriptors which can operate both in level- and edge-triggered mode, although presently only level-triggered behaviour is in accordance with the documentation. As opposed to poll or select, epoll scales O(1) in respect to the number of descriptors and O(N) in respect realized events.

learn more… | top users | synonyms

24
votes
1answer
291 views

Does epoll(), do its job in O(1)?

Wikipedia says unlike the older system calls, which operate at O(n), epoll operates in O(1) [2]). http://en.wikipedia.org/wiki/Epoll However, the source code at fs/eventpoll.c on ...
14
votes
1answer
1k 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 ...
12
votes
2answers
6k views

What is the best epoll/kqueue/select equvalient on Windows?

What is Windows' best I/O event notification facility? By best I mean something that ... doesn't have a limit on number of input file descriptors works on all file descriptors (disk files, ...
11
votes
2answers
2k views

Is 'epoll' the essential reason that Tornadoweb(or Nginx) is so fast?

Tornadoweb and Nginx are popular web servers for the moment and many benchmarkings show that they have a better performance than Apache under certain circumstances. So my question is: Is 'epoll' the ...
9
votes
4answers
6k views

Could you recommend some guides about Epoll on Linux

I need to know about Epoll On linux System. Could you recommend manual or guides about epoll library? need more detailed guides. it's better to have some examples. help me. and Thank you for ...
7
votes
2answers
172 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 ...
6
votes
2answers
220 views

Haskell concurrency over kqueue

I wrote concurrent application and have caught the error: buildFdSets: file descriptor out of range I found out that it is the OS limit on the number of file descriptors in one process, in my ...
6
votes
3answers
4k views

select vs poll vs epoll

Iam designing a new server which needs to support thousands( somewhere between 100,000 sessions) of udp connections. What is the best polling method to use for socket FD's. I have read that epoll is ...
4
votes
1answer
94 views

accept() interrupted on a signal and epoll_wait()

If I am epoll_wait()ing on a listening socket and, when epoll_wait() returns indicating it has activity (in this case, a connection waiting to be accept()ed), then if the accept() call fails with ...
4
votes
3answers
200 views

Socket server with epoll and threads

I am trying to create a socket server in C for a Collaborative real-time editor http://en.wikipedia.org/wiki/Collaborative_real-time_editor but I don't know what is the best server architecture for ...
4
votes
1answer
486 views

A problem of multithread epoll in linux

I have a multithread linux program which uses epoll(7). The epoll(7) man page says when one of its fds gets closed, this fd will be automatically removed from the epoll set. My question is what if a ...
4
votes
3answers
415 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
2answers
167 views

What is “urgent data”?

The man page of epoll_ctl() says about EPOLLPRI: There is urgent data available for read(2) operations. How exactly is "urgent data" defined and who decides which data has priority?
4
votes
2answers
372 views

What is the state of C10K-like event-based server development in TCL?

TCL is a nice simple programming language, but does not seem to get the credit and/or respect it deserves [1]. I learned it back in 1995 in college and promptly forgot about it only to stumble upon ...
3
votes
3answers
115 views

How do I make epoll switch between multiple connections?

I am using epoll in what I believe to be the typical manner for TCP sockets (based largely on this example, but slightly adapted to C++); one main listening socket bound to the port, and each new ...
3
votes
1answer
80 views

Why does select.select() work with disk files but not epoll()?

The following code essentially cats a file with select.select(): f = open('node.py') fd = f.fileno() while True: r, w, e = select.select([fd], [], []) print '>', repr(os.read(fd, 10)) ...
3
votes
2answers
117 views

Threading and scaling model for TCP server with epoll

I've read the C10K doc as well as many related papers on scaling up a socket server. All roads point to the following: Avoid the classic mistake of "thread per connection". Prefer epoll over select. ...
3
votes
1answer
87 views

I can't understand polling/select in python

I'm doing some threaded asynchronous networking experiment in python, using UDP. I'd like to understand polling and the select python module, I've never used them in C/C++. What are those for ? I ...
3
votes
2answers
463 views

Is epoll thread-safe?

There are two functions in epoll: epoll_ctl epoll_wait Are they thread-safe when I use the same epoll_fd? What will happen if one thread calls epoll_wait and others call epoll_ctl at the same ...
3
votes
1answer
251 views

Does one nginx worker process handle two requests concurrently or one by one?

The really cool part about the filter chain is that each filter doesn't wait for the previous filter to finish; it can process the previous filter's output as it's being produced, sort of ...
3
votes
1answer
1k views

How to solve process.nextTick error?

I am using node.js to build a TCP server and I got the following errors. How to solve this? node.js:134 throw e; // process.nextTick error, or 'error' event on first tick ^ Error: ...
3
votes
2answers
293 views

With a single file descriptor, Is there any performance difference between select, poll and epoll and …?

The title really says it all. The and ... means also include pselect and ppoll.. The server project I'm working on basically structured with multiple threads. Each thread handles one or more ...
3
votes
3answers
272 views

Choosing a IPC solution for an event-driven application

I am currently working on a rather large single-threaded, event-based, application designed around epoll under Linux and comparable technologies under other platforms. Currently, whenever we wish two ...
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 ...
3
votes
1answer
3k views

Boost Message Queue not based on POSIX message queue? Impossible to select(2)?

I thought I'd use Boost.Interprocess's Message Queue in place of sockets for communication within one host. But after digging into it, it seems that this library for some reason eschews the POSIX ...
2
votes
3answers
426 views

Scalable server framework in C++

I am looking to write a server application in C++ that is meant to handle tens of thousands of clients simultaneously. It should run under Windows and Linux. I have been looking around for frameworks ...
2
votes
1answer
200 views

Using edge triggered epoll, should I loop over send?

I'm using epoll to write a media server. The fds are all set to non-blocking and I'm using edge-triggered events. I know for EPOLLIN I need to loop over reading the fd until EAGAIN is returned. But ...
2
votes
2answers
355 views

How do I use EPOLLHUP

Could you guys provide me a good sample code using EPOLLHUP for dead peer handling? I know that it is a signal to detect a user disconnection but not sure how I can use this in code..Thanks in ...
2
votes
2answers
131 views

How do I check client connection is still alive

I am working on a network programming using epoll. I have a connection list and put every client in the list. I can detect user disconnection by reading 0 if the user disconnected normally. However, ...
2
votes
2answers
169 views

Alternative to epoll_wait, which does not wait for file descriptor?

I have a program which creates a timer using timerfd_create (the timer when it expires, sets a file descriptor). Problem is, i am using epoll_wait to wait for the file descriptor, then checking for ...
2
votes
1answer
288 views

epoll file descriptor operations

I'm trying to wrap my head around epoll in Linux. The normal operation seems to be: // Create the epoll_fd int epoll_fd = epoll_create(10); ... // Add file descriptors to it struct epoll_event ...
2
votes
1answer
420 views

Use python select kqueue on OSX to monitor file creation by external application

Typically the transcode of my 1 hr long audio recording sessions to an mp3 file takes twenty odd minutes. I want to use a python script to execute a series of python code when the OSX application ...
2
votes
3answers
2k views

C: epoll and multithreading

I need to create specialized HTTP server, for this I plan to use epoll sycall, but I want to utilize multiple processors/cores and I can't come up with architecture solution. ATM my idea is followng: ...
2
votes
1answer
250 views

What is anonymous inode?

I made a google search about "anonymous inode" and it seems it's related to epoll ... but what actually is it?
2
votes
2answers
128 views

Is it possible to detect the time difference between the moment an epoll is generated by the kernel and the moment the Sun JVM reads it?

i.e. Time A = voltage hits the NIC; Time B = Selector from Java NIO package is able to select socket channel for I/O.
2
votes
1answer
290 views

How to read multiple file descriptors using epoll_select with EPOLLET?

man epoll: The suggested way to use epoll as an edge-triggered (EPOLLET) interface is as follows: i with nonblocking file descriptors; and ii by waiting for an event only after read(2) or ...
2
votes
1answer
657 views

Proper handling of EWOULDBLOCK with polling on a non-blocking socket

I've been working on a polling TCP daemon for some time now. Recently, I've read that non-blocking sockets can sometimes throw an EWOULDBLOCK error during a send() or recv(). My understanding is that ...
2
votes
2answers
59 views

Determine how much can I write into a filehandle; copying data from one FH to the other

How to determine if I can write the given number of bytes to a filehandle (socket actually)? (Alternatively, how to "unread" the data I had read from other filehandle?) I want something like: n = ...
2
votes
1answer
559 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 ...
2
votes
2answers
2k views

epoll performance

Can anyone please help me to answer the questions about epoll_wait. Is it overkill to use many threads that call epoll_wait on the same fds set to serve at about 100K active sockets? or will it just ...
2
votes
8answers
4k views

How epoll detect clientside close in Python?

Here is my server ""Server using epoll method""" import os import select import socket import time from oodict import OODict addr = ('localhost', 8989) s = socket.socket(socket.AF_INET, ...
1
vote
1answer
68 views

Is it necessary to deregister a socket from epoll before closing it?

Assume the following code where "sock" is a handle to TCP socket that was previously registered with an epoll file descriptor designated by epfd. epoll_ctl(epfd, EPOLL_CTL_DEL, sock, &ev); ...
1
vote
2answers
42 views

Epoll and remote 1-way shutdown

Assume a TCP socket on the local linux host is in a connected state with a remote host. The local host is using epoll_wait to be notified of events on the socket with the remote host. If the remote ...
1
vote
1answer
64 views

Why epoll_wait(), get returned and TCP connect time out in 5s~10s

I create a non-blocking socket, and then use the epoll to manange the socket. I do not set a timeout on epoll_wait. But I find that the epoll returned in 5s to 10s, then I check with the getsockopt on ...
1
vote
1answer
52 views

Is there any benefit to using epoll with a very small number of file descriptors?

Would the following single threaded UDP client application see a performance benefit from using epoll over simply calling recvfrom/sendto on non-blocking sockets? Let me explain the client. I am ...
1
vote
1answer
116 views

epoll vs select for very small number of connections

I have been using select to handle connections, recently there was a change an our socket library and select was replaced by epoll for linux platform. my application architecture is such that I make ...
1
vote
2answers
105 views

Efficient preforked server design with NBIO like epoll, kqueue using libevent

I am planning on writing a 'comet' server for 'streaming' data to clients. I have enhanced one in the past to take advantage of the multi-core CPUs but now I'm starting from scratch. I am planning to ...
1
vote
2answers
196 views

Should I use epoll or just blocking recv in threads?

I'm trying to write a scalable custom web server. Here's what I have so far: The main loop and request interpreter are in Cython. The main loop accepts connections and assigns the sockets to one of ...
1
vote
1answer
222 views

Does poll/epoll block? How is it different from async IO?

I was always under the impression that poll/epoll doesn't block. That's why they are used by non-blocking servers such as Nginx. But in this Stackoverflow question it was stated several times that ...
1
vote
1answer
285 views

Dealing with listening socket by epoll

All below is from man epoll page: The function do_use_fd() uses the new ready file descriptor until EAGAIN is returned by either read(2) or write(2). Code example for ET triggered ...

1 2 3