stasis-aries-wal/doc/rosePaper/rose.tex

1484 lines
74 KiB
TeX
Raw Normal View History

2007-11-13 18:35:32 +00:00
% This is "sig-alternate.tex" V1.3 OCTOBER 2002
% This file should be compiled with V1.6 of "sig-alternate.cls" OCTOBER 2002
%
% This example file demonstrates the use of the 'sig-alternate.cls'
% V1.6 LaTeX2e document class file. It is for those submitting
% articles to ACM Conference Proceedings WHO DO NOT WISH TO
% STRICTLY ADHERE TO THE SIGS (PUBS-BOARD-ENDORSED) STYLE.
% The 'sig-alternate.cls' file will produce a similar-looking,
% albeit, 'tighter' paper resulting in, invariably, fewer pages.
%
% ----------------------------------------------------------------------------------------------------------------
% This .tex file (and associated .cls V1.6) produces:
% 1) The Permission Statement
% 2) The Conference (location) Info information
% 3) The Copyright Line with ACM data
% 4) Page numbers
%
% as against the acm_proc_article-sp.cls file which
% DOES NOT produce 1) thru' 3) above.
%
% Using 'sig-alternate.cls' you have control, however, from within
% the source .tex file, over both the CopyrightYear
% (defaulted to 2002) and the ACM Copyright Data
% (defaulted to X-XXXXX-XX-X/XX/XX).
% e.g.
% \CopyrightYear{2003} will cause 2002 to appear in the copyright line.
% \crdata{0-12345-67-8/90/12} will cause 0-12345-67-8/90/12 to appear in the copyright line.
%
% ---------------------------------------------------------------------------------------------------------------
% This .tex source is an example which *does* use
% the .bib file (from which the .bbl file % is produced).
% REMEMBER HOWEVER: After having produced the .bbl file,
% and prior to final submission, you *NEED* to 'insert'
% your .bbl file into your source .tex file so as to provide
% ONE 'self-contained' source file.
%
% ================= IF YOU HAVE QUESTIONS =======================
% Questions regarding the SIGS styles, SIGS policies and
% procedures, Conferences etc. should be sent to
% Adrienne Griscti (griscti@acm.org)
%
% Technical questions _only_ to
% Gerald Murray (murray@acm.org)
% ===============================================================
%
% For tracking purposes - this is V1.3 - OCTOBER 2002
\documentclass{sig-alternate-sigmod08}
\usepackage{xspace,color}
\newcommand{\rows}{Rows\xspace}
\newcommand{\rowss}{Rows'\xspace}
\begin{document}
%
% --- Author Metadata here ---
\conferenceinfo{ACM SIGMOD}{'08 Vancouver, BC, Canada}
%\CopyrightYear{2001} % Allows default copyright year (2000) to be over-ridden - IF NEED BE.
%\crdata{0-12345-67-8/90/01} % Allows default copyright data (0-89791-88-6/97/05) to be over-ridden - IF NEED BE.
% --- End of Author Metadata ---
\title{{\ttlit \rows}: Compressed, log-structured replication}
%
% You need the command \numberofauthors to handle the "boxing"
% and alignment of the authors under the title, and to add
% a section for authors number 4 through n.
%
\numberofauthors{3}
\author{}
%\author{Russell Sears \and Mark Callaghan \and Eric Brewer}
\maketitle
\begin{abstract}
This paper describes \rows\footnote{[Clever acronym here]}, a database
storage engine designed for high-throughput replication. It targets
applications with write-intensive (seek limited) transaction
processing workloads and near-realtime decision support and analytical
processing queries. \rows uses {\em log structured merge} (LSM) trees
to create full database replicas using purely sequential I/O. It
provides access to inconsistent data in real-time and consistent data
with a few seconds delay. \rows was written to support micropayment
2007-11-16 18:27:36 +00:00
transactions.
2007-11-13 18:35:32 +00:00
A \rows replica serves two purposes. First, by avoiding seeks, \rows
2007-11-16 18:27:36 +00:00
reduces the load on the replicas' disks. This leaves surplus I/O capacity
for read-only queries and allows inexpensive hardware to replicate
workloads produced by expensive machines that are equipped with many disks.
Affordable, read-only replication allows decision support and OLAP queries to
2007-11-16 15:55:50 +00:00
scale linearly with the number of machines, regardless of lock
contention and other bottlenecks associated with distributed
2007-11-16 18:27:36 +00:00
transactional updates. Second, a group of \rows replicas provides a highly
2007-11-16 15:55:50 +00:00
available copy of the database. In many Internet-scale environments,
decision support queries are more important than update availability.
2007-11-13 18:35:32 +00:00
%\rows targets seek-limited update-in-place OLTP applications, and uses
%a {\em log structured merge} (LSM) tree to trade disk bandwidth for
2007-11-16 15:55:50 +00:00
%seeks. LSM-Trees translate random updates into sequential scans and
2007-11-13 18:35:32 +00:00
%bulk loads. Their performance is limited by the sequential I/O
%bandwidth required by a vacuumer analogous to merges in
%sort-merge join. \rows uses column compression to reduce this
%bottleneck.
\rowss throughput is limited by sequential I/O bandwidth. We use
column compression to reduce this bottleneck. Rather than reassemble
rows from a column-oriented disk layout, we adapt existing column
compression algorithms to a novel row-oriented data layout. This
approach to database compression introduces negligible space overhead
and can be applied to most single-pass, randomly accessible
compression formats. Our prototype uses lightweight (superscalar)
column compression algorithms.
Existing analytical models and our experiments reveal that, for disk and
CPU-bound workloads, \rows provides orders of magnitude greater
throughput than conventional replication techniques.
2007-11-13 18:35:32 +00:00
\end{abstract}
%% SIGMOD DOESN'T USE THESE
% A category with the (minimum) three required fields
%\category{H.4}{Information Systems Applications}{Miscellaneous}
%A category including the fourth, optional field follows...
%\category{D.2.8}{Software Engineering}{Metrics}[complexity measures, performance measures]
%\terms{Delphi theory}
%\keywords{ACM proceedings, \LaTeX, text tagging}
\section{Introduction}
\rows is a database replication engine for workloads with high volumes
of in-place updates. It is designed to provide high-throughput,
general purpose replication of transactional updates regardless of
database size, query contention or access patterns. In particular, it
is designed to run real-time decision support and analytical
processing queries against some of today's largest TPC-C style online
transaction processing applications.
When faced with random access patterns, traditional database
2007-11-16 15:55:50 +00:00
scalability is limited by the size of memory. If the system's working
set does not fit in RAM, any attempt to update data in place is
limited by the latency of hard disk seeks. This bottleneck can be
alleviated by adding more drives, which increases cost and decreases
reliability. Alternatively, the database can run on a cluster of
2007-11-16 15:55:50 +00:00
machines, increasing the amount of available memory, CPUs and disk
heads, but introducing the overhead and complexity of distributed
transactions and partial failure.
These problems lead to large-scale database installations that partition
2007-11-13 18:35:32 +00:00
their workloads across multiple servers, allowing linear scalability,
but sacrificing consistency between data stored in different
2007-11-13 18:35:32 +00:00
partitions. Fortunately, updates often deal with well-defined subsets
of the data; with an appropriate partitioning scheme, one can achieve
linear scalability for localized updates.
The cost of partitioning is that no globally coherent version of the
data exists. In the best case, queries that rely on a global view of
the data run against each master database instance, then attempt to
reconcile inconsistencies in their results. If the queries are
too expensive to run on master database instances they are delegated
to data warehousing systems and produce stale results.
2007-11-16 18:27:36 +00:00
In order to address the needs of such queries, \rows gives up the ability to
directly process SQL updates. In exchange, it is able to replicate
conventional database instances at a small fraction of the cost of a
general-purpose database server.
Like a data warehousing solution, this decreases the cost of large,
read-only analytical processing and decision support queries, and scales to extremely
2007-11-16 18:27:36 +00:00
large database instances with high-throughput updates. Unlike data
warehousing solutions, \rows does this without introducing significant
replication latency.
Conventional database replicas provide low-latency replication at a
2007-11-16 18:27:36 +00:00
cost comparable to that of the master database. The expense associated with such systems
prevents conventional database replicas from scaling. The additional
read throughput they provide is nearly as expensive as read throughput
on the master. Because their performance is comparable to that of the
2007-11-16 15:55:50 +00:00
master database, they are unable to consolidate multiple database
2007-11-16 18:27:36 +00:00
instances for centralized processing.
Unlike existing systems, \rows provides inexpensive, low-latency, and
scalable replication of write-intensive relational databases,
regardless of workload contention, database size, or update patterns.
2007-11-16 15:55:50 +00:00
\subsection{Fictional \rows deployment}
2007-11-16 18:27:36 +00:00
Imagine a classic, disk-bound TPC-C installation. On modern hardware,
such a system would have tens of disks, and would be seek limited.
2007-11-16 18:27:36 +00:00
Consider the problem of producing a read-only, low-latency replica of
the system for analytical processing, decision support, or some other
2007-11-16 15:55:50 +00:00
expensive read-only workload. If the replica uses the same storage
engine as the master, its hardware resources would be comparable to
(certainly within an order of magnitude) those of the master database
2007-11-16 18:27:36 +00:00
instances. Worse, a significant fraction of these resources would be
devoted to replaying updates from the master. As we show below,
the I/O cost of maintaining a \rows replica can be less than 1\% of
the cost of maintaining the master database.
Therefore, unless the replica's read-only query workload is seek
2007-11-16 18:27:36 +00:00
limited, a \rows replica requires many fewer disks than the
master database instance. If the replica must service seek-limited
queries, it will likely need to run on a machine similar to the master
database, but will use almost none of its (expensive) I/O capacity for
replication, increasing the resources available to queries.
2007-11-16 15:55:50 +00:00
Furthermore, \rowss indices are allocated sequentially, reducing the
cost of index scans, and \rowss buffer pool stores compressed
pages, increasing the effective size of system memory.
The primary drawback of this approach is that it roughly doubles the
2007-11-16 15:55:50 +00:00
cost of each random index lookup. Therefore, the attractiveness of
\rows hinges on two factors: the fraction of the workload devoted to
2007-11-16 18:27:36 +00:00
random tuple lookups, and the premium one would have paid for a piece
of specialized storage hardware that \rows replaces.
\subsection{Paper structure}
We begin by providing an overview of \rowss system design and then
2007-11-16 15:55:50 +00:00
present a simplified analytical model of LSM-Tree I/O behavior. We
apply this model to our test hardware, and predict that \rows will
2007-11-16 15:55:50 +00:00
greatly outperform database replicas that store data in B-Trees. We
proceed to present a row-oriented page layout that adapts most
column-oriented compression schemes for use in \rows. Next, we
evaluate \rowss replication performance on a real-world dataset, and
demonstrate orders of magnitude improvement over a MySQL InnoDB B-Tree
2007-11-16 15:55:50 +00:00
index. Our performance evaluations conclude with an analysis
of our prototype's performance and shortcomings. We defer
related work to the end of the paper, as recent research suggests
a number of ways in which \rows could be improved.
\section{System overview}
A \rows replica takes a replication log as input, and stores the
changes it contains in a {\em log structured merge} (LSM)
tree\cite{lsm}.
An LSM-Tree is an index method that consists of multiple sub-trees
(components). The smallest component, $C0$ is a memory resident
binary search tree. The next smallest component, $C1$ is a bulk
loaded B-Tree. Updates are applied directly to $C0$. As $C0$ grows,
it is merged with $C1$. The merge process consists of index scans,
and produces a new (bulk loaded) version of $C1$ that contains the
updates from $C0$. LSM-Trees can have arbitrarily many components,
though three components (two on-disk tress) are generally adequate.
The memory-resident component, $C0$, is updated in place. All other
components are produced by repeated merges with the next smaller
component. Therefore, LSM-Trees are updated without resorting to
random disk I/O.
Unlike the original LSM work, \rows compresses the data using
techniques from column-oriented databases, and is designed exclusively
2007-11-16 15:55:50 +00:00
for database replication. Merge throughput is bounded by sequential
I/O bandwidth, and lookup performance is limited by the amount of
available memory. \rows uses compression to trade surplus
computational power for scarce storage resources.
The replication log should record each transaction {\tt begin}, {\tt commit}, and
{\tt abort} performed by the master database, along with the pre- and
post-images associated with each tuple update. The ordering of these
2007-11-16 18:27:36 +00:00
entries must match the order in which they are applied at the
2007-11-16 15:55:50 +00:00
database master.
2007-11-13 18:35:32 +00:00
Upon receiving a log entry, \rows applies it to an in-memory tree, and
the update is immediately available to queries that do not require a
consistent view of the data. \rows provides snapshot consistency to
readers that require transactional isolation. It does so in a
lock-free manner; transactions' reads and writes are not tracked, and
no \rows transaction can ever force another to block or abort. When
given appropriate workloads, \rows provides extremely low-latency
replication. Transactionally consistent data becomes available after
a delay on the order of the duration of a few update transactions.
The details of \rowss concurrency control mechanisms are provided in
Section~\ref{sec:isolation}.
%To prevent the in-memory tree from growing without bound, a merge
%process iterates over the (sorted) tree entries, and merges them with
%existing on-disk tree entries. As the database increases in size, the
%on disk tree grows, forcing \rows to compare an ever-increasing number
%of existing tuples with each new tuple. To mitigate this effect, the
%on-disk tree is periodically emptied by merging it with a second,
%larger tree.
2007-11-13 18:35:32 +00:00
In order to look up a tuple stored in \rows, a query must examine all
2007-11-16 18:27:36 +00:00
three tree components, typically starting with the in-memory (fastest, and most
2007-11-13 18:35:32 +00:00
up-to-date) component, and then moving on to progressively larger and
out-of-date trees. In order to perform a range scan, the query can
2007-11-16 18:27:36 +00:00
iterate over the trees manually. Alternatively, it can wait until the next round
2007-11-13 18:35:32 +00:00
of merging occurs, and apply the scan to tuples as the mergers examine
them. By waiting until the tuples are due to be merged, the
range-scan can occur with zero I/O cost, at the expense of significant
delay.
\rows merges LSM-Tree components in background threads. This allows
it to continuously process updates and service index lookup requests.
In order to minimize the overhead of thread synchronization, index
2007-11-16 15:55:50 +00:00
lookups lock entire tree components at a time. Because on-disk tree
2007-11-16 18:27:36 +00:00
components are read-only, these latches only block tree deletion,
2007-11-16 15:55:50 +00:00
allowing merges and lookups to occur concurrently. $C0$ is
updated in place, preventing inserts from occurring concurrently with
merges and lookups. However, operations on $C0$ are comparatively
fast, reducing contention for $C0$'s latch.
2007-11-16 18:27:36 +00:00
Recovery, space management and atomic updates to \rowss metadata are
handled by an existing transactional storage system. \rows is
2007-11-16 18:27:36 +00:00
implemented as an extension to the transaction system and stores its
data in a conventional database page file. \rows does not use the
underlying transaction system to log changes to its tree components.
2007-11-16 18:27:36 +00:00
Instead, it force writes tree components to disk after each merge completes, ensuring
durability without significant logging overhead.
2007-11-16 15:55:50 +00:00
As far as we know, \rows is the first LSM-Tree implementation. This
section provides an overview of LSM-Trees, and explains how we
quantify the cost of tuple insertions. It then steps through a rough
2007-11-16 15:55:50 +00:00
analysis of LSM-Tree performance on current hardware (we refer the
reader to the original LSM work for a thorough analytical discussion
of LSM performance). Finally, we explain how our implementation
provides transactional isolation, exploits hardware parallelism, and
2007-11-16 18:27:36 +00:00
supports crash recovery. These implementation specific details are an
important contribution of this work; they explain how to adapt
LSM-Trees to provide high performance database replication. We defer
discussion of \rowss compression techniques to the next section.
2007-11-13 18:35:32 +00:00
\subsection{Tree merging}
% XXX figures?
2007-11-13 18:35:32 +00:00
2007-11-16 15:55:50 +00:00
%An LSM-Tree consists of a number of underlying trees.
For simplicity,
2007-11-16 15:55:50 +00:00
this paper considers three component LSM-Trees. Component zero ($C0$)
2007-11-13 18:35:32 +00:00
is an in-memory binary search tree. Components one and two ($C1$,
2007-11-16 15:55:50 +00:00
$C2$) are read-only, bulk-loaded B-Trees.
%Only $C0$ is updated in place.
Each update is handled in three stages. In the first stage, the
update is applied to the in-memory tree. Next, once enough updates
have been applied, a tree merge is initiated, and the tuple is
eventually merged with existing tuples in $C1$. The merge process
performs a sequential scan over the in-memory tree and $C1$, producing
a new version of $C1$.
2007-11-13 18:35:32 +00:00
2007-11-16 15:55:50 +00:00
When the merge is complete, $C1$ is atomically replaced
2007-11-13 18:35:32 +00:00
with the new tree, and $C0$ is atomically replaced with an empty tree.
The process is then eventually repeated when $C1$ and $C2$ are merged.
Although our prototype replaces entire trees at once, this approach
introduces a number of performance problems. The original LSM work
proposes a more sophisticated scheme that addresses some of these
issues. Instead of replacing entire trees at once, it replaces one
subtree at a time. This reduces peak storage and memory requirements.
2007-11-16 15:55:50 +00:00
Truly atomic replacement of portions of an LSM-Tree would cause ongoing
2007-11-13 18:35:32 +00:00
merges to block insertions, and force the mergers to run in lock step.
2007-11-16 15:55:50 +00:00
(This problem is mentioned in the LSM
2007-11-13 18:35:32 +00:00
paper.) We address this issue by allowing data to be inserted into
the new version of the smaller component before the merge completes.
This forces \rows to check both versions of components $C0$ and $C1$
2007-11-16 15:55:50 +00:00
in order to look up each tuple, but it handles concurrency between merge steps
without resorting to fine-grained latches. Applying this
approach to subtrees would reduce the impact of these extra lookups,
which could be filtered out with a range comparison in the common
2007-11-13 18:35:32 +00:00
case.
\subsection{Amortized insertion cost}
In order to compute the amortized cost of insertion into an LSM-Tree,
we need only consider the cost of comparing the inserted tuple with
older tuples (otherwise, we would count the cost of each comparison
twice). Therefore, we say that each tuple insertion ultimately causes
two rounds of I/O operations; one for the merge into $C1$, and another
to merge into $C2$. Once a tuple reaches $C2$ it does not contribute
to the initiation of more I/O (For simplicity, we assume the LSM-Tree
has reached a steady state).
2007-11-16 15:55:50 +00:00
In a populated LSM-Tree $C2$ is the largest component, and $C0$ is the
smallest component. The original LSM-Tree work proves that throughput
2007-11-13 18:35:32 +00:00
is maximized when the ratio of the sizes of $C1$ to $C0$ is equal to
the ratio between $C2$ and $C1$. They call this ratio $R$. Note that
(on average in a steady state) for every $C0$ tuple consumed by a
merge, $R$ tuples from $C1$ must be examined. Similarly, each time a
tuple in $C1$ is consumed, $R$ tuples from $C2$ are examined.
Therefore, in a steady state, insertion rate times the sum of $R *
cost_{read~and~write~C2}$ and $R * cost_{read~and~write~C1}$ cannot
exceed the drive's sequential I/O bandwidth. Note that the total size
of the tree is approximately $R^2 * |C0|$ (neglecting the data stored
in $C0$ and $C1$)\footnote{The proof that keeping R constant across
our three tree components follows from the fact that the mergers
compete for I/O bandwidth and $x(1-x)$ is maximized when $x=0.5$.
2007-11-16 15:55:50 +00:00
The LSM-Tree paper proves the general case.}.
2007-11-13 18:35:32 +00:00
\subsection{Replication Throughput}
2007-11-16 15:55:50 +00:00
LSM-Trees have different asymptotic performance characteristics than
2007-11-13 18:35:32 +00:00
conventional index structures. In particular, the amortized cost of
insertion is $O(\sqrt{n})$ in the size of the data. This cost is
2007-11-16 15:55:50 +00:00
$O(log~n)$ for a B-Tree. The relative costs of sequential and random
I/O determine whether or not \rows is able to outperform B-Trees in
practice. This section describes the impact of compression on B-Tree
and LSM-Tree performance using (intentionally simplistic) models of
their performance characteristics.
2007-11-13 18:35:32 +00:00
2007-11-16 18:27:36 +00:00
Starting with the (more familiar) B-Tree case, in the steady state we
2007-11-13 18:35:32 +00:00
can expect each index update to perform two random disk accesses (one
evicts a page, the other reads a page). Tuple compression does not
reduce the number of disk seeks:
2007-11-13 18:35:32 +00:00
\[
cost_{Btree~update}=2~cost_{random~io}
\]
2007-11-16 15:55:50 +00:00
(We assume that the upper levels of the B-Tree are memory resident.) If
2007-11-13 18:35:32 +00:00
we assume uniform access patterns, 4 KB pages and 100 byte tuples,
2007-11-16 15:55:50 +00:00
this means that an uncompressed B-Tree would keep $\sim2.5\%$ of the
2007-11-13 18:35:32 +00:00
tuples in memory. Prefix compression and a skewed update distribution
would improve the situation significantly, but are not considered
here. Without a skewed update distribution, batching I/O into
sequential writes only helps if a significant fraction of the tree's
data fits in RAM.
In \rows, we have:
\[
cost_{LSMtree~update}=2*2*2*R*\frac{cost_{sequential~io}}{compression~ratio} %% not S + sqrt S; just 2 sqrt S.
\]
where $R$ is the ratio of adjacent tree component sizes
($R^2=\frac{|tree|}{|mem|}$). We multiply by $2R$ because each new
tuple is eventually merged into both of the larger components, and
each merge involves $R$ comparisons with existing tuples on average.
An update of a tuple is handled as a deletion of the old tuple (an
insertion of a tombstone), and an insertion of the new tuple, leading
to a second factor of two. The third reflects the fact that the
merger must read existing tuples into memory before writing them back
to disk.
The $compression~ratio$ is
$\frac{uncompressed~size}{compressed~size}$, so improved compression
leads to less expensive LSM-Tree updates. For simplicity, we assume
that the compression ratio is the same throughout each component of
2007-11-16 18:27:36 +00:00
the LSM-Tree; \rows addresses this at run-time by reasoning in terms
of the number of pages used by each component.
2007-11-13 18:35:32 +00:00
Our test hardware's hard drive is a 7200RPM, 750 GB Seagate Barracuda
ES.
%has a manufacturer-reported average rotational latency of
%$4.16~msec$, seek times of $8.5/9.5~msec$ (read/write), and a maximum
%sustained throughput of $78~MB/s$.
Third party
benchmarks\cite{hdBench} %\footnote{http://www.storagereview.com/ST3750640NS.sr}
2007-11-13 18:35:32 +00:00
report random access times of $12.3/13.5~msec$ and $44.3-78.5~MB/s$
sustained throughput. Timing {\tt dd if=/dev/zero of=file; sync} on an
empty ext3 file system suggests our test hardware provides $57.5MB/s$ of
storage bandwidth.
%We used two hard drives for our tests, a smaller, high performance drive with an average seek time of $9.3~ms$, a
%rotational latency of $4.2~ms$, and a manufacturer reported raw
%throughput of $150~mb/s$. Our buffer manager achieves $\sim 27~mb/s$
%throughput; {\tt dd if=/dev/zero of=file} writes at $\sim 30.5~mb/s$.
Assuming a fixed hardware configuration, and measuring cost in disk
time, we have:
%\[
% cost_{sequential~io}=\frac{|tuple|}{30.5*1024^2}=0.000031268~msec
%\]
%% 12.738854
\[
cost_{sequential}=\frac{|tuple|}{78.5MB/s}=12.7~|tuple|~~nsec/tuple~(min)
\]
%% 22.573363
\[
cost_{sequential}=\frac{|tuple|}{44.3MB/s}=22.6~|tuple|~~nsec/tuple~(max)
\]
and
\[
cost_{random}=\frac{12.3+13.5}{2} = 12.9~msec/tuple
\]
Pessimistically setting
\[
2~cost_{random}\approx1,000,000\frac{cost_{sequential}}{|tuple|}
\] yields: \[
\frac{cost_{LSMtree~update}}{cost_{Btree~update}}=\frac{2*2*2*R*cost_{sequential}}{compression~ratio*2*cost_{random}}
% \frac{cost_{LSMtree~update}}{cost_{Btree~update}} \approx \frac{(S + \sqrt{S})}{|tuple|~compression~ratio~250,000}
\]
\[
\approx\frac{R*|tuple|}{250,000*compression~ratio}
\]
If tuples are 100 bytes and we assume a compression ratio of 4 (lower
than we expect to see in practice, but numerically convenient), the
2007-11-16 15:55:50 +00:00
LSM-Tree outperforms the B-Tree when:
2007-11-13 18:35:32 +00:00
\[
R < \frac{250,000*compression~ratio}{|tuple|}
\]
\[
R < 10,000
\]
%750 gb throughput = 1 / (((8 * 27 * 22.6 * 100) / 4) * (ns)) = 8.00198705 khz
% 1 / (((8 * 2.73 * 100 * 22.6) / 4) * (ns))
on a machine that can store 1 GB in an in-memory tree, this yields a
maximum ``interesting'' tree size of $R^2*1GB = $ 100 petabytes, well
above the actual drive capacity of $750~GB$. A $750~GB$ tree would
2007-11-14 03:12:09 +00:00
have a $C2$ component 750 times larger than the 1GB $C0$ component.
Therefore, it would have an R of $\sqrt{750}\approx27$; we would
expect such a tree to have a sustained insertion throughput of
approximately 8000 tuples / second, or 800 kbyte/sec\footnote{It would
take 11 days to overwrite every tuple on the drive in random order.}
given our 100 byte tuples.
Our hard drive's average access time tells
us that we can expect the drive to deliver 83 I/O operations per
second. Therefore, we can expect an insertion throughput of 41.5
2007-11-16 15:55:50 +00:00
tuples / sec from a B-Tree with a $18.5~GB$ buffer pool. With just $1GB$ of RAM, \rows should outperform the
B-Tree by more than two orders of magnitude. Increasing \rowss system
memory to cache $10 GB$ of tuples would increase write performance by a
factor of $\sqrt{10}$.
2007-11-13 18:35:32 +00:00
% 41.5/(1-80/750) = 46.4552239
2007-11-16 15:55:50 +00:00
Increasing memory another ten fold to 100GB would yield an LSM-Tree
2007-11-13 18:35:32 +00:00
with an R of $\sqrt{750/100} = 2.73$ and a throughput of 81,000
2007-11-16 15:55:50 +00:00
tuples/sec. In contrast, the B-Tree could cache roughly 80GB of leaf pages
2007-11-13 18:35:32 +00:00
in memory, and write approximately $\frac{41.5}{(1-(80/750)} = 46.5$
tuples/sec. Increasing memory further yields a system that
is no longer disk bound.
2007-11-16 18:27:36 +00:00
Assuming that the CPUs are fast enough to allow \rows
2007-11-13 18:35:32 +00:00
compression and merge routines to keep up with the bandwidth supplied
by the disks, we conclude that \rows will provide significantly higher
replication throughput for disk bound applications.
\subsection{Indexing}
Our analysis ignores the cost of allocating and initializing our
2007-11-16 15:55:50 +00:00
LSM-Trees' internal nodes. The compressed data constitutes the leaf
2007-11-13 18:35:32 +00:00
pages of the tree. Each time the compression process fills a page, it
inserts an entry into the leftmost entry in the tree, allocating
2007-11-16 15:55:50 +00:00
additional internal nodes if necessary. Our prototype does not compress
2007-11-13 18:35:32 +00:00
internal tree nodes\footnote{This is a limitation of our prototype;
not our approach. Internal tree nodes are append-only and, at the
2007-11-16 18:27:36 +00:00
very least, the page ID data is amenable to compression. Like B-Tree
2007-11-16 15:55:50 +00:00
compression, this would decrease the memory used by lookups.},
2007-11-13 18:35:32 +00:00
so it writes one tuple into the tree's internal nodes per compressed
page. \rows inherits a default page size of 4KB from the transaction
system we based it upon. Although 4KB is fairly small by modern
standards, \rows is not particularly sensitive to page size; even with
2007-11-16 15:55:50 +00:00
4KB pages, \rowss per-page overheads are acceptable. Assuming tuples
are 400 bytes, $\sim\frac{1}{10}$th of our pages are dedicated to the
lowest level of tree nodes, with $\frac{1}{10}$th that number devoted
2007-11-13 18:35:32 +00:00
to the next highest level, and so on. See
Table~\ref{table:treeCreationTwo} for a comparison of compression
performance with and without tree creation enabled\footnote{Our
analysis ignores page headers, per-column, and per-tuple overheads;
2007-11-16 18:27:36 +00:00
these factors account for the additional indexing overhead.}. The
data was generated by applying \rowss compressors to randomly
generated five column, 1,000,000 row tables. Across five runs, in
Table~\ref{table:treeCreation} RLE's page count had a standard
deviation of $\sigma=2.35$; the other values had $\sigma=0$. In
Table~\ref{table:treeCreationTwo}, $\sigma < 7.26$ pages.
2007-11-13 18:35:32 +00:00
%Throughput's $\sigma<6MB/s$.
\begin{table}
\caption{Tree creation overhead - five column (20 bytes/column)}
\centering
\label{table:treeCreation}
\begin{tabular}{|l|c|c|c|} \hline
Format & Compression & Page count \\ \hline %& Throughput\\ \hline
PFOR & 1.96x & 2494 \\ \hline %& 133.4 MB/s \\ \hline
PFOR + tree & 1.94x & +80 \\ \hline %& 129.8 MB/s \\ \hline
2007-11-13 18:35:32 +00:00
RLE & 3.24x & 1505 \\ \hline %& 150.6 MB/s \\ \hline
RLE + tree & 3.22x & +21 \\ %& 148.4 MB/s \\
\hline\end{tabular}
\end{table}
\begin{table}
\caption{Tree creation overhead - 100 columns (400 bytes/column)}
\centering
\label{table:treeCreationTwo}
\begin{tabular}{|l|c|c|c|} \hline
Format & Compression & Page count \\ \hline %& Throughput\\ \hline
PFOR & 1.37x & 7143 \\ \hline %& 133.4 MB/s \\ \hline
PFOR + tree & 1.17x & 8335 \\ \hline %& 129.8 MB/s \\ \hline
2007-11-13 18:35:32 +00:00
RLE & 1.75x & 5591 \\ \hline %& 150.6 MB/s \\ \hline
RLE + tree & 1.50x & 6525 \\ %& 148.4 MB/s \\
\hline\end{tabular}
\end{table}
As the size of the tuples increases, the number of compressed pages
that each internal tree node points to decreases, increasing the
overhead of tree creation. In such circumstances, internal tree node
compression and larger pages should improve the situation.
2007-11-13 18:35:32 +00:00
\subsection{Isolation}
\label{sec:isolation}
2007-11-16 15:55:50 +00:00
\rows combines replicated transactions into snapshots. Each transaction
2007-11-13 18:35:32 +00:00
is assigned to a snapshot according to a timestamp; two snapshots are
active at any given time. \rows assigns incoming transactions to the
newer of the two active snapshots. Once all transactions in the older
snapshot have completed, that snapshot is marked inactive, exposing
its contents to new queries that request a consistent view of the
data. At this point a new active snapshot is created, and the process
continues.
The timestamp is simply the snapshot number. In the case of a tie
during merging (such as two tuples with the same primary key and
2007-11-16 15:55:50 +00:00
timestamp), the version from the newer (lower numbered) component is
2007-11-13 18:35:32 +00:00
taken.
This ensures that, within each snapshot, \rows applies all updates in the
same order as the primary database. Across snapshots, concurrent
transactions (which can write non-conflicting tuples in arbitrary
orders) lead to reordering of updates. However, these updates are
guaranteed to be applied in transaction order. The correctness of
this scheme hinges on the correctness of the timestamps applied to
each transaction.
If the master database provides snapshot isolation using multiversion
concurrency control (as is becoming increasingly popular), we can
simply reuse the timestamp it applies to each transaction. If the
master uses two phase locking, the situation becomes more complex, as
2007-11-16 15:55:50 +00:00
we have to use the commit time of each transaction\footnote{This assumes
all transactions use transaction-duration write locks, and lock
2007-11-13 18:35:32 +00:00
release and commit occur atomically. Transactions that obtain short
write locks can be treated as a set of single action transactions.}.
Until the commit time is known, \rows stores the transaction id in the
2007-11-16 15:55:50 +00:00
LSM-Tree. As transactions are committed, it records the mapping from
2007-11-13 18:35:32 +00:00
transaction id to snapshot. Eventually, the merger translates
transaction id's to snapshots, preventing the mapping from growing
without bound.
New snapshots are created in two steps. First, all transactions in
epoch $t-1$ must complete (commit or abort) so that they are
guaranteed to never apply updates to the database again. In the
2007-11-16 15:55:50 +00:00
second step, \rowss current snapshot number is incremented, new
read-only transactions are assigned to snapshot $t-1$, and new updates
are assigned to snapshot $t+1$. Each such transaction is granted a
shared lock on the existence of the snapshot, protecting that version
of the database from garbage collection. In order to ensure that new
snapshots are created in a timely and predictable fashion, the time
between them should be acceptably short, but still slightly longer
than the longest running transaction.
2007-11-13 18:35:32 +00:00
\subsubsection{Isolation performance impact}
Although \rowss isolation mechanisms never block the execution of
index operations, their performance degrades in the presence of long
running transactions. Long running updates block the creation of new
snapshots. Ideally, upon encountering such a transaction, \rows
simply asks the master database to abort the offending update. It
then waits until appropriate rollback (or perhaps commit) entries
appear in the replication log, and creates the new snapshot. While
waiting for the transactions to complete, \rows continues to process
replication requests by extending snapshot $t$.
Of course, proactively aborting long running updates is simply an
optimization. Without a surly database administrator to defend it
against application developers, \rows does not send abort requests,
but otherwise behaves identically. Read-only queries that are
interested in transactional consistency continue to read from (the
increasingly stale) snapshot $t-2$ until $t-1$'s long running
updates commit.
Long running queries present a different set of challenges to \rows.
Although \rows provides fairly efficient time-travel support,
versioning databases are not our target application. \rows
provides each new read-only query with guaranteed access to a
consistent version of the database. Therefore, long-running queries
force \rows to keep old versions of overwritten tuples around until
the query completes. These tuples increase the size of \rowss
2007-11-16 15:55:50 +00:00
LSM-Trees, increasing merge overhead. If the space consumed by old
2007-11-13 18:35:32 +00:00
versions of the data is a serious issue, long running queries should
be disallowed. Alternatively, historical, or long-running queries
could be run against certain snapshots (every 1000th, or the first
one of the day, for example), reducing the overhead of preserving
old versions of frequently updated data.
\subsubsection{Merging and Garbage collection}
2007-11-16 18:27:36 +00:00
\rows merges components by iterating over them in order, garbage collecting
2007-11-13 18:35:32 +00:00
obsolete and duplicate tuples and writing the rest into a new version
of the largest component. Because \rows provides snapshot consistency
2007-11-16 18:27:36 +00:00
to queries, it must be careful not to collect a version of a tuple that
is visible to any outstanding (or future) queries. Because \rows
never performs disk seeks to service writes, it handles deletions by
2007-11-16 15:55:50 +00:00
inserting special tombstone tuples into the tree. The tombstone's
purpose is to record the deletion event until all older versions of
2007-11-16 18:27:36 +00:00
the tuple have been garbage collected. Sometime after that point, the tombstone
is collected as well.
2007-11-16 18:27:36 +00:00
In order to determine whether or not a tuple can be collected, \rows
compares the tuple's timestamp with any matching tombstones (or record
creations, if the tuple is a tombstone), and with any tuples that
2007-11-16 18:27:36 +00:00
match on primary key. Upon encountering such candidates for garbage collection,
\rows compares their timestamps with the set of locked snapshots. If
there are no snapshots between the tuple being examined and the
2007-11-16 18:27:36 +00:00
updated version, then the tuple can be collected. Tombstone tuples can
also be collected once they reach $C2$ and any older matching tuples
have been removed.
Actual reclamation of pages is handled by the underlying transaction
2007-11-16 15:55:50 +00:00
system; once \rows completes its scan over existing components (and
registers new ones in their places), it tells the transaction system
2007-11-16 18:27:36 +00:00
to reclaim the regions of the page file that stored the old components.
2007-11-13 18:35:32 +00:00
\subsection{Parallelism}
\rows provides ample opportunities for parallelism. All of its
operations are lock-free; concurrent readers and writers work
independently, avoiding blocking, deadlock and livelock. Index probes
must latch $C0$ in order to perform a lookup, but the more costly
probes into $C1$ and $C2$ are against read-only trees; beyond locating
and pinning tree components against deallocation, probes of these
components do not interact with the merge processes.
2007-11-16 18:27:36 +00:00
Our prototype exploits replication's pipelined parallelism by running
2007-11-13 18:35:32 +00:00
each component's merge process in a separate thread. In practice,
this allows our prototype to exploit two to three processor cores
during replication. Remaining cores could be used by queries, or (as
hardware designers increase the number of processor cores per package)
by using data parallelism to split each merge across multiple threads.
2007-11-16 15:55:50 +00:00
Finally, \rows is capable of using standard database implementation
techniques to overlap I/O requests with computation. Therefore, the
2007-11-16 15:55:50 +00:00
I/O wait time of CPU bound workloads should be negligible, and I/O
bound workloads should be able to take complete advantage of the
2007-11-16 15:55:50 +00:00
disk's sequential I/O bandwidth. Therefore, given ample storage
bandwidth, we expect the throughput of \rows replication to increase
with Moore's law for the foreseeable future.
%[XXX need experimental evidence...] During bulk
%load, the buffer manager, which uses Linux's {\tt sync\_file\_range}
%function allows \rows to asynchronously force regions [XXX currently,
% we do a synchronous force with sync\_file\_range....] of the page
%file to disk. \rows has control over region size; if the system is
%CPU bound \rows can ensure that the time spent waiting for synchronous
%page writes is negligible, by choosing an appropriate region size. On
%the other hand, if the system is disk bound, the same asynchronous
%force mechanism ensures that \rows overlaps computation with I/O. [XXX
% this is probably too detailed; we should just say that \rows uses
% standard techniques to overlap computation and I/O]
2007-11-13 18:35:32 +00:00
\subsection{Recovery}
Like other log structured storage systems, \rowss recovery process is
inexpensive and straightforward. However, \rows does not attempt to
ensure that transactions are atomically committed to disk, and is not
2007-11-16 18:27:36 +00:00
meant to replace the master database's recovery log.
2007-11-13 18:35:32 +00:00
Instead, recovery occurs in two steps. Whenever \rows writes a tree
component to disk, it does so by beginning a new transaction in the
2007-11-16 15:55:50 +00:00
underlying transaction system. Next, it allocates
contiguous regions of disk pages (generating one log entry per
region), and performs a B-Tree style bulk load of the new tree into
2007-11-13 18:35:32 +00:00
these regions (this bulk load does not produce any log entries).
2007-11-16 18:27:36 +00:00
Then, \rows forces the tree's regions to disk, and writes the list
2007-11-13 18:35:32 +00:00
of regions used by the tree and the location of the tree's root to
normal (write ahead logged) records. Finally, it commits the
underlying transaction.
2007-11-16 15:55:50 +00:00
After the underlying transaction system completes recovery, \rows
2007-11-13 18:35:32 +00:00
will have a set of intact and complete tree components. Space taken
2007-11-16 15:55:50 +00:00
up by partially written trees was allocated by an aborted
transaction, and has been reclaimed by the transaction system's
2007-11-13 18:35:32 +00:00
recovery mechanism. After the underlying recovery mechanisms
2007-11-16 15:55:50 +00:00
complete, \rows reads the last committed timestamp from the LSM-Tree
2007-11-13 18:35:32 +00:00
header, and begins playback of the replication log at the appropriate
position. Upon committing new components to disk, \rows allows the
appropriate portion of the replication log to be truncated.
\section{Row compression}
Disk heads are the primary storage bottleneck for most OLTP
environments, and disk capacity is of secondary concern. Therefore,
database compression is generally performed to improve system
performance, not capacity. In \rows, sequential I/O throughput is the
primary replication bottleneck; and is proportional to the compression
ratio. Furthermore, compression increases the effective size of the buffer
2007-11-16 15:55:50 +00:00
pool, which is the primary bottleneck for \rowss random index lookups.
2007-11-13 18:35:32 +00:00
Although \rows targets row-oriented workloads, its compression
routines are based upon column-oriented techniques and rely on the
assumption that pages are indexed in an order that yields easily
compressible columns. \rowss compression formats are based on our
{\em multicolumn} compression format. In order to store data from
an $N$ column table, we divide the page into $N+1$ variable length
regions. $N$ of these regions each contain a compressed column. The
2007-11-13 18:35:32 +00:00
remaining region contains ``exceptional'' column data (potentially
2007-11-16 15:55:50 +00:00
from more than one column).
2007-11-13 18:35:32 +00:00
For example, a column might be encoded using the {\em frame of
reference} (FOR) algorithm, which stores a column of integers as a
single offset value and a list of deltas. When a value too different
from the offset to be encoded as a delta is encountered, an offset
2007-11-16 15:55:50 +00:00
into the exceptions region is stored. When applied to a page that
stores data from a single column, the resulting algorithm is MonetDB's
{\em patched frame of reference} (PFOR)~\cite{pfor}.
2007-11-13 18:35:32 +00:00
\rowss multicolumn pages extend this idea by allowing multiple columns
(each with its own compression algorithm) to coexist on each page.
This reduces the cost of reconstructing tuples during index lookups,
and yields a new approach to superscalar compression with a number of
2007-11-16 15:55:50 +00:00
new, and potentially interesting properties.
We implemented two compression formats for \rowss multicolumn pages.
The first is PFOR, the other is {\em run length encoding}, which
stores values as a list of distinct values and repetition counts.
This section discusses the computational and storage overhead of the
multicolumn compression approach.
2007-11-13 18:35:32 +00:00
\subsection{Multicolumn computational overhead}
\rows builds upon compression algorithms that are amenable to
superscalar optimization, and can achieve throughputs in excess of
2007-11-16 18:27:36 +00:00
1GB/s on current hardware.
%sears@davros:~/stasis/benchmarks$ ./rose -n 10 -p 0.01
%Compression scheme: Time trial (multiple engines)
%Page size: 4096
%P(bump): 0.010000
%Random seed: 0
%Column count: 10
%WARNING: Pstar will only use the first column.
%Compression scheme #pages ratio comp gb/s decom gb/s
%Pstar (For) 493 3.96x 0.544 2.982
%Multicolumn (For) 5129 3.81x 0.253 0.712
%Pstar (Rle) 40 48.83x 0.961 1.593
%Multicolumn (Rle) 416 46.95x 0.377 0.692
\begin{table}
2007-11-16 18:27:36 +00:00
\caption{Compressor throughput - Random data Mean of 5 runs, $\sigma<5\%$, except where noted}
\centering
\label{table:perf}
\begin{tabular}{|l|c|c|c|} \hline
2007-11-16 18:27:36 +00:00
Format (\#col) & Ratio & Comp. mb/s & Decomp. mb/s\\ \hline %& Throughput\\ \hline
PFOR (1) & 3.96x & 547 & 2959 \\ \hline %& 133.4 MB/s \\ \hline
PFOR (10) & 3.86x & 256 & 719 \\ \hline %& 129.8 MB/s \\ \hline
RLE (1) & 48.83x & 960 & 1493 $(12\%)$ \\ \hline %& 150.6 MB/s \\ \hline
RLE (10) & 47.60x & 358 $(9\%)$ & 659 $(7\%)$ \\ %& 148.4 MB/s \\
\hline\end{tabular}
\end{table}
2007-11-13 18:35:32 +00:00
Additional computational overhead is introduced in two areas. First,
\rows compresses each column in a separate buffer, then uses {\tt
memcpy()} to gather this data into a single page buffer before
writing it to disk. This {\tt memcpy()} occurs once per page
allocation.
Second, we need a way to translate requests to write a tuple into
calls to appropriate page formats and compression implementations.
Unless we hardcode our \rows executable to support a predefined set of
page formats (and table schemas), this invokes an extra {\tt for} loop
(over the columns) whose body contains a {\tt switch} statement (in
order to choose between column compressors) to each tuple compression
request.
2007-11-16 18:27:36 +00:00
This form of multicolumn support introduces significant overhead;
these variants of our compression algorithms run significantly slower
than versions hard-coded to work with single column data.
Table~\ref{table:perf} compares a fixed-format single column page
layout with \rowss dynamically dispatched (not custom generated code)
multicolumn format.
2007-11-13 18:35:32 +00:00
% explain how append works
\subsection{The {\tt \large append()} operation}
\rowss compressed pages provide a {\tt tupleAppend()} operation that
2007-11-13 18:35:32 +00:00
takes a tuple as input, and returns {\tt false} if the page does not have
room for the new tuple. {\tt tupleAppend()} consists of a dispatch
routine that calls {\tt append()} on each column in turn. Each
column's {\tt append()} routine secures storage space for the column
value, or returns {\tt false} if no space is available. {\tt append()} has the
following signature:
\begin{quote}
{\tt append(COL\_TYPE value, int* exception\_offset,
void* exceptions\_base, void* column\_base, int* freespace) }
\end{quote}
where {\tt value} is the value to be appended to the column, {\tt
exception\_offset} is a pointer to the first free byte in the
exceptions region, {\tt exceptions\_base} and {\tt column\_base} point
to (page sized) buffers used to store exceptions and column data as
the page is being written to. One copy of these buffers exists for
2007-11-13 18:35:32 +00:00
each page that \rows is actively writing to (one per disk-resident
2007-11-16 15:55:50 +00:00
LSM-Tree component); they do not significantly increase \rowss memory
2007-11-13 18:35:32 +00:00
requirements. Finally, {\tt freespace} is a pointer to the number of
free bytes remaining on the page. The multicolumn format initializes
these values when the page is allocated.
As {\tt append()} implementations are called they update this data
accordingly. Initially, our multicolumn module managed these values
and the exception space. This led to extra arithmetic operations and
conditionals and did not significantly simplify the code. Note that,
compared to techniques that store each tuple contiguously on the page,
2007-11-16 15:55:50 +00:00
our format avoids encoding the (variable) length of each tuple; instead
it encodes the length of each column.
2007-11-13 18:35:32 +00:00
% contrast with prior work
2007-11-16 15:55:50 +00:00
The existing PFOR implementation assumes it has access to
a buffer of uncompressed data and that it is able to make multiple
passes over the data during compression. This allows it to remove
2007-11-13 18:35:32 +00:00
branches from loop bodies, improving compression throughput. We opted
to avoid this approach in \rows, as it would increase the complexity
2007-11-16 18:27:36 +00:00
of the {\tt append()} interface, and add a buffer to \rowss merge threads.
2007-11-13 18:35:32 +00:00
\subsection{Static code generation}
% discuss templatization of code
After evaluating the performance of a C implementation of \rowss
compression routines, we decided to rewrite the compression routines
as C++ templates. C++ template instantiation performs compile-time
macro substitutions. We declare all functions {\tt inline}, and place
them in header files (rather than separate compilation units). This
gives g++ the opportunity to perform optimizations such as
cross-module constant propagation and branch elimination. It also
allows us to write code that deals with integer data types instead of
void pointers without duplicating code or breaking encapsulation.
Such optimizations are possible in C, but, because of limitations of
the preprocessor, would be difficult to express or require separate
code-generation utilities. We found that this set of optimizations
improved compression and decompression performance by roughly an order
of magnitude. Although compressor throughput varies with data distributions
2007-11-13 18:35:32 +00:00
and type, optimizations yield a similar performance improvement across
varied datasets and random data distributions.
We performed one additional set of optimizations. Rather than
instantiate each compressor template once for each column type at
compile time, we instantiate a multicolumn page format template for
each page format we wish to support. This removes the {\tt for} loop
and {\tt switch} statement that supporting multiple columns per page
introduced, but hardcodes page schemas at compile time.
The two approaches could coexist in a single runtime environment,
allowing the use of hardcoded implementations for performance critical
tables, while falling back on slower, general purpose implementations
for previously unseen table layouts.
\subsection{Buffer manager interface extensions}
\rows uses a preexisting, conventional database buffer manager. Each
page contains an LSN (which is largely unused, as we bulk-load \rowss
trees) and a page implementation number. This allows it to coexist
with conventional write ahead logging mechanisms. As mentioned above,
this greatly simplifies crash recovery without introducing significant
logging overhead.
2007-11-16 15:55:50 +00:00
Memory resident pages are stored in a
2007-11-13 18:35:32 +00:00
hashtable keyed by page number, and replaced using an LRU
strategy\footnote{LRU is a particularly poor choice, given that \rowss
I/O is dominated by large table scans. Eventually, we hope to add
2007-11-16 15:55:50 +00:00
support for explicit eviction of pages read by the merge processes.}.
In implementing \rows, we made use of a number of generally useful
callbacks that are of particular interest to \rows and other database
compression schemes. The first, {\tt pageLoaded()} instantiates a new
multicolumn page implementation when the page is first read into
memory. The second, {\tt pageFlushed()} informs our multicolumn
implementation that the page is about to be written to disk, and the
third {\tt pageEvicted()} invokes the multicolumn destructor.
We need to register implementations for these functions because the
2007-11-16 18:27:36 +00:00
transaction system maintains background threads that control eviction of \rowss
pages from memory. Registering these callbacks provides an extra
2007-11-16 15:55:50 +00:00
benefit; we parse the page headers, calculate offsets,
and choose optimized compression routines when a page is read from
2007-11-16 15:55:50 +00:00
disk instead of each time we access it.
2007-11-13 18:35:32 +00:00
As we mentioned above, pages are split into a number of temporary
buffers while they are being written, and are then packed into a
2007-11-14 03:12:09 +00:00
contiguous buffer before being flushed. Although this operation is
2007-11-13 18:35:32 +00:00
expensive, it does present an opportunity for parallelism. \rows
provides a per-page operation, {\tt pack()} that performs the
translation. We can register {\tt pack()} as a {\tt pageFlushed()}
callback or we can explicitly call it during (or shortly after)
compression.
2007-11-14 03:12:09 +00:00
{\tt pageFlushed()} could be safely executed in a background thread
with minimal impact on system performance. However, the buffer
manager was written under the assumption that the cost of in-memory
operations is negligible. Therefore, it blocks all buffer management
requests while {\tt pageFlushed()} is being executed. In practice,
this causes multiple \rows threads to block on each {\tt pack()}.
2007-11-13 18:35:32 +00:00
Also, {\tt pack()} reduces \rowss memory utilization by freeing up
temporary compression buffers. Delaying its execution for too long
2007-11-16 15:55:50 +00:00
might allow this memory to be evicted from processor cache before the
2007-11-16 18:27:36 +00:00
{\tt memcpy()} can occur. For these reasons, the merge threads
2007-11-13 18:35:32 +00:00
explicitly invoke {\tt pack()} as soon as possible.
\subsection{Storage overhead}
The multicolumn page format is quite similar to the format of existing
column-wise compression formats. The algorithms we implemented have
page formats that can be (broadly speaking) divided into two sections.
The first section is a header that contains an encoding of the size of
the compressed region, and perhaps a piece of uncompressed exemplar
data (as in frame of reference compression). The second section
typically contains the compressed data.
A multicolumn page contains this information in addition to metadata
describing the position and type of each column. The type and number
of columns could be encoded in the ``page type'' field, or be
explicitly represented using a few bytes per page column. Allocating
16 bits for the page offset and 16 bits for the column type compressor
uses 4 bytes per column. Therefore, the additional overhead for an N
2007-11-16 15:55:50 +00:00
column page's header is
2007-11-13 18:35:32 +00:00
\[
(N-1) * (4 + |average~compression~format~header|)
\]
% XXX the first mention of RLE is here. It should come earlier.
bytes. A frame of reference column header consists of 2 bytes to
record the number of encoded rows and a single uncompressed
value. Run length encoding headers consist of a 2 byte count of
compressed blocks. Therefore, in the worst case (frame of reference
2007-11-14 03:12:09 +00:00
encoding 64-bit integers, and \rowss 4KB pages) our prototype's
2007-11-13 18:35:32 +00:00
multicolumn format uses $14/4096\approx0.35\%$ of the page to store
each column header. If the data does not compress well, and tuples
are large, additional storage may be wasted because \rows does not
split tuples across pages. Tables~\ref{table:treeCreation}
2007-11-14 03:12:09 +00:00
and~\ref{table:treeCreationTwo}, which draw column values from
independent, identical distributions, show that \rowss compression
2007-11-13 18:35:32 +00:00
ratio can be significantly impacted by large tuples.
% XXX graph of some sort to show this?
Breaking pages into smaller compressed blocks changes the compression
ratio in another way; the compressibility of the data varies with the
size of each compressed block. For example, when frame of reference
is applied to sorted data, incoming values eventually drift too far
from the page offset, causing them to be stored as exceptional values.
Therefore (neglecting header bytes), smaller frame of reference blocks
provide higher compression ratios.
Of course, conventional compression algorithms are free to divide
their compressed data into blocks to maximize compression ratios.
Although \rowss smaller compressed block size benefits some
compression implementations (and does not adversely impact either of
the algorithms we implemented), it creates an additional constraint,
and may interact poorly with some compression algorithms.
2007-11-13 18:35:32 +00:00
\subsection{Supporting Random Access}
The multicolumn page format is designed to allow efficient
row-oriented access to data. The efficiency of random access within a
page depends on the format used by individual compressors. \rows
compressors support two access methods. The first looks up a value by
slot id. This operation is $O(1)$ for frame of reference columns, and
$O(log~n)$ (in the number of runs of identical values on the page) for
run length encoded columns.
The second operation is used to look up tuples by value, and is based
2007-11-16 15:55:50 +00:00
on the assumption that the the tuples (not columns) are stored in the page in sorted
2007-11-13 18:35:32 +00:00
order. It takes a range of slot ids and a value, and returns the
offset of the first and last instance of the value within the range.
This operation is $O(log~n)$ (in the number of values in the range)
for frame of reference columns, and $O(log~n)$ (in the number of runs
on the page) for run length encoded columns. The multicolumn
implementation uses this method to look up tuples by beginning with
the entire page in range, and calling each compressor's implementation
in order to narrow the search until the correct tuple(s) are located
or the range is empty. Note that partially-matching tuples are only
partially examined during the search, and that our binary searches
within a column should have better cache locality than searches of
row-oriented page layouts.
We have not examined the tradeoffs between different implementations
of tuple lookups. Currently, rather than using binary search to find
the boundaries of each range, our compressors simply iterate over the
compressed representation of the data in order to progressively narrow
2007-11-16 18:27:36 +00:00
the range of tuples to be considered. It is possible that (because of
2007-11-13 18:35:32 +00:00
expensive branch mispredictions and \rowss small pages) that our
linear search implementation will outperform approaches based upon
binary search.
\section{Evaluation}
\subsection{The data set}
In order to evaluate \rowss performance, we used it to index
weather data. The data we used ranges from May 1,
2007 to Nov 2, 2007, and contains readings from ground stations around
the world~\cite{nssl}. This data is approximately $1.3GB$ when stored in an
uncompressed tab delimited file. We duplicated the data by changing
the date fields to cover ranges from 2001 to 2009, producing a 12GB
ASCII dataset that contains approximately 122 million tuples.
Duplicating the data should have a limited effect on \rowss
compression ratios. Although we index on geographic position, placing
all readings from a particular station in a contiguous range, we then
2007-11-16 15:55:50 +00:00
index on date. This separates most duplicate versions of the same tuple
from each other.
\rows only supports integer data types. We encode the ASCII columns
in the data by packing each character into 5 bits (the strings only
contain the characters A-Z, ``+,'' ``-,'' and ``*''). Floating point columns in
the raw data set are always represented with two digits of precision;
2007-11-16 15:55:50 +00:00
we multiply them by 100, yielding an integer. The data source uses
nonsensical readings (such as -9999.00) to represent NULL. Our
prototype does not understand NULL, so we leave these fields intact.
We represent each column as a 32-bit integer (even when a 16-bit value
2007-11-16 15:55:50 +00:00
would do), except current weather conditions, which is packed into a
64-bit integer. Table~\ref{tab:schema} lists the columns and
compression algorithms we assigned to each column. The ``Key'' column refers
to whether or not the field was used as part of a MySQL primary key.
InnoDB performance tuning guides suggest limiting the length of the
table's primary key. \rows does not support this optimization, so we
indexed the \rows table on all columns.
\begin{table}
\caption{Weather data schema}
\centering
\label{tab:schema}
\begin{tabular}{|l|c|c|} \hline
Column Name & Compression Format & Key \\ \hline
Longitude & RLE & * \\ \hline
Latitude & RLE & * \\\hline
Timestamp & PFOR & * \\\hline
Weather conditions& RLE & \\\hline
Station ID & RLE & \\\hline
Elevation & RLE & \\\hline
Temperature & PFOR & \\\hline
Wind Direction & PFOR & \\\hline
Wind Speed & PFOR & \\\hline
Wind Gust Speed & RLE & \\
\hline\end{tabular}
\end{table}
\rows targets seek limited applications; we assign a (single) random
order to the tuples, and insert them in this order. We compare \rowss
performance with the MySQL InnoDB storage engine's bulk
loader\footnote{We also evaluated MySQL's MyISAM table format.
2007-11-16 18:27:36 +00:00
Predictably, performance degraded quickly as the tree grew; ISAM indices do not
support node splits.}. This avoids the overhead of SQL insert
2007-11-16 15:55:50 +00:00
statements. To force InnoDB to update its B-Tree index in place, we
break the dataset into 100,000 tuple chunks, and bulk load each one in
succession.
If we did not do this, MySQL would simply sort the tuples, and then
2007-11-16 18:27:36 +00:00
bulk load the index. This behavior is unacceptable in low-latency
environments. Breaking the bulk load into multiple chunks
forces MySQL to make intermediate results available as the bulk load
proceeds\footnote{MySQL's {\tt concurrent} keyword allows access to
{\em existing} data during a bulk load; new data is still exposed
atomically.}.
We set InnoDB's buffer pool size to 1GB, MySQL's bulk insert buffer
size to 900MB, the log buffer size to 100MB, and disabled InnoDB's
2007-11-16 15:55:50 +00:00
double buffer, which writes a copy of each updated page
to a sequential log. The double buffer increases the amount of I/O
performed by InnoDB, but allows it to decrease the frequency with
which it needs to fsync() the buffer pool to disk. Once the system
reaches steady state, this would not save InnoDB from performing
2007-11-16 18:27:36 +00:00
random I/O, but it would increase I/O overhead.
We compiled \rowss C components with ``-O2'', and the C++ components
with ``-O3''. The later compiler flag is crucial, as compiler
inlining and other optimizations improve \rowss compression throughput
significantly. \rows was set to allocate $1GB$ to $C0$ and another
$1GB$ to its buffer pool. The later memory is essentially wasted,
given the buffer pool's LRU page replacement policy, and \rowss
sequential I/O patterns.
2007-11-16 15:55:50 +00:00
Our test hardware has two dual core 64-bit 3GHz Xeon processors with
2007-11-16 18:27:36 +00:00
2MB of cache (Linux reports 4 CPUs) and 8GB of RAM. All software used during our tests
was compiled for 64 bit architectures. We used a 64-bit Ubuntu Gutsy
(Linux ``2.6.22-14-generic'') installation, and the
``5.0.45-Debian\_1ubuntu3'' build of MySQL.
\subsection{Comparison with conventional techniques}
\begin{figure}
\centering \epsfig{file=average-throughput.pdf, width=3.33in}
\caption{Insertion throughput (log-log, average over entire run).}
\label{fig:avg-thru}
\end{figure}
\begin{figure}
\centering
\epsfig{file=average-ms-tup.pdf, width=3.33in}
\caption{Tuple insertion time (log-log, average over entire run).}
\label{fig:avg-tup}
\end{figure}
2007-11-13 18:35:32 +00:00
2007-11-16 15:55:50 +00:00
As Figure~\ref{fig:avg-thru} shows, on an empty tree \rows provides
roughly 7.5 times more throughput than InnoDB. As the tree size
increases, InnoDB's performance degrades rapidly. After 35 million
tuple insertions, we terminated the InnoDB run, as \rows was providing
nearly 100 times more throughput. We continued the \rows run until
the dataset was exhausted; at this point, it was providing
approximately $\frac{1}{10}$th its original throughput, and had a
target $R$ value of $7.1$. Figure~\ref{fig:avg-tup} suggests that
InnoDB was not actually disk bound during our experiments; its
worst-case average tuple insertion time was approximately $3.4 ms$;
2007-11-16 15:55:50 +00:00
well below the drive's average access time. Therefore, we believe
that the operating system's page cache was insulating InnoDB from disk
bottlenecks\footnote{In the process of running our experiments, we
found that while \rows correctly handles 64-bit file offsets, and
runs on 64-bit platforms, it crashes when given more than 2GB of
RAM.}. This problem with our experimental setup should work in InnoDB's favor.
\begin{figure}
\centering
\epsfig{file=instantaneous-throughput.pdf, width=3.33in}
\caption{Instantaneous insertion throughput (average over 100,000 tuple windows).}
\label{fig:inst-thru}
\end{figure}
%\begin{figure}
%\centering
%\epsfig{file=instantaneous-ms-tup.pdf, width=3.33in}
%\caption{Instantaneous tuple insertion time (average over 100,000 tuple windows).}
%\end{figure}
2007-11-16 15:55:50 +00:00
\subsection{Prototype evaluation}
2007-11-16 15:55:50 +00:00
\rows outperforms B-Tree based solutions, as expected. However, the
prior section says little about the overall quality of our prototype
implementation. In this section, we measure update latency, and
compare our implementation's performance with our simplified
analytical model.
Figure~\ref{fig:inst-thru} reports \rowss replication throughput
averaged over windows of 100,000 tuple insertions. The large downward
spikes occur periodically throughout our experimental run, though the
figure is truncated to only show the first 10 million inserts. They
occur for two reasons. First, $C0$ accepts insertions at a much
greater rate than $C1$ or $C2$ can accept them. Over 100,000 tuples
fit in memory, so multiple samples are taken before each new $C0$
component blocks on the disk bound mergers. Second, \rows merges
2007-11-16 18:27:36 +00:00
entire trees at once, occasionally blocking smaller components
for long periods of time while larger components complete a merge
step. Both of these problems could be masked by rate limiting the
updates presented to \rows. A better solution would perform
incremental tree merges instead of merging entire components at once.
This paper has mentioned a number of limitations in our prototype
2007-11-16 18:27:36 +00:00
implementation. Figure~\ref{fig:4R} seeks to quantify the performance impact of
these limitations. This figure uses our simplistic analytical model
2007-11-16 18:27:36 +00:00
to calculate \rowss effective disk throughput utilization from \rowss
reported value of $R$ and instantaneous throughput. According to our
model, we should expect an ideal, uncompressed version of \rows to
2007-11-16 15:55:50 +00:00
perform about twice as fast as our prototype performed during our experiments. During our tests, \rows
maintains a compression ratio of two. Therefore, our model suggests
that the prototype is running at $\frac{1}{4}$th its ideal speed.
2007-11-16 15:55:50 +00:00
A number of factors contribute to the discrepancy between our model
and our prototype's performance. First, the prototype's
whole-tree-at-a-time approach to merging forces us to make extremely
coarse and infrequent runtime adjustments to the ratios between tree
components. This prevents \rows from reliably keeping the ratios near
2007-11-16 15:55:50 +00:00
the current target value for $R$. Second, \rows currently
synchronously forces tree components to disk. Given our large buffer
pool, a significant fraction of each new tree component is in the
buffer pool or operating system cache when the merge thread forces it
to disk. This prevents \rows from overlapping I/O with computation.
2007-11-16 15:55:50 +00:00
Finally, our analytical model neglects some minor sources of storage
overhead.
One other factor significantly limits our prototype's performance.
2007-11-16 18:27:36 +00:00
Atomically replacing $C0$ doubles \rows peak memory utilization,
halving the effective size of $C0$. The balanced tree implementation
that we use roughly doubles memory utilization again. Therefore, in
our tests, the prototype was wasting approximately $750MB$ of the
$1GB$ we allocated for $C0$.
Our performance figures show that \rows significantly outperforms a
popular, production quality B-Tree implementation. Our experiments
2007-11-16 15:55:50 +00:00
reveal a number of deficiencies in our prototype implementation,
suggesting that further implementation efforts would improve its
performance significantly. Finally, though our prototype could be
improved, it already performs at roughly $\frac{1}{4}$th of its ideal
throughput. Our analytical models suggest that it will significantly
outperform any B-Tree implementation when applied to appropriate
update workloads.
\begin{figure}
\centering
\epsfig{file=4R-throughput.pdf, width=3.33in}
\caption{The \rows prototype's effective bandwidth utilization. Given
infinite CPU time and a perfect implementation, our simplified model predicts $4R * throughput = sequential~disk~bandwidth *
compression~ratio$. (Our experimental setup never updates tuples in
place)}
\label{fig:4R}
\end{figure}
\section{Related Work}
2007-11-16 15:55:50 +00:00
\subsection{LSM-Trees}
2007-11-16 15:55:50 +00:00
The original LSM-Tree work\cite{lsm} provides a more detailed
2007-11-16 18:27:36 +00:00
analytical model than the one presented above. It focuses on update
intensive OLTP (TPC-A) workloads, and hardware provisioning for steady
2007-11-16 18:27:36 +00:00
state workloads.
2007-11-16 15:55:50 +00:00
Later work proposes the reuse of existing B-Tree implementations as
the underlying storage mechanism for LSM-Trees\cite{cidrPartitionedBTree}. Many
standard B-Tree operations (such as prefix compression and bulk insertion)
would benefit LSM-Tree implementations. \rows uses a custom tree
implementation so that it can take advantage of compression.
2007-11-16 15:55:50 +00:00
Compression algorithms used in B-Tree implementations must provide for
efficient, in place updates of tree nodes. The bulk-load update of
\rows updates imposes fewer constraints upon our compression
algorithms.
2007-11-16 15:55:50 +00:00
Recent work on optimizing B-Trees for write intensive updates dynamically
relocates regions of B-Trees during
writes~\cite{bTreeHighUpdateRates}. This reduces index fragmentation,
but still relies upon random I/O in the worst case. In contrast,
2007-11-16 15:55:50 +00:00
LSM-Trees never use disk-seeks to service write requests, and produce
perfectly laid out B-Trees.
2007-11-16 15:55:50 +00:00
The problem of {\em Online B-Tree merging} is closely related to
LSM-Trees' merge process. B-Tree merging addresses situations where
2007-11-16 18:27:36 +00:00
the contents of a single table index have been split across two
2007-11-16 15:55:50 +00:00
physical B-Trees that now need to be reconciled. This situation
arises, for example, during rebalancing of partitions within a cluster
of database machines.
One particularly interesting approach lazily piggybacks merge
operations on top of tree access requests. Upon servicing an index
2007-11-16 15:55:50 +00:00
probe or range scan, the system must read leaf nodes from both B-Trees.
Rather than simply evicting the pages from cache, lazy merging merges
the portion of the tree that has already been brought into
memory~\cite{onlineMerging}.
The original LSM-Tree paper proposes a mechanism that provides delayed
LSM-Tree index scans with no additional I/O. The idea is to wait for
the merge thread to make a pass over the index, and to supply the
pages it produces to the index scan before evicting them from the
buffer pool.
2007-11-16 15:55:50 +00:00
If one were to applying lazy merging to an LSM-Tree, it would service
range scans immediately without significantly increasing the amount of
I/O performed by the system.
\subsection{Row-based database compression}
Row-oriented database compression techniques compress each tuple
individually, and (in some cases) ignore similarities between adjacent
data items. One such approach (for low cardinality data) builds a
table-wide mapping from short identifier codes to longer string
values. The mapping table is stored in memory for convenient
compression and decompression. Other approaches include NULL
suppression, which stores runs of NULL values as a single count, and
leading zero suppression which stores integers in a variable length
format that suppresses leading zeros. Row-based schemes typically
allow for easy decompression of individual tuples. Therefore, they
generally store the offset of each tuple explicitly at the head of
each page.
Another approach is to compress page data using a generic compression
algorithm, such as gzip. The primary drawback to this approach is
that the size of the compressed page is not known until after
compression. Also, general purpose compression techniques are
typically more processor intensive than specialized database
compression techniques~\cite{rowImplementationPerf}.
\subsection{Column-oriented database compression}
Column-based compression is based on the observation that sorted
columns of data are often easier to compress than sorted tuples. Each
column contains a single data type, and sorting decreases the
cardinality and range of data stored on each page. This increases the
effectiveness of simple, special purpose, compression schemes.
2007-11-16 15:55:50 +00:00
PFOR (patched frame of reference) was introduced as an extension to
the MonetDB\cite{pfor} column-oriented database, along with two other
formats (PFOR-delta, which is similar to PFOR, but stores values as
deltas, and PDICT, which encodes columns as keys and a dictionary that
maps to the original values). We plan to add both these formats to
2007-11-16 18:27:36 +00:00
\rows in the future. We chose these formats as a starting
2007-11-16 15:55:50 +00:00
point because they are amenable to superscalar optimization, and
compression is \rowss primary CPU bottleneck. Like MonetDB, each
\rows table is supported by custom-generated code.
C-Store, another column oriented database, has relational operators
that have been optimized to work directly on compressed
data\cite{compExec}. For example, when joining two run length encoded
columns, it is unnecessary to explicitly represent each row during the
join. This optimization would be particularly useful in \rows, as its
merge processes perform repeated joins over compressed data. Our
prototype does not make use of these optimizations, though they would
likely improve performance for CPU-bound workloads.
2007-11-16 15:55:50 +00:00
A recent paper provides a survey of database compression
techniques and characterizes the interaction between compression
algorithms, processing power and memory bus bandwidth. To the extent
that multiple columns from the same tuple are stored within the same
page, all formats within their classification scheme group information
from the same tuple together~\cite{bitsForChronos}.
\rows, which does not split tuples across pages, takes a different
2007-11-16 15:55:50 +00:00
approach, and stores each column separately within a page. Our column
oriented page layouts incur different types of per-page overhead, and
have fundamentally different processor
cache behaviors and instruction-level parallelism properties than the
schemes they consider.
In addition to supporting compression, column databases typically
optimize for queries that project away columns during processing.
They do this by precomputing the projection and potentially resorting
and recompressing the data. This reduces the amount of data on the
disk and the amount of I/O performed by the query. In a
column store, such optimizations happen off-line, leading to
high-latency inserts. \rows can support such optimizations by
2007-11-16 15:55:50 +00:00
producing multiple LSM-Trees for a single table.
Unlike read-optimized column-oriented databases, \rows is optimized
for write throughput, and provides low-latency, in-place updates.
This property does not come without cost; compared to a column
store, \rows must merge replicated data more often, achieves lower
compression ratios, and performs index lookups that are roughly twice
as expensive as a B-Tree lookup.
2007-11-13 18:35:32 +00:00
\subsection{Snapshot consistency}
2007-11-13 18:35:32 +00:00
\rows relies upon the correctness of the master database's concurrency
control algorithms to provide snapshot consistency to queries. \rows
is compatible with the two most popular approaches to concurrency
control in OLTP environments: two-phase locking and timestamps
(multiversion concurrency control).
\rows only processes read-only transactions. Therefore, its
concurrency control algorithms need only address read-write conflicts.
Well-understood techniques protect against read-write conflicts
without causing requests to block, deadlock or
livelock~\cite{concurrencyControl}.
\subsection{Log shipping}
Log shipping mechanisms are largely outside the scope of this paper;
any protocol that provides \rows replicas with up-to-date, intact
copies of the replication log will do. Depending on the desired level
of durability, a commit protocol could be used to ensure that the
2007-11-16 15:55:50 +00:00
\rows replica receives updates before the master commits. Because
\rows is already bound by sequential I/O throughput, and because the
replication log might not be appropriate for database recovery, large
deployments would probably opt to store recovery and logs on machines
2007-11-16 15:55:50 +00:00
that are not used for replication.
2007-11-13 18:35:32 +00:00
\section{Conclusion}
Compressed LSM trees are practical on modern hardware. As CPU
resources increase, increasingly sophisticated compression schemes
will become practical. Improved compression ratios improve \rowss
2007-11-16 15:55:50 +00:00
throughput by decreasing its sequential I/O requirements. In addition
to applying compression to LSM-Trees, we presented a new approach to
database replication that leverages the strengths of LSM-Tree indices
2007-11-16 18:27:36 +00:00
by avoiding index probing during updates. We also introduced the idea of using
2007-11-16 15:55:50 +00:00
snapshot consistency to provide concurrency control for LSM-Trees.
Our prototype's LSM-Tree recovery mechanism is extremely
straightforward, and makes use of a simple latching mechanism to
maintain our LSM-Trees' consistency. It can easily be extended to
more sophisticated LSM-Tree implementations that perform incremental
tree merging.
Our implementation is a first cut at a working version of \rows; we
have mentioned a number of potential improvements throughout this
2007-11-16 15:55:50 +00:00
paper. We have characterized the performance of our prototype, and
2007-11-16 18:27:36 +00:00
bounded the performance gain we can expect to achieve via continued
optimization of our prototype. Without compression, LSM-Trees can outperform
B-Tree based indices by at least 2 orders of magnitude. With real-world
2007-11-16 15:55:50 +00:00
database compression ratios ranging from 5-20x, we expect \rows
database replicas to outperform B-Tree based database replicas by an
additional factor of ten.
We implemented \rows to address scalability issues faced by large
2007-11-16 15:55:50 +00:00
scale database installations. \rows addresses seek-limited
2007-11-16 18:27:36 +00:00
applications that require near-realtime analytical and decision support
queries over extremely large, frequently updated data sets. We know
2007-11-16 15:55:50 +00:00
of no other database technology capable of addressing this class of
application. As automated financial transactions, and other real-time
data acquisition applications are deployed, applications with these
requirements are becoming increasingly common.
2007-11-13 18:35:32 +00:00
\bibliographystyle{abbrv}
\bibliography{rose} % sigproc.bib is the name of the Bibliography in this case
% You must have a proper ".bib" file
% and remember to run:
% latex bibtex latex latex
% to resolve all references
%
% ACM needs 'a single self-contained file'!
%
\balancecolumns % GM July 2000
% That's all folks!
\end{document}