mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-16 09:06:25 +00:00
86 lines
4.1 KiB
HTML
86 lines
4.1 KiB
HTML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<head>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||
<title>Database limits</title>
|
||
<link rel="stylesheet" href="gettingStarted.css" type="text/css" />
|
||
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
|
||
<link rel="start" href="index.html" title="Berkeley DB Programmer's Reference Guide" />
|
||
<link rel="up" href="am_misc.html" title="Chapter 4. Access Method Wrapup" />
|
||
<link rel="prev" href="am_misc_stability.html" title="Cursor stability" />
|
||
<link rel="next" href="am_misc_diskspace.html" title="Disk space requirements" />
|
||
</head>
|
||
<body>
|
||
<div xmlns="" class="navheader">
|
||
<div class="libver">
|
||
<p>Library Version 11.2.5.3</p>
|
||
</div>
|
||
<table width="100%" summary="Navigation header">
|
||
<tr>
|
||
<th colspan="3" align="center">Database limits</th>
|
||
</tr>
|
||
<tr>
|
||
<td width="20%" align="left"><a accesskey="p" href="am_misc_stability.html">Prev</a> </td>
|
||
<th width="60%" align="center">Chapter 4.
|
||
Access Method Wrapup
|
||
</th>
|
||
<td width="20%" align="right"> <a accesskey="n" href="am_misc_diskspace.html">Next</a></td>
|
||
</tr>
|
||
</table>
|
||
<hr />
|
||
</div>
|
||
<div class="sect1" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h2 class="title" style="clear: both"><a id="am_misc_dbsizes"></a>Database limits</h2>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>The largest database file that Berkeley DB can handle depends on the page size
|
||
selected by the application. Berkeley DB stores database file page numbers as
|
||
unsigned 32-bit numbers and database file page sizes as unsigned 16-bit
|
||
numbers. Using the maximum database page size of 65536, this results in
|
||
a maximum database file size of 2<sup>48</sup> (256 terabytes). The
|
||
minimum database page size is 512 bytes, which results in a minimum
|
||
maximum database size of 2<sup>41</sup> (2 terabytes).</p>
|
||
<p>The largest database file Berkeley DB can support is potentially further limited
|
||
if the host system does not have filesystem support for files larger than
|
||
2<sup>32</sup>, including the ability to seek to absolute offsets within
|
||
those files.</p>
|
||
<p>The largest key or data item that Berkeley DB can support is 2<sup>32</sup>,
|
||
or more likely limited by available memory. Specifically, while key and
|
||
data byte strings may be of essentially unlimited length, any one of
|
||
them must fit into available memory so that it can be returned to the
|
||
application. As some of the Berkeley DB interfaces return both key and data
|
||
items to the application, those interfaces will require that any
|
||
key/data pair fit simultaneously into memory. Further, as the access
|
||
methods may need to compare key and data items with other key and data
|
||
items, it may be a requirement that any two key or two data items fit
|
||
into available memory. Finally, when writing applications supporting
|
||
transactions, it may be necessary to have an additional copy of any data
|
||
item in memory for logging purposes.</p>
|
||
<p>The maximum Btree depth is 255.</p>
|
||
</div>
|
||
<div class="navfooter">
|
||
<hr />
|
||
<table width="100%" summary="Navigation footer">
|
||
<tr>
|
||
<td width="40%" align="left"><a accesskey="p" href="am_misc_stability.html">Prev</a> </td>
|
||
<td width="20%" align="center">
|
||
<a accesskey="u" href="am_misc.html">Up</a>
|
||
</td>
|
||
<td width="40%" align="right"> <a accesskey="n" href="am_misc_diskspace.html">Next</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td width="40%" align="left" valign="top">Cursor stability </td>
|
||
<td width="20%" align="center">
|
||
<a accesskey="h" href="index.html">Home</a>
|
||
</td>
|
||
<td width="40%" align="right" valign="top"> Disk space requirements</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
</body>
|
||
</html>
|