Review for Paper: 2-Anatomy of a Database System

Review 1

This work introduces some core architectural considerations for a Database Management System(DBMS). Included aspects are process model, storage model, query processor, and concurrency control/recovery.

- For the process model, the paper introduces process per connection, server process, and server+I/O process models. Different models differ in how commands are dispatched and responded, how processes/threads are utilized to execute commands, and how DBMS threads are mapped to OS processes/threads.

- For the memory model, the paper introduces shared memory, shared nothing, shared disk, and NUMA architectures. Different architectures imply different physical allocation and access speed of RAM/disk, and different failure handling needs.

- For storage, DBMS can either interact directly with the device drivers for the disks (which yields higher performance) or use OS file system (which sacrifices some performance, but is convenient and more widely used).

- For the query processor, the paper introduces query parsing/rewriting/optimization, query executor and iterator, and index access methods.

- For concurrency control, the paper introduces how locks and latches work in DBMS, the Write-Ahead-Logging protocol, and crash recovery for both index and physical structures.

In general, this paper provides detailed and clear explanations of different DBMS components, and the performance/correctness results of different design choices. One drawback is, it can include more example scenarios when introducing some concepts such as b+ tree manipulations.


Review 2

This paper captured the architectural fundamentals for supporting core relational features, and discussed extensions present in modern RDBMSs. Although database systems pioneered in various fields, lessons of database systems architecture are not widely known in both academia and software industry. Besides, In database systems, relational database systems serve as a well-understood point of reference for new extensions and revolutions that may arise in the future. Therefore, the paper aimed to use architectural aspects of RDBMSs to further understand modern databases and provide useful context for the algorithms and techniques in the standard literature as well as for system design.

The paper covered following topics:

1. Process Models and Hardware Architectures:
Based on two assumptions: (1)High-performance OS threads; (2)Uniprocessor Hardware, Three simplified process models for DBMS are:
(1)Process per Connection model: This model is easy to implement in UNIX- like systems, but does bad in performance and scalability.
(2)Server process model: This model offers high efficiency, but is more complex and has no OS protection for thread memories and pointers, debugging is tricky, and software is barely portable across OS.
(3)Server Process + I/O Processes: This model needs asynchronous I/O support from OS, and additional I/O Processes to work for older OS versions to avoid limited system throughput and per-transaction latency.
Data is passed across threads or processes using buffers: (1)Disk I/O buffers handle DB I/O requests and log I/O requests. (2) Client communication buffers are used for clients to consume results.

When the performance of OS thread is not high, many commercial DBMSs provide their own lightweight, logical thread facility at application level. Each DBMS thread is programmed to manage its own state, to do all slow activities (e.g. I/Os) via non-blocking, asynchronous interfaces, and to frequently yield control to a scheduling routine (another DBMS thread) that dispatches among these tasks. First model is there are DBMS threads and OS processes but no OS threads. The next evolution is mapping DBMS threads into OS threads rather than OS processes, which is relatively easy to code, and leverages the code investment in efficient DBMS threads, minimizing the dependency on high-end multithreading in the OS. Then DBMS threads are mapped to a smaller set of “dispatchable units”, which can be different across OS platforms.

When we have platforms with multiple CPUs, then process models are: (1)Models for shared memory machines, which have high accessibility. (2)Models for shared-nothing parallel machine, which excel on price-performance for running complex queries on very large databases, but provide no hardware sharing abstractions, leaving coordination of the various machines entirely in the hands of the DBMS. (3)Models for shared disk, which have good usability and reliability, but rely on storage nodes. (4) NUMA architectures: which have non-uniformity in memory access.

To supporting multiple concurrent requests better, any good multi-user system has an admission control policy.

2. Storage models
For storage purpose, DBMS can interact directly with the device drivers for the disks, or can use the typical OS file system facilities.
For spatial control, basically we have two ways:
(1)issue low-level storage requests directly to the “raw” disk device interface. This is effective but have drawbacks.
(2)create a very large file in the OS file system, and then manage positioning of data in the offsets of that file. This method has reasonably good performance.
For temporal control, we can use buffering. The problems of using file systems are about correctness of the database, performance and “double buffering” and the extreme CPU overhead of memory copies.
For buffer management, DBMSs implement shared buffer pool, organized as array of frames, with another array of metadata called a page table. Research has shown OS page replacement schemes perform poorly for database queries. Therefore, most systems use simple enhancements to LRU schemes or have a the replacement policy depend on the page type.

Modern filesystems now offer reasonable spatial and temporal control to the DBMS but raw disk support remains a common high-performance option in most database systems.

3. Query processor
Given an SQL statement, the parser will check that the query is correctly specified, to convert it into an internal format, and to check that the user is authorized to execute the query.
Query rewrite is related to simplifying and optimizing the query, which contains (1) View rewriting (2)Constant arithmetic evaluation (3) Logical rewriting of predicates (4)Semantic optimization (5)Subquery flattening and other heuristic rewrites.
Given an internal representation of a query, query optimizer will produce an efficient query plan for executing the query. There are also other extensions in plan space, selectivity estimation, search algorithms, parallelism, extensibility and auto-tuning.
Query executor is given a fully-specified query plan, which is a fixed, directed dataflow graph connecting operators that encapsulate base-table access and various query execution algorithms.
For data modification statements, to deal with both querying and modifying the same data, an inefficient way is to have query optimizer choose plans that avoid indexes on the updated column. Better plan is to use a batch read-then-write scheme.
Access methods provide basic iterator API, and they have deep interactions with the concurrency and recovery logic surrounding transactions.

4. Transactions: Concurrency Control and Recovery
Three main aspects of a transactional storage system(concurrency control, recovery management, and access methods) have interdependencies in between. So it is not easy to identify narrow APIs between these modules, and allow the implementation behind those APIs to be swappable. Besides, concurrency control in access methods has been well-developed only for locking- oriented schemes. Therefore, it is unlikely that one can mix and match different concurrency mechanisms for a given access method implementation. And recovery logic in access methods is particularly system-specific. Notice that buffer management is relatively well-isolated from the rest of the components of the storage manager, but will cause much complexity in concurrency and recovery.

The paper helps reader get a better understanding combining the DBMSs and hardware architecture, and analyzed how the lower layer of computer executes the query from the upper software layer.

The main drawback of this paper is that it focused too much on different types of hardware, basically what we would like to do is to develop a DBMSs for general purpose, which means we would like the DBMSs to be extensible. But the paper did not give a solution to this problem.



This paper captured the architectural fundamentals for supporting core relational features, and discussed extensions present in modern RDBMSs. Although database systems pioneered in various fields, lessons of database systems architecture are not widely known in both academia and software industry. Besides, In database systems, relational database systems serve as a well-understood point of reference for new extensions and revolutions that may arise in the future. Therefore, the paper aimed to use architectural aspects of RDBMSs to further understand modern databases and provide useful context for the algorithms and techniques in the standard literature as well as for system design.

The paper covered following topics:

1. Process Models and Hardware Architectures:
Based on two assumptions: (1)High-performance OS threads; (2)Uniprocessor Hardware, Three simplified process models for DBMS are:
(1)Process per Connection model: This model is easy to implement in UNIX- like systems, but does bad in performance and scalability.
(2)Server process model: This model offers high efficiency, but is more complex and has no OS protection for thread memories and pointers, debugging is tricky, and software is barely portable across OS.
(3)Server Process + I/O Processes: This model needs asynchronous I/O support from OS, and additional I/O Processes to work for older OS versions to avoid limited system throughput and per-transaction latency.
Data is passed across threads or processes using buffers: (1)Disk I/O buffers handle DB I/O requests and log I/O requests. (2) Client communication buffers are used for clients to consume results.

When the performance of OS thread is not high, many commercial DBMSs provide their own lightweight, logical thread facility at application level. Each DBMS thread is programmed to manage its own state, to do all slow activities (e.g. I/Os) via non-blocking, asynchronous interfaces, and to frequently yield control to a scheduling routine (another DBMS thread) that dispatches among these tasks. First model is there are DBMS threads and OS processes but no OS threads. The next evolution is mapping DBMS threads into OS threads rather than OS processes, which is relatively easy to code, and leverages the code investment in efficient DBMS threads, minimizing the dependency on high-end multithreading in the OS. Then DBMS threads are mapped to a smaller set of “dispatchable units”, which can be different across OS platforms.

When we have platforms with multiple CPUs, then process models are: (1)Models for shared memory machines, which have high accessibility. (2)Models for shared-nothing parallel machine, which excel on price-performance for running complex queries on very large databases, but provide no hardware sharing abstractions, leaving coordination of the various machines entirely in the hands of the DBMS. (3)Models for shared disk, which have good usability and reliability, but rely on storage nodes. (4) NUMA architectures: which have non-uniformity in memory access.

To supporting multiple concurrent requests better, any good multi-user system has an admission control policy.

2. Storage models
For storage purpose, DBMS can interact directly with the device drivers for the disks, or can use the typical OS file system facilities.
For spatial control, basically we have two ways:
(1)issue low-level storage requests directly to the “raw” disk device interface. This is effective but have drawbacks.
(2)create a very large file in the OS file system, and then manage positioning of data in the offsets of that file. This method has reasonably good performance.
For temporal control, we can use buffering. The problems of using file systems are about correctness of the database, performance and “double buffering” and the extreme CPU overhead of memory copies.
For buffer management, DBMSs implement shared buffer pool, organized as array of frames, with another array of metadata called a page table. Research has shown OS page replacement schemes perform poorly for database queries. Therefore, most systems use simple enhancements to LRU schemes or have a the replacement policy depend on the page type.

Modern filesystems now offer reasonable spatial and temporal control to the DBMS but raw disk support remains a common high-performance option in most database systems.

3. Query processor
Given an SQL statement, the parser will check that the query is correctly specified, to convert it into an internal format, and to check that the user is authorized to execute the query.
Query rewrite is related to simplifying and optimizing the query, which contains (1) View rewriting (2)Constant arithmetic evaluation (3) Logical rewriting of predicates (4)Semantic optimization (5)Subquery flattening and other heuristic rewrites.
Given an internal representation of a query, query optimizer will produce an efficient query plan for executing the query. There are also other extensions in plan space, selectivity estimation, search algorithms, parallelism, extensibility and auto-tuning.
Query executor is given a fully-specified query plan, which is a fixed, directed dataflow graph connecting operators that encapsulate base-table access and various query execution algorithms.
For data modification statements, to deal with both querying and modifying the same data, an inefficient way is to have query optimizer choose plans that avoid indexes on the updated column. Better plan is to use a batch read-then-write scheme.
Access methods provide basic iterator API, and they have deep interactions with the concurrency and recovery logic surrounding transactions.

4. Transactions: Concurrency Control and Recovery
Three main aspects of a transactional storage system(concurrency control, recovery management, and access methods) have interdependencies in between. So it is not easy to identify narrow APIs between these modules, and allow the implementation behind those APIs to be swappable. Besides, concurrency control in access methods has been well-developed only for locking- oriented schemes. Therefore, it is unlikely that one can mix and match different concurrency mechanisms for a given access method implementation. And recovery logic in access methods is particularly system-specific. Notice that buffer management is relatively well-isolated from the rest of the components of the storage manager, but will cause much complexity in concurrency and recovery.

The paper helps reader get a better understanding combining the DBMSs and hardware architecture, and analyzed how the lower layer of computer executes the query from the upper software layer.

The main drawback of this paper is that it focused too much on different types of hardware, basically what we would like to do is to develop a DBMSs for general purpose, which means we would like the DBMSs to be extensible. But the paper did not give a solution to this problem.


Review 3

I hoe this time works


Testing 123


Review 4

Database management systems (DBMS) were one of the earliest examples of successful, widely adopted software applications, and they have become an integral part of everyday life. Unfortunately, despite their prevalence and continued active research in the field, domain specific knowledge on system architecture and lessons learned still lag behind both in academia and certain industry sectors, according to Joseph Hellerstein and Michael Stonebraker. As a result, they claim that architectural solutions for many high-end database systems are often reinvented independently. Additionally, Hellerstein and Stonebraker state that this deficiency is due in large part to the lack of communication and education on system architecture for industrial scale database systems. Since the market can only support a few commercial grade DBMS implementations at a time, only a small number of people are actively involved in the design and implementation of these systems. Also, academia tends to focus on algorithmic and theoretical issues, which are easier to teach, rather than on the system architecture considerations in actual implementations. In an attempt to address this gap of knowledge, Hellerstein and Stonebraker authored “Anatomy of a Database System” which seeks to teach readers more about system design for databases that are not typically discussed in standard textbooks.

The sections of this paper essentially read like a textbook, which is understandable given the goals that the authors set out to accomplish. It covers many of the components used in implementing a large DBMS, as well as aspects that designers have to consider. These include the process manager, various storage models, the query processor, and concurrency control and recovery for performing transactions. The paper goes further in depth on each of these items. For example, they describe various types of hardware architectures such as the shared memory model, in which processors all access the same disk and RAM, the shared nothing model, where each processor/machine has its own memory and disk and communicates over a high speed network interconnect with other machines, and the shared disk model, in which each processor has its own RAM but shares the same disk with each other. As with all things in life, there are advantages with each model, such as the scalability of shared nothing, and the relative simplicity of shared disk (since tables do not need to be partitioned across machines). The rest of the paper addresses the previously mentioned topics in great detail.

The main strength of this paper is the level of detail that the authors use in addressing the various subjects that they brought up. Since its goal is to be instructive, it does not present original research, which is not a problem in this context. The paper is both detail-rich and quite readable, which is a good combination. I found the integration of this system architecture knowledge with a discussion of various commercial systems being sold by Microsoft, Oracle, and IBM, among others, to be especially unique among treatments of this topic. At the same time, I believe they managed to avoid turning the paper into a manual; after all, the field can be so broad and deep that they could have written so much more writing about each minutia. As it stands, however, it fulfills its role of serving as a semi-broad overview on system design issues quite well.

One of the areas where I think could be improved is in addressing the newer trends in DBMS system design being worked on in industry or even academia. This would have been useful in helping readers get a rough idea of where the industry is headed, and allow them to continue to follow these trends if they wanted to. This may have been covered in later sections in the paper that were not included in the provided file (which abruptly stops at Section 6). While this does run the risk of spending time and energy addressing issues which may be outdated in the future, it would potentially still prove instructive for future readers looking back to analyze why systems did not develop the way that the authors might have predicted. Overall, the paper is still valuable and provides a strong overview on a less-addressed topic: DBMS specific system design.


Review 5

Lee Rutledge
Barzan Mozafari - EECS 584
Anatomy of a Database System - Reading Review

The problem addressed in this paper was an overview of the different parts that make up a database management system (DBMS). This is important for laying a foundation of understanding for building on prior work and knowledge in this field. As the article mentions, a lot of the work done in this field to date was done by a small network of individuals, so this paper aims to introduce that knowledge base at a high level to readers interested in familiarizing themselves (the paper mentions how a lot of the information may be familiar to experts, and I thought it was good at introducing the concepts to someone of my own level of understanding).

In general, the approach of this article is to introduce different components or challenges with those components and then unfold new deeper issues with that challenge. In doing so we incrementally learn the anatomy of the database and the motivation behind different approaches to each design issue. We also look into different optimizations of these parts of the DBMS and the tradeoffs of those design choices. For example, in earlier sections we build a model based on a few assumptions about our system’s OS and hardware resources and later relax those assumptions to handle various models for our DBMS. We would then unravel new issues like storage management as we addressed previously mentioned issues like process models.

I thought the main strength of this paper was how it was organized in a consistent way. I could detect the pattern of outlining what the following section would introduce or analyze, followed by an in-depth look at the aforementioned content, followed by a summary or reference to a future section that would look even deeper at that content. For example in section 5.2.1 we looked at the four levels of isolation and after this list, the author suggests that the third level appears to offer full serializability, which he immediately provides a counterexample to, at a high level. He then references a future section where that explanation would be analyzed further. Expanding on this, I also liked how it would preview information throughout to provide some context and purpose for the information before later digging deeper into that topic.

I thought the main drawback of this article was how there was a bit of separation between the introduction of a component or design challenge and the full analysis of it. I understand that there was a need to explore one depth of the system at a time before diving completely down one component, but I felt at times that I had to think back a few sections of the paper to pick up where I left off in trying to understand concepts especially around the section mentioned above with transactions (locking, latching, etc.).



Review 6

In the paper, Anatomy of Database System, the author provided a overall introduction to modern database architecture. The author wanted the readers to learn the lessons of main architecture of modern database system, which is not boardly learnt previously. The focus of this paper will not be on the implementation details but the overall system design.
The reason why author write this paper is that people in academic always focus on the theoretical aspects of the database problem but not the computer architecture and some real aspects of database. And also because that the community of database architecture is fairly small.
There are four main parts of a modern database, a process manager, a query processing engine, a transactional storage system and shared utility.

As for process model, there are many design choices, the paper mainly talked about three of them, process per user, Server process and server Process +I/O Process. The author also introduced three parallel architecture, shared nothing, shared memory or shared disk. The author also introduced several storage models and point out that people often ignore that memory copy is also expensive.

As for Query processor, it will serve several functionality, including, parsing, checking the correctness permission of the query. Rewrite the query for performance goal and generate the internal representation. The discussion on optimizer mainly falls on whether do auto tuning. Access methods and executor are also discussed.
As for transactions, locks are for concurrency control and logs are for recovery. The ACID is widely known as Atomicity, Consistency, Isolation and Durability. The author then explain how acid is achieved and discuss lock and log in depth.


The mainly contribution of this paper is that the author provided systematic knowledge about database architecture that cannot be learnt from textbook and corrected some misunderstanding of database architecture. Also, the author combined the knowledge of computer architecture and database system in this paper to let the reader understand deeper that why things works this way. Moreover, this paper elaborate everything systematically including theories, industry practices and tradeoff between those methods.

As for the weak point of this paper, the author did not give reader a full big picture of how a modern database system works from bottom to top, readers might be lose in the detail contents. Also, for this kind of high level architecture paper, I think the author goes too deep into implementation details of some methods like iterators or lock.



Review 7

The paper describes in some detail how database systems work, from the lower level hardware and server setup all the way to transaction management. Along the way, it also covers storage models and query processing. The paper aims to build on an introductory textbook knowledge of relational database architecture. It covers the basics as a review, then goes into more depth, covering historical context and filling in some gaps. In particular, some interesting themes that the paper explores are the parallel evolution of DBMSs and OSs and the relationship between research and industrial database solutions.

It is interesting to consider how DBMSs have evolved around (and with) operating systems. As fields of research, I found myself wondering how much collaboration there was, especially early on. In the design of threads, etc., it seemed as though tight collaboration could have prevented a lot of work on the database side.

The paper also did well conveying the intriguing relationship between database researchers and commercial solutions. It seemed as though the authors had some distaste for what had been done in industry. On page 24, they say “the heuristics used in commercial systems tend to be proprietary, and (if rumors are to be believed) do not resemble the randomized query optimization literature. An educational exercise is to examine the query ‘optimizer’ of the open-source MySQL engine, which (at last check) is entirely heuristic and relies mostly on exploiting indexes and key/foreign-key constraints,” which gives the reader the idea that they are not impressed with how industry has adopted the research, particularly the open source community.

Based on a quick web search, I believe that this paper was published in 2007. I’d be curious to see how section 2 has changed in the “amazon age” of commodity hardware. I would like to know how companies would typically choose to deploy MySQL or other open source solutions on AWS - which types of parallel machines have prevailed? I also think that the role of a DBA that the paper mentions could be different now. With solutions like amazon RDS and Aurora, I am under the impression that small startups in particular can avoid hiring a DBA entirely. I believe, from my time in industry, that horizontal partitioning is still quite prevalent, but I wonder if despite growing data sizes, this might have become less popular with the release of Amazon Aurora and the (possible) lack of DBA support. For these reasons and more, I think a revamp of this paper would be really interesting to read!


Review 8

Problem Addressed & Why it is so important:
The author gives a lesson of the main components of the modern relational database architecture in the paper. The RDBMS is divided into 4 basic components according to the author, process manager, query engine, shared transactional storage subsystem and shared utilities. The PDF provided by professor only covers the first 3 components. This problem is important because although DBMS is widely used in nearly all industries, the architecture of DBMS is not widely known and the community is fairly small. The academic focus on DBMS architecture is more on theoretical and algorithmic issues rather than implementation details. This paper covers many of the implementation details of the modern RDBMS to help readers learn more about it’s internal design.

Main approach:
The author starts from different process models and how they interact with hardware architectures. Starting from uniprocessors, the author introduce the topic about os threads and I/O accross threads. Then he discussed about the relation between DBMS threads and OS processes. Next thing is parallelism models, the share disk, shared memory, and shared nothing are important models under this topic. Last part of this section the author gives some standard practice used by modern DBMS.

Second section is persistent storage models. The author introduced two methods to allocate disk space for faster access and more sequential access for better performance. Another question besides the disk space allocation is the buffering model and buffer management. Correctness and performance are 2 main issues concerned in this part.

Next is the query processor. From a query’s view the author introduced how a query is parsed, rewritten, optimized and compiled into a tree of query executors. Executors are implemented using iterator models. Last topic in this section is access methods which tells us how the system manage to access physical data on disk and the data structure of it.

Last part is about transactions, it covers concurrency and recovery protocol. The overall goal is to implement the “ACID transactions”. With in this section, the author introduced locks and latches, isolation levels and log.

Strength and technical contribution:
This paper covers most components of a RDBMS and introduce the related topics in detail. It gives the read an overview from the overall structure of the system all the way down to some implementation details for correctness and performance. It is a good material to understand how modern relational database is built from scratch.

Drawbacks of the paper:
This paper is more like an detailed introduction or tutorial than a paper. As a tutorial, it does a good job in guiding the readers to learn main components of relational database query optimizer. As a paper, it technical contribution is limited.


Review 9

This paper aims to explain the main architecture of a modern database management system. The authors try to focus on the high-level system design ideas without getting into too many technical details. Another goal is to fill in the gap between topics discussed in textbooks and journal papers.

Process manager is discussed first in the paper. Three different process models are given, each with its own motivations and drawbacks. It’s worth noticing that when light-weighted thread library was not available in the OS, DBMS had to provide its own implementation and takes care of the mapping between DBMS thread and OS process/thread. The design of process manager is further complicated by different hardware architectures(shared memory/nothing/disk) and the needs of admission control to ensure performance.

In terms of storage models, the paper mainly discussed why sometimes DBMS prefers to interact directly with the storage device: 1. get full control over the spatial positioning of data blocks so that data can be accessed sequentially when possible. 2. control the timing of when data pages are written to disks; otherwise, DBMS cannot ensure performance or even correctness.

The discussion of query processor is quite straightforward. The paper goes through each step in the processor:
Parser: parse the SQL statement into an internal format
Check authorization and constraint
Rewriter: simplify and optimize the query
Optimizer: select an efficient query plan
Executor: execute the given query plan

The most complicated part is the discussion about concurrency control and recovery. The paper gives lots of details regarding how the lock manager and latches works, the meaning of different isolation levels, log manager, how locking and logging are different for indexes, etc. As an example, during the discussion of the log manager, the authors provide the WAL protocol and talk about how its further complicated by the “direct, steal/not force” mode for performance concerns.

Overall, this is a great paper for someone who just finished a course in DBMS and wants to understand the architecture of modern DBMS and alternative design of it. However, the paper assumes a deep understanding of operating system and some distributed system knowledge which makes it somewhat difficult to understand, especially the part about concurrency and recovery. It would be better if this paper can omit some fine details (the definition of an iterator, how latches work in a B+ tree, etc.) and just focus on high-level design ideas.



Review 10

In the paper "Anatomy of a Database System", Joseph Hellerstein and Michael Stonebreaker signify what constitutes as the backbone of a database management system. They touch upon several components related to the architecture of relational databases: the process manager, the query processor, and the transaction manager. Like Stonebreaker's earlier paper on the history of database schema, he notes that the community is comprised of a small group - those within this group that implement database systems typically went to the same school and collaborated with each other multiple times. Likewise, the market only supports a handful of competitors and is very firm when deciding to adopt a new schema. Furthermore, academic textbooks usually don't give the full picture; the textbooks leave out architectural issues and typically focus on algorithmic problems. Thus, it becomes apparent that good insight on the inner mechanisms of a database system is needed if they want to expand the elitist group that "monopolizes" databases.

We start with the process manager: a program that uses processes and threads that are provided by the operating system and process configuration provided by the physical hardware in order to comprehend and execute queries. Hellerstein uses a uni-processor model to explain the process model, but in the modern era, we have multiple cores and hence, processes run in parallel. In addition to this, multiple models are discussed: shared memory, shared nothing, shared disk, and NUMA. Shared memory involves multiple processes being able to access a common memory and disk without restrictions. Contrary to this, shared nothing is the opposite. It is multiple processes that can directly communicate with one another but do not have access to the memory/disk. Shared disk is like shared memory, but it only allows processes to access a shared disk. NUMA is an architecture that allows processes to share memory, but at different access times. It is noted that shared nothing is the type that leads to better overall performance when evaluating queries.

We then arrive at the database storage model - a method of communication between the database and OS to manage space. This often becomes a argument between the two where the database management system acts as a child that believes it knows what it wants to do and the os acts as the parent, actively enforcing the rules and preventing violations. Now, the parent will eventually give in to the child's tantrum, but reaches a compromise. In this case, the os grants sub accesses to the database management system for write operations. In modern times, it is common for the os to reserve space for the database management system and allow it to do whatever it wants in that region of space. Lastly, the query processor checks the queries for inconsistencies in logic and redundancy in order to create an optimized plan to execute. The optimizer (which is a hard job) expands several routes that one could take to run the query and uses cost estimation techniques to select the most appropriate one for the job.

One drawback of the paper is the tone that it takes when discussing vital parts of architecture. Hellersteins says that the majority of information of database management systems are in manuals, a very informative but unappealing way of presenting such information. Yet, he takes the same approach as a manual/textbook approach with emphasis on knowing everything about databases systems - something that is just not feasible. Humans work through specialties - we have so much information at our disposal but don't actually need to absorb irrelevant information.


Review 11

This paper gives a comprehensive overview of database management system(using the most mature ones as example: relational database management system). The paper gives analysis from these perspective: 1) Operating system that give processes to handle the different tasks in DBMS. 2) a statement-at-a-time query processing engine 3)shared transactional storage subsystem that glued storage, buffer management, concurrency control and recovery 4)memory management, disk space management, replication, and various batch utilities. Overall, The paper talks about database management system form hardware, storage models, query processes and transactions.

Hardware: Under of the assumptions of high-performance OS thread and uniprocessor Hardware, this paper raises several models and analyze their performance: 1)Process per connection: This was the model used in early DBMS implementations on UNIX. It is easy to implement, but not attractive performance and does not scale very well. 2)Server process: it is the architecture which a single multithreaded process hosts all the main activity of the DBMS. However the usual multithreaded programming challenges will arise in this architecture 3)Server Process + I/O Processes: This feature allows the DBMS to issue a read or write request, and work on other things while the disk device works to satisfy the request. But it is hard to be compatible with older OS 4)passing data across threads: it uses various buffers which includes Disk I/O buffers and client communication buffers which has the work ahead behavior. In Parallelism,Process Models, and Memory Coordination section, three different kind of memory system are introduced which are shared memory, shared nothing, and share disk. 1)shared memory means all processors use same chunk of memory(RAM and disk) 2)shared nothing means each chunk of memory is corresponds to one block of processor and different chink of memory communicate over a high-speed network interconnect so that it has unbeatable scalability and cost characteristics. 3) share disk means there are blocks and each block contains one integral memory where all processors can access that memory with same performance. Then this paper also introduces admission control for DBMS and gives us a standard practice.

Storage:there are several aspects in storage models which are spatial control, temporal control and buffer management. For spatial control, the paper stated that Sequential access to disk blocks is between 10 and 100 times faster than random access. Therefore the best way for the DBMS to control spatial locality of its data is to issue low-level storage requests directly to the “raw” disk device interface, since disk device addresses typically correspond closely to physical proximity of storage locations. However there will be some drawbacks go doing this way: 1)it requires the DBA to devote entire disks to the DBMS 2)“raw disk” access interfaces are often OS-specific, which can make the DBMS more difficult to port. For temporal control as buffering, Most OS file systems also provide built-in I/O buffering mechanisms to decide when to do reads and writes of file blocks. However, if he DBMS uses standard file system interfaces for writing, it can cause major problems for the DBMS in 1)correctness of the database 2)performance. For standard practice, the model is to allocate a single large file in the filesystem on each disk, and let the DBMS manage placement of data within that file via interfaces like the mmap suite.

Query Processor: first of all, Query Processor should realize parsing and authorization which includes Syntax checking, ensuring that the user has the appropriate permissions (SELECT/DELETE/INSERT/UPDATE) on the tables in the query, ensuring that any constant expressions in the query do not result in constraint violations. Then the query rewriting is responsible for a number of tasks related to simplifying and optimizing the query, typically without changing its semantics. And the techniques used in rewriting relies only on the query and on metadata in the catalog. The content of it consists of 1)view rewriting 2)constant arithmetic evaluation 3)logical rewriting of predicates 4)semantic optimization 5)Subquery flattening and other heuristic rewrites. Query processor also needs optimizer which ensure that the rewritten query is an efficient query plan for executing the query. The main extensions of the optimization have 1)plan space, 2)selectively estimation, 3)search algorithms, 4)parallelism, 5)extensibility and 6)auto-tuning. After that a query executor is a directed dataflow graph connecting operators that encapsulate base-table access and various query execution algorithms. Nearly all modern query executors uses the iterator model(couple dataflow with control flow):each iterator has a fixed number of tuple descriptors pre-allocated while the actual tuples being referenced are stored in memory.

Transactions: the paper first stated four properties of transactional storage system which are Atomicity, Consistency, Isolation, and Durability. And discuss a few of the interdependencies between the three main aspects of a transactional storage system: concurrency control, recovery management, and access methods. It also introduces log manager and locking in indexes. The log manager is 1)responsible for maintaining the durability of committed transactions. And 2)it uses a Write-Ahead Logging (WAL) protocol in database recovery. 3)Crash recovery performance is greatly enhanced by the presence of database checkpoints.

this paper overall gives me a general idea of how to build a database system, especially for the hardware part which I never thought about before. One thing that maybe the drawbacks is that this paper should give a deeper presentation on designing of the DBMS architecture.


Review 12

The sections of this paper summarize the workings of various DBMS internals. This helps to understand what databases are actually doing, so that they can be built and used effectively.

The paper compares DBMS concurrency gained from multiple processes, multiple OS threads, and multiple DBMS threads. Any DBMS has multiple tasks to achieve simultaneously, so some concurrency is necessary. Multiple processes have built-in protections against interference, but tend to have a large amount of overhead. OS threads aren’t guaranteed to not interfere with each other, but they’re more lightweight. DBMS threads are even more lightweight, but they’re not built into the system by default. It’s possible to generalize this, and to write DBMS code to run through processes or threads as fits any given system.

In addition to the method of concurrency, choices must be made regarding division of memory and interprocess communication. A shared memory system makes memory management easier, while shared-disk is easier to scale, and shared-nothing is extremely easy to scale, with more communication and partitioning required.

As far as disk storage goes, a DBMS has requirements greater than those of most programs. It needs high control over where and when data is written to disk for efficiency and correctness purposes. Usually this can be done by giving the DBMS high control over the disk, or by keeping all DBMS data in a single file.

The DBMS also needs tools for actually running queries. This needs to be able to parse the query, change it into a more useful format, run several optimization steps on it, and then actually execute the query. This can be done by a single DBMS thread.

Finally, a DBMS (usually) needs to be able to implement ACID transactions. One of the ways this is accomplished is using several levels of locks, or the slightly weaker latches. Another tools is an effective logging protocol such as ARIES.

The paper overall gives a very readable overview of various backend tools that a DBMS needs to implement. However, this comes at the cost of the paper not making an overall cohesive point; most of its sections are rather separable. The advantage of being separable means that each of its sections can stand independently. The excerpt of the paper also ends somewhat abruptly, but due to the sectioning, this doesn’t hurt the paper very much.



Review 13

This paper is a systematic introduction of DBMS, discussing topics involving Process models and hardware architecture, Storage models, Query Processor and Transactions: Concurrency control and recovery.
1. In terms of process models, uniprocessor is first introduced on two assumptions: high-performance OS threads and uniprocessor hardware. Modern DBMSs are built using both “Process-per-User” and “Server Process” models; the latter is more complex to implement but allows for higher 
performance in some cases. 
To relax the two assumptions, DBMS Threads and Parallelism are discussed respectively. Some Server Process systems (e.g. Oracle and Informix) implement a DBMS 
thread package, which serves the role taken by OS threads. When this is done, DBMS threads are mapped to a smaller set of “dispatchable units”. In terms of parallel architectures, today’s marketplace supports a mix of Shared-Nothing, Shared-Memory and Shared-Disk architectures. 

2. In addition to the process model, another basic consideration when designing a DBMS is the choice of the persistent storage interface to use. There are basically two options: the DBMS can interact directly with the device drivers for the disks, or the DBMS can use the typical OS file system facilities. The standard usage model is to allocate a single large file in the filesystem on each disk, and let the DBMS manage placement of data within that file via interfaces like the mmap suite. In this configuration, modern filesystems now offer reasonable spatial and temporal control to the DBMS. But raw disk remains a high-performance option in most database systems.
3. Instead of the macro structure of DBMS, the paper then talks about how the DBMS process the SQL query statement. For fundamental functions like SELECT, the whole process should consist of The parser, rewrite engine, optimizer, executor and access methods. Firstly check the syntax and the authorization of the code, then rewrite it into internal representation prepared for optimization. Optimization has some main extensions like plan space, selectivity estimation, search algorithms, parallelism, extensibility and auto-tuning. Depending on whether the optimized data-flow graph is compiled, the executor is functionally different but the main job is to execute the data-flow for real work.
4. The last section mainly talks about the truly monolithic piece of a DBMS: the transactional storage manager, which typically contains four parts: a lock manager for concurrency control, a log manager for recovery, a buffer pool for staging database I/Os, access methods for organizing data on disk. A great deal of ink has been spilled describing the fussy details of transactional storage algorithms and protocols in database systems.



Review 14

This chapter of a book introduces the main components that support database management system. The topics included in the chapter is very broad and high level. It starts off by talking about process models and hardware architectures, then brings up the issues that macro-architectural and micro-architectural designs are facing. For the issues, author provides high level solutions and standard practices nowadays. The next section goes on covering architecture of transactional storage manager. The strength of this paper is that it covers almost all of the main components of DBMS, which gives readers a comprehensive view of the whole architecture. Also, author tries to give a structure of the paper before going into each section, which is helpful organizing thoughts. However, this paper does have a few weaknesses:

1). It tries to cover too much stuff, and contents of sections are quite scattered. It might be a good idea to spend a little more time on how components interacting with each other, so that readers can better knit the sections together.

2). The paper assumes readers have some knowledge of DBMS and have not explained the basic concepts. Throughout the paper, there are many terminologies that I am not familiar with, which makes this paper hard to understand. Some elaboration on terminologies and maybe more graphs should help illustrate the concepts better.

Overall, this paper is informative but hard to get a grasp of.


Review 15

“Anatomy of a Database System” by Hellerstein and Stonebraker provides an overview of the major architectural components of a relational DBMS: process model and architecture, storage model, query processor, and transactional storage manager. For each component, the paper explains its purpose, different design approaches, benefits and challenges with particular approaches, and which approaches are common in commercial DBMSs today. Below I provide a brief overview of what is described for each component.

Process model and architecture:
Early DBMSs were built on uniprocessors; as a result some process model approaches include a) one process per client connection, b) a server process that assigns incoming queries to DBMS worker threads, and c) a server process whose disks have their own single-threaded I/O process. The paper also discusses the relationship between DBMS threads and OS threads and processes. Today, most DBMSs have handy a layer of abstraction for whether a DBMS thread maps to an OS thread or process; however, in most cases an OS process is a better choice as to take advantage of more physical memory space. The paper also discusses different parallel database schemes (shared-memory, shared-nothing, shared-disk) and their benefits and challenges to consider with regard to hardware cost, performance, reliability, and usability for the database administrator.

Storage model:
The paper discusses different models for persistent storage, a) the DBMS directly interacting with disk driver software, and b) the DBMS interacting with the regular file system, and their benefits and challenges with regard to storage space and interaction/retrieval time. Many databases today implement the second approach, where data is placed in a large file and the DBMS uses the filesystem’s API to interact with it.

Query processor:
The query processor is composed of several components: 1) the rewrite module which optimizes the query (through view, arithmetic, logical, semantic, and heuristic rewrites), 2) the optimizer which finds an efficient query execution plan, or operator tree, 3) and the execution engine which executes the chosen plan.

Transactional storage manager:
The transactional storage manager helps achieve ACID (Atomicity, Consistency, Isolation, Durability) and manage concurrency control and recovery through 4 components: a) lock manager, b) log manager, c) buffer pool, and d) access methods. The log manager manages logging and log files to ensure that transactions are completely undone or redone when a fault occurs. Locking enables concurrency or serializability. The paper goes into some detail on differences between locks and latches, what they guarantee for isolation, and when they are useful.

The paper gives an effective overview of the major components of a DBMS for someone with little background. In the process models and architecture section, I thought that discussing process/thread material for uniprocessors first, rather than parallel database configurations, made it nicely accessible. I appreciate that most sections ended with a “Standard Practice” subsection, making it clear what architectural components are used in DBMSs today and why.

The process model and architecture section explains that parallel DBMSs are most common today. I think that the other sections of the paper could have been discussed more for parallel DBMSs, as parallel configurations likely bring challenges for all DBMS components. For example, logging and locking for a parallel DBMS likely requires complex communication across processors and disks. Similarly, optimizing a query across a parallel DBMS sounds like a complex task.


Review 16

This paper gives an in-depth description of the architectural aspects of modern DBMS from a system level view. At the beginning of this paper, the author points out the problem that database system architectures are not commonly known while DBMS are widely used. Thus, the author writes this paper summarizes the key components and techniques used in modern DBMS. They divide the DBMS into 4 main components, including the process manager, query processor, transactional storage manager and shared utilizes. Then, in the following sections, they give detailed descriptions of each component.

I will reiterate the crux of each section of this paper.

1. Process manager: In this part, they list DBMS process models including Process per Connection, Server Process and Server Process + I/O Processes. They discuss the pros and cons of each model. Then, they make an extension for the simple model to more complicated models by relaxing the assumption. They first introduce the thread mapping between DBMS and OS by using different threads in DBMS. Next, it discusses the platforms with multiple CPUs with shared memory, shared nothing and shared disk architectures. Besides, admission control is discussed and then end with a summary of standard practice.

2. Storage models: In this part, they talk about a classical question: whether DBMS systems should rely on OS utilities? In another word, should DBMS control everything for it or it can use some OS facilities. They discuss this question in both spatial and temporal views. In the discussion, they point out the advantages and drawbacks of two approaches. They come to a conclusion: DBMS can use some OS facilities to make things work efficiently. Personally, I think DBMS should not rely too much on OS, it should do its job in its own way. Besides, they also talk about buffer management in DBMS.

3. Query processor: They divide the query processor into several parts: parsing & authorization, query rewrite, query optimization, query executor and access methods. They illustrate how each component works in a processor with rich examples. Also, they discuss the potential pitfall within query processors.

4. Transactions: First of all, they introduce the ACID properties of transactions. Next, they discuss the locks and latches in detail, including the usage of locks and latches and the difference between them. For the measure of consistency, they also introduce the isolation levels. Then, the log manager is discussed, which is used for DBMS recovery. They discuss the indexes issues and their management. Finally, they talk about the independencies among concurrency control, recovery management and access methods.

The contribution of this paper is that it tells a very good DBMS story in a systematic view which cannot be easily found in a regular DBMS book. They firstly give a big picture of the architecture of modern DBMS and in the following paragraphs, they penetrate deeper and make a comprehensive description of how each component work and cooperate. They give various diagrams for illustrating the architecture which makes it easy to understand. Just as they said in their paper, although DBMS are widely used, the architecture of DBMS in system level is not widely known due to the community issues and ignorance of academic area. However, this paper opens the gate which makes people understand how database systems work internally. When they talk about different techniques that solve the same problem, they give critical judgments for each method. They not only talk about the advantages of they but also potential problems, they told us how to make a balance between those trade-offs in the real-world based on different requirements.

Although it’s wonderful paper, it still has some drawbacks from my point of view. I think when they compare different kinds of techniques, for example, in the process models they introduced shared memory, shared nothing and shared disk. They give good descriptions of how each thing works and their pros and cons. However, they don’t give concrete examples of which DBMS use which style and the reason for the use case. I think they can include more real-world DBMS in their paper so that people in industry can have a better understanding of them.

Although a long paper, it is worthwhile to spend time with it.



Review 17

This paper was a breadth-oriented introduction to the “Anatomy of a Database System”, and involved a discussion on many architecture details of database systems that are not typically focuses on in database courses, at least at this level. In particular, the paper focused on the 3 main process models that DBMS systems use, memory coordination strategies, storage models (including spatial/temporal control), the query processor (including a discussion on the “lifecycle” of a query and its processing/optimization), and Transactions (with particular focus on the lock/log managers).
The focus on the paper was not on providing any “novel” contribution in this field, but rather was to provide an informative survey that would fill in gaps the authors noticed in current DBMS curriculums. With that in mind, the main strength of the paper was in raw amount of information provided about DBMS architectural details. Good explanation was also given for “why” each approach listed in the paper was/wasn’t used at the time the paper was written, and enough different approaches were given for each section (where relevant) so that the paper seemed to have sufficient breadth within each topic.
Because the paper wasn’t contributing anything new, there aren’t any conventional “research paper” weaknesses. However, one criticism I do have is that the paper seemed overly dense at times—in particular, the section on the query processor was extremely dense and I think would have benefitted from the inclusion of more figures, or possibly a rewriting to make it slightly more digestible.