1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325
|
<?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>Writing In-Memory Berkeley DB Applications</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="Writing In-Memory Berkeley DB Applications" />
</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">Writing In-Memory Berkeley DB Applications</th>
</tr>
</table>
<hr />
</div>
<div class="article" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h1 class="title"><a id="idp22816"></a>Writing In-Memory Berkeley DB Applications</h1>
</div>
<div>
<div class="legalnotice">
<a id="idp41376"></a>
<p class="legalnotice-title">
<b>Legal Notice</b>
</p>
<span>
<p>
This documentation is distributed under an open source license.
You may review the terms of this license at:
<a class="ulink" href="http://www.oracle.com/technetwork/database/berkeleydb/downloads/oslicense-093458.html" target="_top">http://www.oracle.com/technetwork/database/berkeleydb/downloads/oslicense-093458.html</a>
</p>
<p>
Oracle, Berkeley DB,
and
Sleepycat are trademarks or registered trademarks of
Oracle. All rights to these marks are reserved.
No third-party use is permitted without the
express prior written consent of Oracle.
</p>
<p>
Other names may be trademarks of their respective owners.
</p>
<p>
To obtain a copy of this document's original source code, please
submit a request to the Oracle Technology Network forum at:
<a class="ulink" href="http://forums.oracle.com/forums/forum.jspa?forumID=271" target="_top">http://forums.oracle.com/forums/forum.jspa?forumID=271</a>
</p>
</span>
</div>
</div>
<div>
<p class="pubdate">9/9/2013</p>
</div>
</div>
<hr />
</div>
<div class="toc">
<p>
<b>Table of Contents</b>
</p>
<dl>
<dt>
<span class="sect1">
<a href="index.html#intro">Introduction</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="index.html#resources">Resources to be Managed</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="index.html#strategies">Strategies</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="index.html#dbfiles">Keeping the Database in Memory</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="index.html#env">Keeping Environments in Memory</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="index.html#cachesize">Sizing the Cache</a>
</span>
</dt>
<dd>
<dl>
<dt>
<span class="sect2">
<a href="index.html#dbcachesize-db">Specifying a Cache Size using the
Database Handle</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="index.html#dbcachesize-env">Specifying a Cache Size using the
Environment Handle</a>
</span>
</dt>
</dl>
</dd>
<dt>
<span class="sect1">
<a href="index.html#mpool-nofile">Keeping Temporary Overflow Pages in Memory</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="index.html#logs">Keeping Logs in Memory</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="index.html#in-mem-rep">In-Memory Replicated Applications</a>
</span>
</dt>
<dt>
<span class="sect1">
<a href="index.html#example_in-mem">Example In-Memory Application</a>
</span>
</dt>
</dl>
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="intro"></a>Introduction</h2>
</div>
</div>
</div>
<p>
This document describes how to write a DB application
that keeps its data entirely in memory. That is, the
application writes no data to disk. For this reason,
in-memory only applications typically discard all
data durability guarantees.
</p>
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Note</h3>
<p>
This document assume familiarity with the
<em class="citetitle">Getting Started with Berkeley DB</em> guide. If
you are using environments or transactions, then
you should also have an understanding of the
concepts in <em class="citetitle">Berkeley DB Getting Started with Transaction Processing</em>
guide.
</p>
</div>
<p>
There are several reasons why you might want to write an
in-memory only DB application. For platforms on which a
disk drive is available to back your data, an in-memory
application might be desirable from a performance
perspective. In this case, the data that your application
manages might be generated during run-time and so is of no
interest across application startups.
</p>
<p>
Other platforms are disk-less. In this case, an in-memory only
configuration is the only possible choice. Note that this
document's primary focus is disk-less systems for which an
on-disk filesystem is not available.
</p>
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="resources"></a>Resources to be Managed</h2>
</div>
</div>
</div>
<p>
Before continuing, it is worthwhile to briefly
describe the DB resources that must be managed
if you are going to configure an in-memory only
DB application. These are resources that are by
default persisted on disk, or backed by a
filesystem on disk. Some configuration is therefore
required to keep these resources in-memory only.
</p>
<p>
Note that you can configure only some of these
resources to be held in-memory, and allow others to
be backed by disk. This might be desireable for
some applications that wish to improve application
performance by, for example, eliminating disk I/O
for some, but not all, of these resources. However,
for the purpose of this document, we assume you
want to configure all of these resources to be held
in memory.
</p>
<p>
Managing these resources for an in-memory
application is described in detail later in this
article.
</p>
<div class="itemizedlist">
<ul type="disc">
<li>
<p>
Database files
</p>
<p>
Normally, DB stores your
database data within on-disk files.
For an entirely in-memory
application, you are required to turn
off this behavior.
</p>
</li>
<li>
<p>
Environment region files
</p>
<p>
DB environments manage region
files for a variety of purposes.
Normally these are backed by the
filesystem, but by using the
appropriate configuration option
you can cause region files to
reside in memory only.
</p>
</li>
<li>
<p>
Database cache
</p>
<p>
The DB cache must be configured
large enough to hold all your data
in memory. If you do not size your
cache large enough, then DB
will attempt to write pages to
disk. In a disk-less system, this
will result in an abnormal
termination of your program.
</p>
</li>
<li>
<p>
Logs
</p>
<p>
DB logs describe the write activity
that has occurred in your application.
They are used for a number of purposes,
such as recovery operations for
applications that are seeking data
durability guarantees.
</p>
<p>
For in-memory applications that do not
care about durability guarantees, logs
are still required if you want
transactional benefits other than
durability (such as isolation
and atomicity). This is because DB's
transactional subsystem requires logs,
even if you want to discard all data
durability guarantees.
</p>
<p>
If this describes your application, you
must enable logs but configure them to
reside only within memory.
</p>
</li>
<li>
<p>
Temporary overflow pages
</p>
<p>
You must disallow backing temporary
database files with the
filesystem. This is mostly a
configuration option, but it is
also dependent upon sizing your
cache correctly.
</p>
</li>
</ul>
</div>
<p>
In addition to these, if you are writing a replicated application (see
<em class="citetitle">Berkeley DB Getting Started with Replicated Applications</em> for an introduction to writing replicated
applications), there is internal replication information that is normally kept
on-disk. You can cause this information to be kept in-memory if you are
willing to accept some limitations in how your replicated application operates.
See <a class="xref" href="index.html#in-mem-rep" title="In-Memory Replicated Applications">In-Memory Replicated Applications</a> for more information.
</p>
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="strategies"></a>Strategies</h2>
</div>
</div>
</div>
<p>
DB is an extremely flexible product that can be
adapted to suit almost any data management
requirements. This means that you can configure
DB to operate entirely within memory, but still
retain some data durability guarantees or even
throw away all durability guarantees.
</p>
<p>
Data durability guarantees describe how persistent
your data is. That is, once you have made a change
to the data stored in your database, how much of a
guarantee do you require that that modification
will persist (not be lost)? There are a great many
options here. For the absolute best durability guarantee, you
should fully transaction-protect your data and
allow your data to be written to disk upon each
transaction commit. Of course, this guarantee is
not available for disk-less systems.
</p>
<p>
At the opposite end of the spectrum, you can throw
away all your data once your application is done
with it (for example, at application shutdown).
This is a good option if you are using DB only
as a kind of caching mechanism. In this case, you
obviously must either generate your data entirely
during runtime, or obtain it from some remote
location during application startup.
</p>
<p>
There are also durability options that exist somewhere in
between these two extremes. For example, disk-less
systems are sometimes backed by some kind of flash
memory (e.g. compact flash cards). These
platforms may want to limit the number of writes
applied to the backing media because it is capable
of accepting only a limited number of writes before it must
be replaced. For this reason, you might want to
limit data writes to the flash media only during
specific moments during your application's
runtime; for example, only at application shutdown.
</p>
<p>
Another way to improve data durability
for in-memory configurations is to use
DB replication to commit data to the network.
This strategy takes advantage of the fact that
running clients have in-memory copies of the data
and can take over in the event of an outage at the
master. The use of replication in this way
increases durability for your data while providing
the benefit of avoiding disk I/O on transaction
commit.
</p>
<p>
In-memory replicated applications are described in more
detail in
<a class="xref" href="index.html#in-mem-rep" title="In-Memory Replicated Applications">In-Memory Replicated Applications</a>.
</p>
<p>
The point here is to be aware that a great many
options are available to you when writing an
in-memory only application. That said, the focus of
this document is strictly disk-less systems; that
is, systems that provide no means by which
data can be written to persistent media.
</p>
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="dbfiles"></a>Keeping the Database in Memory</h2>
</div>
</div>
</div>
<p>
Normally DB databases are backed by the
filesystem. For in-memory applications, such as
is required on disk-less systems, you can cause your
database to only reside in-memory. That is,
their contents are stored entirely within DB's
cache.
</p>
<p>
There are two requirements for keeping your
database(s) in-memory.
The first is to size your cache such that it is big
enough to hold all your data in-memory. If your
cache fills up, then DB will return
<code class="literal">ENOMEM</code> on the next operation
that requests additional pages in the cache. As with all errors while
updating a database, the current transaction must be aborted. If the update
was being done without a transaction, then the application must close its
environment and database handles, reopen them, and then refresh the database
from some backup data source.
</p>
<p>
For information on setting the cache size, see
<a class="xref" href="index.html#cachesize" title="Sizing the Cache">Sizing the Cache</a>.
</p>
<p>
Beyond cache sizing, you also must tell DB not
to back your database with an on-disk file. You do
this by NOT providing a database file name
when you open the database. Note that the database
file name is different from the database name; you
can name your in-memory databases even if you
are not storing them in an on-disk file.
</p>
<p>
For example:
</p>
<pre class="programlisting">#include "db.h"
...
int ret, ret_c;
const char *db_name = "in_mem_db1";
u_int32_t db_flags; /* For open flags */
DB *dbp; /* Database handle */
...
/* Initialize the DB handle */
ret = db_create(&dbp, NULL, 0);
if (ret != 0) {
fprintf(stderr, "Error creating database handle: %s\n",
db_strerror(ret));
goto err;
}
db_flags = DB_CREATE; /* If it doesn't exist, create it */
/*
* Open the database. Note that the file name is NULL.
* This forces the database to be stored in the cache only.
* Also note that the database has a name, even though its
* file name is NULL.
*/
ret = dbp->open(dbp, /* Pointer to the database */
NULL, /* Txn pointer */
<strong class="userinput"><code>NULL,</code></strong> /* File name is not specified
* on purpose */
db_name, /* Logical db name. */
DB_BTREE, /* Database type (using btree) */
db_flags, /* Open flags */
0); /* File mode. Using defaults */
if (ret != 0) {
dbp->err(dbp, ret, "Database open failed");
goto err;
}
err:
/* Close the database */
if (dbp != NULL) {
ret_c = dbp->close(dbp, 0);
if (ret_c != 0) {
fprintf(stderr, "%s database close failed.\n",
db_strerror(ret_c));
ret = ret_c
}
} </pre>
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="env"></a>Keeping Environments in Memory</h2>
</div>
</div>
</div>
<p>
Like databases, DB environments are usually backed by the filesystem. In
fact, a big part of what environments do is identify the location on disk
where resources (such as log and database files) are kept.
</p>
<p>
However, environments are also used for managing resources, such as
obtaining new transactions, so they are useful even when building an
in-memory application. Therefore, if you are going to use an environment for
your in-memory DB application, you must configure it such that it does
not want to use the filesystem. There are two things you need to do here.
</p>
<p>
First, when you open your environment, do NOT identify a home directory. To
accomplish this, you must:
</p>
<div class="itemizedlist">
<ul type="disc">
<li>
<p>
NOT provide a value for the <code class="literal">db_home</code>
parameter on the
<code class="methodname">DB_ENV->open()</code>
method.
</p>
</li>
<li>
<p>
NOT have a DB_HOME environment variable set.
</p>
</li>
<li>
<p>
NOT call any of the methods that affect file naming
(<code class="methodname">DB_ENV->set_data_dir()</code>,
<code class="methodname">DB_ENV->set_lg_dir()</code>, or
<code class="methodname">DB_ENV->set_tmp_dir()</code>).
</p>
</li>
</ul>
</div>
<p>
Beyond this, you must also ensure that regions are backed by heap memory
instead of by the filesystem or system shared memory. You do this when you
open your environment by specifying the <code class="literal">DB_PRIVATE</code> flag.
Note that the use of <code class="literal">DB_PRIVATE</code> means that you can only
have one open handle for your environment at a time. Consequently, your
in-memory only application must be single-process, although it can be
multi-threaded.
</p>
<p>
For example:
</p>
<pre class="programlisting">#include "db.h"
...
int ret, ret_c;
u_int32_t env_flags; /* For open flags */
DB_ENV *envp; /* Environment handle */
...
/* Initialize the ENV handle */
ret = db_env_create(&envp, 0);
if (ret != 0) {
fprintf(stderr, "Error creating environment handle: %s\n",
db_strerror(ret));
goto err;
}
/*
* Environment flags. These are for a non-threaded
* in-memory application.
*/
env_flags =
DB_CREATE | /* Create the environment if it does not exist */
DB_INIT_LOCK | /* Initialize the locking subsystem */
DB_INIT_LOG | /* Initialize the logging subsystem */
DB_INIT_TXN | /* Initialize the transactional subsystem. This
* also turns on logging. */
DB_INIT_MPOOL | /* Initialize the memory pool (in-memory cache) */
<strong class="userinput"><code>DB_PRIVATE | /* Region files are not backed by the
* filesystem. Instead, they are backed by
* heap memory. */</code></strong>
/*
* Now open the environment. Notice that we do not provide a location
* for the environment's home directory. This is required for an
* in-memory only application.
*/
ret = envp->open(envp, <strong class="userinput"><code>NULL</code></strong>, env_flags, 0);
if (ret != 0) {
fprintf(stderr, "Error opening environment: %s\n",
db_strerror(ret));
goto err;
}
err:
/* Close the environment */
if (envp != NULL) {
ret_c = envp->close(envp, 0);
if (ret_c != 0) {
fprintf(stderr, "environment close failed: %s\n",
db_strerror(ret_c));
ret = ret_c
}
}</pre>
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="cachesize"></a>Sizing the Cache</h2>
</div>
</div>
</div>
<div class="toc">
<dl>
<dt>
<span class="sect2">
<a href="index.html#dbcachesize-db">Specifying a Cache Size using the
Database Handle</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="index.html#dbcachesize-env">Specifying a Cache Size using the
Environment Handle</a>
</span>
</dt>
</dl>
</div>
<p>
One of the most important considerations for an
in-memory application is to ensure that your
database cache is large enough. In a normal
application that is not in-memory, the cache
provides a mechanism by which frequently-used
data can be accessed without resorting to disk I/O.
For an in-memory application, the cache is the only
location your data can exist so it is critical that
you make the cache large enough for your data set.
</p>
<p>
You specify the size of your cache at application
startup. Obviously you should not specify a size
that is larger than available memory. Note that the
size you specify for your cache is actually a
<span class="emphasis"><em>maximum</em></span> size; DB will only
use memory as required so if you specify a cache
size of 1 GB but your data set is only ever 10 MB
in size, then 10 MB is what DB will use.
</p>
<p>
Note that if you specify a cache size less than
500 MB, then the cache size is automatically
increased by 25% to account for internal overhead
purposes.
</p>
<p>
There are two ways to specify a cache size,
depending on whether you are using a database
environment.
</p>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="dbcachesize-db"></a>Specifying a Cache Size using the
Database Handle</h3>
</div>
</div>
</div>
<p>
To select a cache size using the database
handle, use the
<code class="methodname">DB->set_cachesize()</code>
method. Note that you cannot use this
method after the database has been opened.
</p>
<p>
Also, if you are using a database environment,
it is an error to use this method. See
the next section for details on
selecting your cache size.
</p>
<p>
The following code fragment creates a
database handle, sets the cache size to
10 MB and then opens the database:
</p>
<pre class="programlisting">#include "db.h"
...
int ret, ret_c;
const char *db_name = "in_mem_db1";
u_int32_t db_flags; /* For open flags */
DB *dbp; /* Database handle */
...
/* Initialize the DB handle */
ret = db_create(&dbp, NULL, 0);
if (ret != 0) {
fprintf(stderr, "Error creating database handle: %s\n",
db_strerror(ret));
goto err;
}
<strong class="userinput"><code>/*************************************************************/
/*************************************************************/
/************* Set the cache size here **********************/
/*************************************************************/
/*************************************************************/
ret = dbp->set_cachesize(dbp,
0, /* 0 gigabytes */
10 * 1024 * 1024, /* 10 megabytes */
1); /* Create 1 cache. All memory will
* be allocated contiguously. */
if (ret != 0) {
dbp->err(dbp, ret, "Database open failed");
goto err;
}</code></strong>
db_flags = DB_CREATE; /* If it doesn't exist, create it */
ret = dbp->open(dbp, /* Pointer to the database */
NULL, /* Txn pointer */
NULL, /* File name is not specified on
* purpose */
db_name, /* Logical db name */
DB_BTREE, /* Database type (using btree) */
db_flags, /* Open flags */
0); /* File mode. Using defaults */
if (ret != 0) {
dbp->err(dbp, ret, "Database open failed");
goto err;
}
err:
/* Close the database */
if (dbp != NULL) {
ret_c = dbp->close(dbp, 0);
if (ret_c != 0) {
fprintf(stderr, "%s database close failed.\n",
db_strerror(ret_c));
ret = ret_c
}
} </pre>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="dbcachesize-env"></a>Specifying a Cache Size using the
Environment Handle</h3>
</div>
</div>
</div>
<p>
To select a cache size using the
environment handle, use the
<code class="methodname">ENV->set_cachesize()</code>
method. Note that you cannot use this
method after the environment has been opened.
</p>
<p>
The following code fragment creates an
environment handle, sets the cache size to
10 MB and then opens the environment: Once
opened, you can use the environment when
you open your database(s). This means all
your databases will use the same
cache.
</p>
<pre class="programlisting">#include "db.h"
...
int ret, ret_c;
u_int32_t env_flags; /* For open flags */
DB_ENV *envp; /* Environment handle */
...
/* Initialize the ENV handle */
ret = db_env_create(&envp, 0);
if (ret != 0) {
fprintf(stderr, "Error creating environment handle: %s\n",
db_strerror(ret));
goto err;
}
<strong class="userinput"><code>/*************************************************************/
/*************************************************************/
/************* Set the cache size here **********************/
/*************************************************************/
/*************************************************************/
ret =
envp->set_cachesize(envp,
0, /* 0 gigabytes */
10 * 1024 * 1024, /* 10 megabytes */
1); /* Create 1 cache. All memory will
* be allocated contiguously. */
if (ret != 0) {
envp->err(envp, ret, "Environment open failed");
goto err;
}</code></strong>
/*
* Environment flags. These are for a non-threaded
* in-memory application.
*/
env_flags =
DB_CREATE | /* Create the environment if it does not exist */
DB_INIT_LOCK | /* Initialize the locking subsystem */
DB_INIT_LOG | /* Initialize the logging subsystem */
DB_INIT_TXN | /* Initialize the transactional subsystem. This
* also turns on logging. */
DB_INIT_MPOOL | /* Initialize the memory pool (in-memory cache) */
DB_PRIVATE | /* Region files are not backed by the filesystem.
* Instead, they are backed by heap memory. */
/*
* Now open the environment. Notice that we do not provide a location
* for the environment's home directory. This is required for an
* in-memory only application.
*/
ret = envp->open(envp, NULL, env_flags, 0);
if (ret != 0) {
fprintf(stderr, "Error opening environment: %s\n",
db_strerror(ret));
goto err;
}
err:
/* Close the environment */
if (envp != NULL) {
ret_c = envp->close(envp, 0);
if (ret_c != 0) {
fprintf(stderr, "environment close failed: %s\n",
db_strerror(ret_c));
ret = ret_c
}
} </pre>
</div>
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="mpool-nofile"></a>Keeping Temporary Overflow Pages in Memory</h2>
</div>
</div>
</div>
<p>
Normally, when a database is opened, a temporary
file is opened on-disk to back the database. This
file is used if the database grows so large that it
fills the entire cache. At that time, database
pages that do not fit into the in-memory cache file
are written temporarily to this file.
</p>
<p>
For disk-less systems, you should configure your
databases so that this temporary file is not
created. When you do this, any attempt to create
new database pages once the cache is full will
fail.
</p>
<p>
You configure this option on a per-database handle
basis. That means you must configure this for every
in-memory database that your application uses.
</p>
<p>
To set this option, obtain the
<code class="literal">DB_MPOOLFILE</code> field from you
<code class="literal">DB</code> and then configure
<code class="literal">DB_MPOOL_NOFILE</code> using the
<code class="methodname">DB_MPOOLFILE->set_flags()</code>
method.
</p>
<p>
For example:
</p>
<pre class="programlisting">#include "db.h"
...
int ret, ret_c;
u_int32_t env_flags; /* For open flags */
DB_ENV *envp; /* Environment handle */
...
/*
* Configure the cache file. This can be done
* at any point in the application's life once the
* DB handle has been created.
*/
mpf = dbp->get_mpf(dbp);
ret = mpf->set_flags(mpf, DB_MPOOL_NOFILE, 1);
if (ret != 0) {
fprintf(stderr,
"Attempt failed to configure for no backing of temp files: %s\n",
db_strerror(ret));
goto err;
} </pre>
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="logs"></a>Keeping Logs in Memory</h2>
</div>
</div>
</div>
<p>
DB logs describe the write activity that has occurred in
your application. For a purely in-memory application, logs
should be used only if you wish to transaction-protect your
database writes as logs are required by the DB
transactional subsystem.
</p>
<p>
Note that transactions provide a number of guarantees. One
of these is not interesting to a purely in-memory
application (data durability). However, other transaction
guarantees such as isolation and atomicity might be of
interest to your application.
</p>
<p>
If this is the case for your application, then you must
configure your logs to be kept entirely in-memory. You
do this by setting a configuration option that prevents
DB from writing log data to disk.
Do this by setting the <code class="literal">DB_LOG_IN_MEMORY</code> flag using the
<code class="methodname">DB_ENV->log_set_config()</code> method.
</p>
<p>
In addition, you must configure your log buffer size so that it is capable
of holding all log information that can accumulate during your longest
running transaction. That is, make sure the in-memory log buffer is large
enough that no transaction will ever span the entire buffer. Also, avoid a
state where the in-memory buffer is full and no space can be freed because a
transaction that started the first log "file" is still active.
</p>
<p>
How much log buffer space is required is a function of the number of
transactions you have running concurrently, how long they last, and how much
write activity occurs within them. When in-memory logging is configured, the
default log buffer space is 1 MB.
</p>
<p>
You set your log buffer space using the
<code class="methodname">DB_ENV->set_lg_bsize()</code>.
</p>
<p>
For example, the following code fragment configure in-memory log usage, and
it configures the log buffer size to 10 MB:
</p>
<pre class="programlisting">#include "db.h"
...
int ret, ret_c;
u_int32_t env_flags; /* For open flags */
DB_ENV *envp; /* Environment handle */
...
/* Initialize the ENV handle */
ret = db_env_create(&envp, 0);
if (ret != 0) {
fprintf(stderr, "Error creating environment handle: %s\n",
db_strerror(ret));
goto err;
}
/*
* Environment flags. These are for a non-threaded
* in-memory application.
*/
env_flags =
DB_CREATE | /* Create the environment if it does not exist */
DB_INIT_LOCK | /* Initialize the locking subsystem */
DB_INIT_LOG | /* Initialize the logging subsystem */
DB_INIT_TXN | /* Initialize the transactional subsystem. This
* also turns on logging. */
DB_INIT_MPOOL | /* Initialize the memory pool (in-memory cache) */
DB_PRIVATE | /* Region files are not backed by the filesystem.
* Instead, they are backed by heap memory. */
<strong class="userinput"><code>/* Specify in-memory logging */
ret = envp->log_set_config(envp, DB_LOG_IN_MEMORY, 1);
if (ret != 0) {
fprintf(stderr, "Error setting log subsystem to in-memory: %s\n",
db_strerror(ret));
goto err;
}
/*
* Specify the size of the in-memory log buffer.
*/
ret = envp->set_lg_bsize(envp, 10 * 1024 * 1024);
if (ret != 0) {
fprintf(stderr, "Error increasing the log buffer size: %s\n",
db_strerror(ret));
goto err;
}</code></strong>
/*
* Now open the environment. Notice that we do not provide a location
* for the environment's home directory. This is required for an
* in-memory only application.
*/
ret = envp->open(envp, NULL, env_flags, 0);
if (ret != 0) {
fprintf(stderr, "Error opening environment: %s\n",
db_strerror(ret));
goto err;
}
err:
/* Close the environment */
if (envp != NULL) {
ret_c = envp->close(envp, 0);
if (ret_c != 0) {
fprintf(stderr, "environment close failed: %s\n",
db_strerror(ret_c));
ret = ret_c
}
} </pre>
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="in-mem-rep"></a>In-Memory Replicated Applications</h2>
</div>
</div>
</div>
<p>
If you are unfamiliar with writing DB replicated
applications, or if you are simply uninterested in this
topic, you can skip this section. For an introductory
description of DB replication, please see the
<em class="citetitle">Berkeley DB Getting Started with Replicated Applications</em> guide.
</p>
<p>
In-memory replicated applications can improve transaction
throughput by avoiding disk I/O. Network connections are
often faster than local synchronous disk writes, so
in-memory replicated applications can provide significantly
improved performance without entirely sacrificing
reliability.
</p>
<p>
All of your replication participants must be configured in
the same way. That is, they all must be configured for
in-memory storage of data, or they must all be configured
for on-disk storage of data. As a result, in-memory
replicated applications can achieve improved throughput
performance, but they do so at the cost of reduced
durability guarantees. This is because the transaction
commit is not backed by stable storage anywhere in the
replication group. However, this "commit to the network"
does not sacrifice all durability. Because running clients
should have in-memory copies of the data, a client can take
over in the event of an outage at the master and in this way
avoid the loss of data.
</p>
<p>
There are many internal resources used by the DB
replication subsystem which are by default backed by disk.
These internal resources help the DB subsystem ensure
election accuracy. While a complete description of these
resources is beyond the scope of this article, you should
know that you can cause all of these resources to be held
entirely in-memory. But you do so with some small chance
of operational errors in your replicated application.
</p>
<p>
If you cause a replicated application to keep its internal
replication resources in-memory, you run a small risk that
elections will fail or be unable to complete. However,
calling additional elections should eventually yield a
winner.
</p>
<p>
In addition, there is a slight possibility that the wrong
site might win an election, which could result in the loss
of data. This can happen if you have a site that is
repeatedly crashing and trying to come back up. A site like
this might be repeatedly sending out election information,
and the repeated messages might confuse other sites. For
replication applications that are not in-memory, these
extra messages would be ignored by other sites because they
would also contain some state information that allows other
sites to know which election messages are relevant. But
strictly in-memory replicated applications cannot maintain
this state information, and so some other sites might
become confused. The result might be that the wrong site
could be elected master due to the inconsistent information
that is available to them.
</p>
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Note</h3>
<p>
This is very much a corner case that you probably will
never see in your production systems, especially if
your sites are all stable and well-behaved.
</p>
</div>
<p>
If an election is won by the wrong site (site A), then some
other site (site B) probably has more recent log files than
the winner does. But since the wrong site A won the
election, site B will sync with the new master. This will
cause site B (and therefore, your entire replication group)
to lose any log files it contains that are more recent than
the files contained by site A.
</p>
<p>
If you are running a master that is configured to run with
internal replication resources in-memory, you should never
allow that site to appoint itself master again immediately
after crashing or rebooting. Doing so results in a
slightly higher risk of your client sites crashing. To
determine your next master, you should either hold an
election or appoint a different site to be master.
</p>
<p>
In order to cause a replication site to run entirely
in-memory, do all of the things described previously in
this document to place all other DB resources
in-memory. Then, when configuring replication, specify
<code class="literal">DB_REP_CONF_INMEM</code> to the
<code class="methodname">DB_ENV->rep_set_config()</code>
method.
</p>
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="example_in-mem"></a>Example In-Memory Application</h2>
</div>
</div>
</div>
<p>
The following brief example illustrates how to open
an application that is entirely in-memory. The
application opens an environment and a single
database, and does this in a way that the database
is transaction-protected.
</p>
<p>
Transactions can be
desirable for an in-memory application even though
you discard your durability guarantees, because of
the other things that transactions offer such as
atomicity and isolation.
</p>
<p>
Notice that the example does nothing other than
open and close the environment and database. DB
database reads and writes work identically between
in-memory-only and durable applications (that is,
applications that write database application to
durable storage). Consequently, there is no point
in illustrating those actions here.
</p>
<pre class="programlisting">/* We assume an ANSI-compatible compiler */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <db.h>
int
main(void)
{
/* Initialize our handles */
DB *dbp = NULL;
DB_ENV *envp = NULL;
DB_MPOOLFILE *mpf = NULL;
int ret, ret_t;
const char *db_name = "in_mem_db1";
u_int32_t open_flags;
/* Create the environment */
ret = db_env_create(&envp, 0);
if (ret != 0) {
fprintf(stderr, "Error creating environment handle: %s\n",
db_strerror(ret));
goto err;
}
open_flags =
DB_CREATE | /* Create the environment if it does not exist */
DB_INIT_LOCK | /* Initialize the locking subsystem */
DB_INIT_LOG | /* Initialize the logging subsystem */
DB_INIT_MPOOL | /* Initialize the memory pool (in-memory cache) */
DB_INIT_TXN |
DB_PRIVATE; /* Region files are not backed by the filesystem.
* Instead, they are backed by heap memory. */
/* Specify in-memory logging */
ret = envp->log_set_config(envp, DB_LOG_IN_MEMORY, 1);
if (ret != 0) {
fprintf(stderr, "Error setting log subsystem to in-memory: %s\n",
db_strerror(ret));
goto err;
}
/*
* Specify the size of the in-memory log buffer.
*/
ret = envp->set_lg_bsize(envp, 10 * 1024 * 1024);
if (ret != 0) {
fprintf(stderr, "Error increasing the log buffer size: %s\n",
db_strerror(ret));
goto err;
}
/*
* Specify the size of the in-memory cache.
*/
ret = envp->set_cachesize(envp, 0, 10 * 1024 * 1024, 1);
if (ret != 0) {
fprintf(stderr, "Error increasing the cache size: %s\n",
db_strerror(ret));
goto err;
}
/*
* Now actually open the environment. Notice that the environment home
* directory is NULL. This is required for an in-memory only
* application.
*/
ret = envp->open(envp, NULL, open_flags, 0);
if (ret != 0) {
fprintf(stderr, "Error opening environment: %s\n",
db_strerror(ret));
goto err;
}
/* Initialize the DB handle */
ret = db_create(&dbp, envp, 0);
if (ret != 0) {
envp->err(envp, ret,
"Attempt to create db handle failed.");
goto err;
}
/*
* Set the database open flags. Autocommit is used because we are
* transactional.
*/
open_flags = DB_CREATE | DB_AUTO_COMMIT;
ret = dbp->open(dbp, /* Pointer to the database */
NULL, /* Txn pointer */
NULL, /* File name -- Must be NULL for inmemory! */
db_name, /* Logical db name */
DB_BTREE, /* Database type (using btree) */
open_flags, /* Open flags */
0); /* File mode. Using defaults */
if (ret != 0) {
envp->err(envp, ret,
"Attempt to open db failed.");
goto err;
}
/* Configure the cache file */
mpf = dbp->get_mpf(dbp);
ret = mpf->set_flags(mpf, DB_MPOOL_NOFILE, 1);
if (ret != 0) {
envp->err(envp, ret,
"Attempt failed to configure for no backing of temp files.");
goto err;
}
err:
/* Close our database handle, if it was opened. */
if (dbp != NULL) {
ret_t = dbp->close(dbp, 0);
if (ret_t != 0) {
fprintf(stderr, "%s database close failed.\n",
db_strerror(ret_t));
ret = ret_t;
}
}
/* Close our environment, if it was opened. */
if (envp != NULL) {
ret_t = envp->close(envp, 0);
if (ret_t != 0) {
fprintf(stderr, "environment close failed: %s\n",
db_strerror(ret_t));
ret = ret_t;
}
}
/* Final status message and return. */
printf("I'm all done.\n");
return (ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
} </pre>
</div>
</div>
<div class="navfooter">
<hr />
</div>
</body>
</html>
|