1 / 28

LAIO: Lazy Asynchronous I/O For Event Driven Servers

LAIO: Lazy Asynchronous I/O For Event Driven Servers. Khaled Elmeleegy Alan L. Cox. Outline. Available I/O APIs and their shortcomings. Event driven programming and its challenges. Lazy Asynchronous I/O (LAIO). Experiments and results. Conclusions. Key Idea.

jacoba
Télécharger la présentation

LAIO: Lazy Asynchronous I/O For Event Driven Servers

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. LAIO: Lazy Asynchronous I/O For Event Driven Servers Khaled Elmeleegy Alan L. Cox

  2. Outline • Available I/O APIs and their shortcomings. • Event driven programming and its challenges. • Lazy Asynchronous I/O (LAIO). • Experiments and results. • Conclusions.

  3. Key Idea • Existing I/O APIs come short of event driven server needs. • LAIO fixes that.

  4. Non-Blocking I/O • System call may return without fully completing the operation. • Ex: write to a socket. • System call may also return with completion. • Disadvantages: • Not available for disk operations. • Program using it needs to maintain state.

  5. Asynchronous I/O (AIO) • System call returns immediately. • Operation always runs to completion and sends notification on completion. • Via signal, event or polling. • Disadvantages • Missing disk operations like open and stat. • Always receive completion via a notification even if the operation didn’t block. • Lower performance.

  6. Event Driven Programming with I/O (What we have) event_loop(..) { … while(true) { event_list= get available events; for each event ev in event_list do call handler of ev; } } handler(…) { … /* do stuff 1 */ open(..); /*may block*/ … /* do stuff 2 */ return; /* to event_loop */ }

  7. Event Driven Programming with I/O (What we have) If Blocks Server Stalls event_loop(..) { … while(true) { event_list= get available events; for each event ev in event_list do call handler of ev; } } handler(…) { … /* do stuff 1 */ open(..); /*may block*/ … /* do stuff 2 */ return; /* to event_loop */ }

  8. Event Driven Programming with I/O (What we want) handler1(…) { … /* do stuff 1 */ open(..); /*may block*/ if open blocks { set handler2 as callback for open; return; /* to event_loop */ } … /* do stuff 2 */ return; /* to event_loop */ } event_loop(..) { … while(true) { event_list= get available events; for each event ev in event_list do call event_handler of ev; } }

  9. Event Driven Programming with I/O (What we want) handler1(…) { … /* do stuff 1 */ open(..); /*may block*/ if open blocks { set handler2 as callback for open; return; /* to event_loop */ } … /* do stuff 2 */ return; /* to event_loop */ } event_loop(..) { … while(true) { event_list= get available events; for each event ev in event_list do call event_handler of ev; } }

  10. Event Driven Programming with I/O (What we want) handler1(…) { … /* do stuff 1 */ open(..); /*may block*/ if open blocks { set handler2 as callback for open; return; /* to event_loop */ } … /* do stuff 2 */ return; /* to event_loop */ } event_loop(..) { … while(true) { event_list= get available events; for each event ev in event_list do call event_handler of ev; } } handler2(…) { … /* do stuff 2 */ return; /* to event_loop */ }

  11. Lazy Asynchronous I/O (LAIO) • Like AIO on blocking: asynchronous completion notification. • Also like AIO operations are done in one shot and no partial completions. • Similar to non-blocking I/O if operations completes without blocking. • Scheduler activation based. • Scheduler activation is an upcall delivered by kernel when a thread blocks or unblocks.

  12. LAIO API

  13. laio_syscall(int number, …) Invoked via kernel upcall • Enable upcalls. • Save context • Invoke system call upcall_handler(..) { . . . Steals old stack using stored context } Yes System call blocks? No • Disable upcalls • Return retval • errno = EINPROGRESS • Return -1

  14. Experiments and Experimental setup. • Performance evaluated using both micro-benchmarks and event driven web servers (thttpd and Flash). • Pentium Xeon 2.4 GZ with 2 GB RAM machines. • FreeBSD-5 with KSE, FreeBSD’s scheduler activation implementation. • Two web traces, Rice and Berkeley, with working set sizes 1.1 GB and 6.4 GB respectively.

  15. Micro-benchmarks • Read a byte from a pipe 100,000 times two cases blocking and non-blocking: • For non-blocking (byte ready on pipe) • LAIO is 320% faster than AIO. • LAIO is 40% slower than non-blocking I/O. • For blocking (byte not ready on pipe) • AIO is 8% faster than LAIO. • Call getpid(2) 1,000,000 times in two cases KSE enabled and disabled. • When disabled program was 5% faster (KSE overhead)

  16. thttpd Experiments • thttpd is an event driven server modified to use libevent an event notification library. • Two versions of thttpd, libevent-thttpd and LAIO-thttpd. • For LAIO-thttpd, thttpd was modified by breaking up event handlers around blocking operations like open.

  17. thttpd Results (Berkeley Throughput)

  18. thttpd Results (Berkeley Response Time)

  19. thttpd Results (Rice Throughput)

  20. thttpd Results (Rice Response Time)

  21. thttpd Results (Rice Throughput 512 MB RAM)

  22. thttpd Results (Rice Response Time 512 MB RAM)

  23. Flash • An event driven web server. • 3 flavors: • Pure event driven. • AMPED: Asymmetric Multiprocess Event Driven. • Event driven core. • Potentially blocking I/O handed off to a helper process. • Helper does an explicit read to bring data in memory. • LAIO: uses LAIO to do all I/O asynchronously. • For each of the three flavors files are sent either with sendfile(2), or using mmap(2).

  24. Flash Experiments • All experiments are done with 500 clients. • All sockets are blocking. • For mmap: File maped to memory, then written to socket. • Page faults may happen. • mincore(2) is used to check if pages are in memory. • For sendfile: File is sent via the sendfile(2) syscall which may block. • Optimized sendfile: Kernel is modified that sendfile returns if blocking on disk occurs.

  25. Flash Throughput(mmap) • For Rice-Cold: 41072 callouts to the helper process for AMPED. For LAIO 46486 page faults. • Performance difference is due to prefetching.

  26. Flash Throughput(sendfile)

  27. Conclusions • LAIO subdues shortcomings of other I/O APIs. • LAIO is more than 3 times faster than AIO when data is in memory. • LAIO serves well event driven servers. • LAIO increased thttpd throughput by 38%. • LAIO matched Flash performance with no kernel modifications.

  28. Questions?

More Related