seda an architecture for well conditioned scalable
play

SEDA: An Architecture for Well-Conditioned Scalable Internet - PowerPoint PPT Presentation

SEDA: An Architecture for Well-Conditioned Scalable Internet Services Matt Welsh, David Culler, and Eric Brewer presented by Ahn, Ki Yung Staged Event-Driven Architecture Designed for highly concurrent Internet services Applications are


  1. SEDA: An Architecture for Well-Conditioned Scalable Internet Services Matt Welsh, David Culler, and Eric Brewer presented by Ahn, Ki Yung

  2. Staged Event-Driven Architecture Designed for highly concurrent Internet services Applications are network of stages Stages are driven by event Stages connected by explicit event queues

  3. Internet is a problem millions of users demanding access more complex and dynamic contents traditional OS design does not fit - mutiprogrmming for resource virtualization replication, clustering not always suffice - peak load may seldom occur

  4. Well-Conditioned service Behaving like a simple pipeline Throughput increase proportional to the load, until it saturates (pippline full) Graceful Degradation: when overloaded, throughput does not degrade linear response-time penalty equally

  5. 30000 400 Throughput Latency Linear (ideal) latency 350 25000 300 Throughput, tasks/sec 20000 250 Latency, msec 15000 200 150 10000 100 5000 50 0 0 1 4 16 64 256 1024 Number of threads Figure 2: Threaded server throughput degradation: This benchmark mea-

  6. 40000 Throughput Latency 35000 Linear (ideal) latency 30000 30000 Throughput, tasks/sec 25000 Latency, msec 20000 20000 15000 10000 10000 5000 0 0 1 32 1024 32768 1048576 Number of tasks in pipeline Figure 4: Event-driven server throughput: This benchmark measures an event-driven version of the server from Figure 2. In this case, the server uses

  7. Concurrency Models Thread-per-Request - throughput degrades for large # of access Bounded Thread Pools - can avoid throughput degradation - response time may be extremely unfair Event-Driven - robust to load - event handler should not block - application should schedule & order events

  8. request 1 request 2 dispatch send result network dispatcher request 3 network request 4 request N Figure 1: Threaded server design: Each incoming request is dispatched to a request FSM 1 request FSM 2 disk scheduler request FSM 3 network request FSM 4 request FSM N Figure 3: Event-driven server design: This figure shows the flow of events

  9. SEDA goals massive concurrency - event-driven execution, asynchronous IO simplify construction - provide scheduling, resource management enable introspection on event queues - application can have control on events self-tuning resource management - thread pool controller, batching controller

  10. Conclusion & Discussion SEDA is a combination of threaded model and event-driven model event-driven stages - modularity explicit event queues - control over events dynamic controllers - scheduling & resource management easier to build well-conditioned service SEDA can be new OS design model - more control over scheduling & resource - shared virtualized resource not necessary

  11. file data Socket listen CacheMiss file I/O I/O request accept handle file HttpParse PageCache connection HTTP miss I/O connection request cache parse check miss Socket write Socket read HttpSend packet cache packet packet read write send cache hit packet response packet Figure 5: Staged event-driven (SEDA) HTTP server: This is a structural representation of the SEDA-based Web server, described in detail in Section 5.1. The application is composed as a set of stages separated by queues . Edges represent the flow of events between stages. Each stage can be independently managed, and stages can be run in sequence or in parallel, or a combination of the two. The use of event queues allows each stage to be individually load-conditioned, for example, by thresholding its event queue. For simplicity, some event paths and stages have been elided from this figure. Outgoing Events Other Stages Event Handler Event Handler Event Queue Event Handler Observe Thread Pool Thread Pool Length Adjust Adjust Batching > > Size Observe Factor Rate Thread Pool Running Avg Threshold (a) Thread pool controller (b) Batching controller Figure 7: SEDA resource controllers: Each stage has an associated controller Controller that adjusts its resource allocation and behavior to keep the application within its operating regime. The thread pool controller adjusts the number of threads Figure 6: A SEDA Stage: A stage consists of an incoming event queue , a executing within the stage, and the batching controller adjusts the number of thread pool , and an application-supplied event handler . The stage’s operation events processed by each iteration of the event handler. is managed by the controller , which adjusts resource allocations and scheduling dynamically.

  12. SEDA seem familiar to what I’ve seen before Distributed Systems - Computers : stages - OS (TCP stack) : event queue & scheduler SEDA is like a model implementation of distributed system in a single machine - That is ... MULTIPROGRAMMING with IPC?

  13. Questions How did they implement the SEDA queue? How to arrange events and asynchronous IO? Is SEDA essentially different from multiprocess/thread programming with message passing OR distributed systems?

Recommend


More recommend