New England Database Day Papers for Presentation
List of accepted papers:
- Brian Berenbach. Requirements Engineering Databases: The Good, The Bad and the Ugly. Click to show abstract.
Requirements engineering databases are used throughout industry to store and manage requirements for new and existing products. The requirements engineering program at Siemens Corporate Research (SCR) has provided training, mentoring and consulting services to nearly every operating company at Siemens, working in healthcare, automation, transportation and the automotive sectors. We have worked on projects with requirements databases with up to 30 gigabytes or more of stored material; projects with over 30 thousand requirements. To date, the available commercial databases have not kept pace with the needs of industry; Siemens organizations have struggled with defining and managing requirements and the generation of documentation using tools that are in many cases inadequate, improperly configured, or simply do not work. In this talk I will discuss our experiences using commercial requirements engineering databases, describe the deficiencies of the databases in the market place, and suggest what functionality the databases need to have in the short and long term to remain viable. [PDF]
- Liuba Shrira and Ross Shaull and Hao Xu. Split Snapshots: A New Approach to Old State Storage. Click to show abstract.
Time-travel (in a database) is an old "holy grail" problem.
Many solutions have been explored but current approaches have limitations.
The temporal database approach that captures logical states is complex.
The file system snapshot approach has a high performance penalty.
These limitations have proven a ``showstopper'' to making
time-travel available to general applications in mainstream databases.
We will describe a novel simple and efficient approach that paves the way
to providing time-travel in general databases.
[PDF]
- Gerome Miklau. Managing Historical Retention in Database Systems. Click to show abstract.
Databases that preserve a historical record of operations and data
offer the important benefit of system accountability: past events can
be analyzed to detect breaches and maintain data quality. But the
retention of history can also pose a threat to privacy. System
designers need to carefully balance the need for privacy and
accountability by controlling how and when data is retained by the
system, and who will be able to recover and analyze it. These issues are often embodied by retention policies (either established by an institution, or mandated by privacy regulations) which specify how long data of certain types should be retained. Unfortunately, database systems are not well-equipped to enforce retention policies and balance this need with system accountability. [PDF]
- Yanlei Diao, Jagrati Agrawal, Daniel Gyllstrom, Neil Immerman. SASE+: Expressing and Evaluating Complex Event Patterns over Streams. Click to show abstract.
Complex event processing (CEP) is finding application in a growing number of stream environments such as financial services, RFID-based supply chain management, and electronic health systems. As information needs of these applications evolve, there is an increasing demand of event processing involving filtering, correlation, and sophisticated pattern matching. To support such processing, a mainstream approach has been to use selection-join-aggregation queries over streams. This approach has limitations in expressing complex event patterns as well as performance constraints.
In this talk, I present our ongoing research on complex event processing that explores a new processing paradigm grounded in automata and complexity theory while leveraging relational processing. Our research has focused on the development of a foundation for CEP including a compact event language, its theoretical underpinnings, and its efficient implementation.
Our event language, SASE+, offers rich constructs for specifying complex event patterns including sequencing, negation, Kleene closure, and complex predicates in addition to standard stream processing features. While various subsets of SASE+ can be expressed in recent SQL-based stream languages and standard logic such as the temporal logic, the field of CEP lacks a thorough understanding of what constitutes a minimum effective language for CEP and how various languages relate to each other. In our research, we characterize the expressive power of SASE+ and its relationships to various related languages. Results of this study provide insights into several key questions: (i) Why can’t existing languages express the desired event patterns? (ii) What are the connections between independently developed event systems? (iii) What optimizations are possible for queries with various complexities?
We also develop fundamental mechanisms for implementing SASE+ over event streams. Departing from the conventional wisdom (e.g., using joins) for stream processing, our event system employs automata-based query plans: it uses automata-based sequence operators to read event sequences efficiently from continuously arriving events, and feeds these event sequences to the subsequent relational-style operators. Our system further applies compile-time and runtime optimizations for high-performance processing. The most challenging issue is to manage simultaneous runs of a query automaton, which naturally exist for most queries. To achieve efficiency, our system shares both storage and processing among multiple runs. To reduce memory usage, it uses new data structures for compact encoding of complete and partial results and shares such encoding across runs. It further merges runs based on their computation state, whenever possible, to avoid repeated work.
We have implemented SASE+ in a Java-based prototype system. Results of our performance study show that our automata-based query plans are highly efficient, offering throughput of tens of thousands of events per second for expensive queries and even higher throughput for cheaper queries. In particular, sharing in query evaluation can offer performance improvements of up to 200% for those expensive queries. Our results also show that automata-based plans provide much better scalability than join-based implementations that many existing stream systems use to support simple event patterns.
[PDF]
- Daniel Abadi. A Column-Store is a Column-Store is a Column-Store. Or is it?. Click to show abstract.
Due to their I/O efficiency on read queries, column-stores have long been known to perform well on read-mostly data warehouse workloads. There has been a lot of work that experimentally and analytically compares the performance of column-stores and row-stores. In general, this work validates the prediction that column-stores should outperform row-stores on data warehouse workloads. However, this body of work does not agree on the magnitude of relative performance. This magnitude ranges from only small differences in performance, to two orders of magnitude performance difference. In this talk, I will show that a major reason for this disagreement in performance difference is that there are multiple approaches to building a column-store. I then classify these multiple approaches into three general categories and describe an implementation of a column-store using each category. Performance of these different implementations are then compared, and indeed, large performance differences are observed. I will then explain the reasons why not all column-stores are created equal. [PDF]
- John Corwin, Avi Silberschatz. NanoDB: A microkernel-based database system. Click to show abstract.
We have recently seen how specialized database engines can offer orders
of magnitude greater performance than traditional database engines when
designed for particular applications. New database engines such as
C-store, H-store, and Chunky-store have recently been proposed and
implemented, each having domain of applications in which they perform well.
Current database engines, including both traditional, one-size-fits-all
engines and specialized engines have developed using a monolithic
design. While a database engine may be designed for extensibility in
particular areas such as replaceable indexing methods or user-extensible
data types, changes to other aspects of the system require vast
re-architecting of the system's code base. Specifically, we have
observed that the research community tends to
develop completely new database engines in order to
implement and evaluate new algorithms or storage mechanisms
instead of modifying existing open-source engines such as PostgreSQL
or MySQL. Our own experience with extending PostgreSQL provides some
insight as to why this is the case -- these systems simply were not
designed with this type of flexibility in mind.
In this talk I will present our work on NanoDB, a new microkernel-based
relational database engine. A microkernel based system consists of a
small kernel plus a number of modules that implement the major
functionally of the system. Such a design allows for much greater
flexibility when designing multiple systems -- modules may be added,
configured, and exchanged to modify the functionality of the system.
NanoDB uses a microkernel architecture to implement a declarative method of
constructing a database engine
that can easily be reconfigured to support a variety of target applications.
[PDF]
- Ryan Johnson. Taming Shared Work To Maximize Query Throughput. Click to show abstract.
This talk will summarize my work on maximizing query throughput by taking advantage of work sharing. [PDF]
- Stavros Harizopoulos. Designing a Next-generation OLTP Engine. Click to show abstract.
Today's enterprise information management infrastructure can be viewed as a supply chain with four major components. Business events are first captured by the Online Transaction Processing (OLTP) system; subsequently that information is periodically sent to the Extract-Transform-Load (ETL) engine which loads the data to the Enterprise Data Warehouse (EDW); Business Intelligence Applications (BIA) extract data for analysis to guide business decisions. Increased costs of ownership and complexity in system management, coupled with the need of reducing the latency between a business event and a business action, open the door to the idea of a unified single platform that combines all four components of enterprise information management. Operating under the same roof, besides the obvious benefits in cost reductions, allows system designers to perform end-to-end optimizations, providing higher overall performance, and supporting new capabilities that are not possible in the component-based architecture. In such a unified platform, designing a high-performance OLTP kernel with minimal resource utilization is crucial.
[PDF]
|