Realtime Search 罗磊
Reference A Billion Queries Per Day  Bigtable: A Distributed Sorage System for Structured Data Large-scale Incremental Processing Using Distributed Transactions and Notifications
Realtime Search @ Twitter
 
 
Posting list format and early query terminal Only evaluate as few documents as possible before terminating the query Rank documents in reverse time order (newest documents first)
 
 
 
 
 
 
Index memory model
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Lock-free algorithms and  data structures
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Realtime Search @ Twitter Q & A
Realtime Search @ Google
Arguement about MapReduce  MapReduce: A major step backwards MapReduce and Parallel DBMSs: Friend or Foe MapReduce: A Flexible Data Processing Tool
Google's realtime search Google's indexing system stores tens of petabytes of data and processes billions of updates per day on thousands of machines. MapReduce and other batch-processing systems cannot process small updates individually as they rely on creating large batches for efficiency.
Avoid indexes duplicates MapReduce can't deal with any update MapReduce must be run again over the entire repository
Where to store index at Google DBMS Can't handle the sheer volume of data: Google's indexing System store tens of petabytes across thousands of machines. Bigtable Can't provide tools to help programmers maintain data invariants in the face of concurrent updates
Percolator Incremental processing model it maintains a very large repository of documents and update it efficiently Processing many updates concurrently
Percolator Percolator provides two main abstractions for performing incremental processing at large scale:  ACID transactions over a random-access repository observers, a way to organize an incremental computation
Percolator
Transaction is a must
Transaction is a must
Transaction is a must
Transcation on Percolar
Transcation on Percolar
Transcation on Percolar
Transcation on Percolar
Transcation on Percolar
Transcation on Percolar Transcation processing is complicated by the possibility of client failure table server failure does not affect the system since Bigtable guarantees that written locks persist across talbe server failures A transaction will not clean up a lock unless it suspects that a lock belongs to a dead or stuck worker
Notifications Transactions let the user mutate the table while maintaining invariants, but users also need a way to trigger and run the transactions To provide notifications, Percolator maintans a special "observation" column.
Optimization Reduce RPC batching when reading from the same table server Hacking on Linux kernel to support high thread counts
Evaluation
Evalution
Realtime Search @ Google Q & A
Realtime Search  Realtime Search @ Twitter Realtime Search @ Google Thank you

Realtime search