Python, async web frameworks, and MongoDBPresentation Transcript
Python, MongoDB, andasynchronous web frameworks A. Jesse Jiryu Davis jesse@10gen.com emptysquare.net
Agenda• Talk about web services in a really dumb (“abstract”?) way• Explain when we need async web servers• Why is async hard?• What is Tornado and how does it work?• Why am I writing a new PyMongo wrapper to work with Tornado?• How does my wrapper work?
CPU-bound web service Client Server socket• No need for async• Just spawn one process per core
Normal web service Backend Client Server (DB, web service, socket socket SAN, …)• Assume backend is unbounded• Service is bound by: • Context-switching overhead • Memory!
What’s async for?• Minimize resources per connection• I.e., wait for backend as cheaply as possible
CPU- vs. Memory-boundCrypto Most web services? Chat •CPU-bound Memory-bound
HTTP long-polling (“COMET”)• E.g., chat server• Async’s killer app• Short-polling is CPU-bound: tradeoff between latency and load• Long-polling is memory bound• “C10K problem”: kegel.com/c10k.html• Tornado was invented for this
Why is async hard to code?Client Server Backend request requesttime store state response response
Ways to store state this slide is in beta MultithreadingMemory per connection Greenlets / Gevent Tornado, Node.js Coding difficulty
What’s a greenlet?• A.K.A. “green threads”• A feature of Stackless Python, packaged as a module for standard Python• Greenlet stacks are stored on heap, copied to / from OS stack on resume / pause• Cooperative• Memory-efficient
Threads: State stored on OS stacks# pseudo-Pythonsock = listen()request = parse_http(sock.recv())mongo_data = db.collection.find()response = format_response(mongo_data)sock.sendall(response)
Gevent: State stored on greenlet stacks# pseudo-Pythonimport gevent.monkey; monkey.patch_all()sock = listen()request = parse_http(sock.recv())mongo_data = db.collection.find()response = format_response(mongo_data)sock.sendall(response)
Tornado: State stored in RequestHandlerclass MainHandler(tornado.web.RequestHandler): @tornado.web.asynchronous def get(self): AsyncHTTPClient().fetch( "http://example.com", callback=self.on_response) def on_response(self, response): formatted = format_response(response) self.write(formatted) self.finish()
Tornado IOLoopclass IOLoop(object): def add_handler(self, fd, handler, events): self._handlers[fd] = handler # _impl is epoll or kqueue or ... self._impl.register(fd, events) def start(self): while True: event_pairs = self._impl.poll() for fd, events in event_pairs: self._handlers[fd](fd, events)
Python, MongoDB, & concurrency• Threads work great with pymongo• Gevent works great with pymongo – monkey.patch_socket(); monkey.patch_thread()• Tornado works so-so – asyncmongo • No replica sets, only first batch, no SON manipulators, no document classes, … – pymongo • OK if all your queries are fast • Use extra Tornado processes
Introducing: “Motor”• Mongo + Tornado• Experimental• Might be official in a few months• Uses Tornado IOLoop and IOStream• Presents standard Tornado callback API• Stores state internally with greenlets• github.com/ajdavis/mongo-python-driver/tree/tornado_async
Motor internals: wrapperclass MotorCollection(object): def insert(self, *args, **kwargs): callback = kwargs[callback] 1 del kwargs[callback] kwargs[safe] = True def call_insert(): # Runs on child greenlet result, error = None, None try: sync_insert = self.sync_collection.insert 3 result = sync_insert(*args, **kwargs) except Exception, e: error = e # Schedule the callback to be run on the main greenlet tornado.ioloop.IOLoop.instance().add_callback( lambda: callback(result, error) 8 ) # Start child greenlet 2 greenlet.greenlet(call_insert).switch() 6 return
Motor internals: fake socketclass MotorSocket(object): def __init__(self, socket): # Makes socket non-blocking self.stream = tornado.iostream.IOStream(socket) def sendall(self, data): child_gr = greenlet.getcurrent() # This is run by IOLoop on the main greenlet # when data has been sent; # switch back to child to continue processing def sendall_callback(): child_gr.switch() 7 self.stream.write(data, callback=sendall_callback) 4 # Resume main greenlet child_gr.parent.switch() 5
Motor• Shows a general method for asynchronizing synchronous network APIs in Python• Who wants to try it with MySQL? Thrift?• (Bonus round: resynchronizing Motor for testing)
Questions? A. Jesse Jiryu Davis jesse@10gen.com emptysquare.net(10gen is hiring, of course: 10gen.com/careers)
Let LinkedIn power your SlideShare experience
+
Let LinkedIn power your SlideShare experience
Customize SlideShare content based on your interests
We will import your LinkedIn profile and you will be visible on SlideShare.
Keep up to date when your LinkedIn contacts post on SlideShare