Slide 1

Slide 1 text

Fiber and Em-synchrony @ShiningRay

Slide 2

Slide 2 text

Fiber Fibers are primitives for implementing light weight cooperative concurrency in Ruby. Add to Ruby core in 1.9

Slide 3

Slide 3 text

Fiber == Coroutine

Slide 4

Slide 4 text

Fiber vs Thread vs Process ● Process simulates CPU and Memory, Preemptive ● Thread simulates CPU, Preemptive ● Fiber: none, cooperative, manually schedule

Slide 5

Slide 5 text

Coroutine vs Routine ● Routine: return only once ● Coroutine: can return(yield) multiple times

Slide 6

Slide 6 text

Benefit of Fibers ● Small & lightweight: much smaller than thread/process, so we can spawn more. ● Can be schedule only when necessary, reduced context-switch, lighten the burden of CPU. ● So can handle higher concurrency than per- thread or per-process mode.

Slide 7

Slide 7 text

PS: Coroutines can be implemented by call/cc.

Slide 8

Slide 8 text

Warning: Fiber can also lead to concurrent problem like race condition.

Slide 9

Slide 9 text

Em-Synchrony = Fiber + EventMachine

Slide 10

Slide 10 text

Em-Synchrony: Good Parts ● High Concurrency of evented model ● Ease of sequential programming, no pain of callbacks https://github.com/igrigorik/em-synchrony

Slide 11

Slide 11 text

Basic Idea ● Untangling Evented Code with Ruby Fibers ● http://www.igvita.com/2010/03/22/untangling-eve nted-code-with-ruby-fibers/

Slide 12

Slide 12 text

Basic Idea ● Use Fiber to save the context after sending a asynchronous request. ● Switch back to parent Fiber(for scheduling other fibers) ● Resume the saved Fiber after asynchonous request completes.

Slide 13

Slide 13 text

No content

Slide 14

Slide 14 text

More ● Fiber aware ConnectionPool with sync/async query support ● Fiber aware Iterator to allow concurrency control & mixing of sync / async ● Fiber aware async inline support: turns any async function into sync ● Fiber aware Multi-request interface for any callback enabled clients ● Fiber aware TCPSocket replacement, powered by EventMachine ● Fiber aware Thread, Mutex, ConditionVariable clases ● Fiber aware sleep, defer, system

Slide 15

Slide 15 text

High-concurrency Framework using em-synchrony ● Goliath ● Sinatra-synchrony

Slide 16

Slide 16 text

Em-Synchrony: The Bad Parts ● You must use a customized fiber aware driver for asynchronous tasks. (em-mysql em-redis ...)

Slide 17

Slide 17 text

Suitable for Web Service APIs

Slide 18

Slide 18 text

Asynchronous Rails

Slide 19

Slide 19 text

You need ● Em-synchrony ● Rack-fiber_pool ● Config.threadsafe! ● Thin(evented server) ● Fiber aware driver for (db/http/service) connections

Slide 20

Slide 20 text

Gemfile

Slide 21

Slide 21 text

Config.ru

Slide 22

Slide 22 text

Application.rb

Slide 23

Slide 23 text

Database.yml

Slide 24

Slide 24 text

Use Ruby 2.0 Ruby 1.9 4k Fiber stack size. Too small to fit common Rails app. Ruby 2.0 has 200k default Fiber stack size. And you can change it via:

Slide 25

Slide 25 text

Thank you