Online aggregation

From HandWiki

Online aggregation is a technique for improving the interactive behavior of database systems processing expensive analytical queries. Almost all database operations are performed in batch mode, i.e. the user issues a query and waits till the database has finished processing the entire query. On the contrary, using online aggregation, the user gets estimates of an aggregate query in an online fashion as soon as the query is issued. For example, if the final answer is 1000, after k seconds, the user gets the estimates in form of a confidence interval like [990, 1020] with 95% probability. This confidence keeps on shrinking as the system gets more and more samples. Online aggregation was proposed in 1997 by Hellerstein, Haas and Wang[1] for group-by aggregation queries over a single table. Later, the authors showed how to evaluate joins in an online fashion.[2] In 2007, Jermaine et al. designed and implemented a prototype database system called Database-Online (or DBO) that computes group-by aggregate query over multiple tables in an online and more importantly in a scalable fashion.[3] All the approaches for online aggregation use random sampling, which is non-trivial in a distributed environment due to inspection paradox of renewal reward theory. In 2011, Pansare et al. proposed a Bayesian model to deal with the inspection paradox and implemented online aggregation for a MapReduce-like environment.[4]

References

  1. Hellerstein, Joseph M.; Haas, Peter J.; Wang, Helen J. (June 1997). "Online aggregation". SIGMOD Rec. 26 (2): 171–182. doi:10.1145/253262.253291. 
  2. Haas, Peter; Hellerstein, Joseph M. (June 1999). "Ripple joins for online aggregation". SIGMOD Rec. 28 (2): 287–298. doi:10.1145/304181.304208. 
  3. Jermaine, Chris; Arumugam, Subramanian; Pol, Abhijit; Dobra, Alin (2007). "Scalable approximate query processing with the DBO engine". Proceedings of the 2007 ACM SIGMOD international conference on Management of data. 725–736. doi:10.1145/1247480.1247560. ISBN 9781595936868. 
  4. Pansare, Niketan; Borkar, Vinayak; Jermaine, Chris; Condie, Tyson (August 2011). "Online Aggregation for Large MapReduce Jobs". VLDB. http://www.cs.rice.edu/~np6/Papers/OnlineAggregationForLargeMapReduceJobs.pdf.