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 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917
|
<!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/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>WiredTiger: WiredTiger Change Log</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="wiredtiger.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><a href="http://wiredtiger.com/"><img alt="Logo" src="LogoFinal-header.png" alt="WiredTiger" /></a></td>
<td style="padding-left: 0.5em;">
<div id="projectname">
 <span id="projectnumber">Version 3.2.1</span>
</div>
<div id="projectbrief"><!-- 3.2.1 --></div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="banner">
<a href="https://github.com/wiredtiger/wiredtiger">Fork me on GitHub</a>
<a class="last" href="http://groups.google.com/group/wiredtiger-users">Join my user group</a>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',false,false,'search.php','Search');
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('md_changelog.html','');});
</script>
<div id="doc-content">
<div class="header">
<div class="headertitle">
<div class="title">WiredTiger Change Log </div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><p>Ticket reference tags refer to tickets in the MongoDB JIRA tracking system: <a href="https://jira.mongodb.org">https://jira.mongodb.org</a></p>
<h2>WiredTiger release 3.2.1, 2019-08-27 </h2>
<p>See the upgrading documentation for details of API and behavior changes.</p>
<p>Significant changes:</p><ul>
<li><a href="https://jira.mongodb.org/browse/WT-3968">WT-3968</a> Use compression ratio to tune page sizes</li>
<li><a href="https://jira.mongodb.org/browse/WT-4156">WT-4156</a> Add a new salvage API option to wiredtiger_open</li>
<li><a href="https://jira.mongodb.org/browse/WT-4192">WT-4192</a> Remove support for raw compression in WiredTiger</li>
<li><a href="https://jira.mongodb.org/browse/WT-4426">WT-4426</a> Change WiredTiger data format to optionally include timestamps in cells</li>
<li><a href="https://jira.mongodb.org/browse/WT-4447">WT-4447</a> Add a quota like system to manage I/O per subsystem</li>
<li><a href="https://jira.mongodb.org/browse/WT-4494">WT-4494</a> Support import of of standalone WiredTiger files</li>
<li><a href="https://jira.mongodb.org/browse/WT-4670">WT-4670</a> Remove support for LevelDB APIs in WiredTiger</li>
<li><a href="https://jira.mongodb.org/browse/WT-4765">WT-4765</a> Remove support for Helium/Levyx data sources in WiredTiger</li>
<li><a href="https://jira.mongodb.org/browse/WT-4803">WT-4803</a> Implement file_max configuration for Cache Overflow mechanism</li>
<li><a href="https://jira.mongodb.org/browse/WT-4913">WT-4913</a> Fix the Windows CRC32 on blocks that aren't 8B aligned and/or multiples of 8B</li>
</ul>
<p>See JIRA changelog for a full listing: <a href="https://jira.mongodb.org/projects/WT/versions/21117">https://jira.mongodb.org/projects/WT/versions/21117</a> <a href="https://jira.mongodb.org/projects/WT/versions/22515">https://jira.mongodb.org/projects/WT/versions/22515</a></p>
<h2>WiredTiger release 3.1.0, 2018-07-12 </h2>
<p>See the upgrading documentation for details of API and behavior changes.</p>
<p>See JIRA changelog for a full listing: <a href="https://jira.mongodb.org/projects/WT/versions/19708">https://jira.mongodb.org/projects/WT/versions/19708</a></p>
<h2>WiredTiger release 3.0.0, 2018-01-08 </h2>
<p>See the upgrading documentation for details of API and behavior changes.</p>
<p>Significant changes:</p><ul>
<li><a href="https://jira.mongodb.org/browse/WT-3039">WT-3039</a> Change the log file format to record a previous LSN record</li>
<li><a href="https://jira.mongodb.org/browse/WT-3181">WT-3181</a> Add support for application defined transaction IDs via a mechanism called timestamps.</li>
<li><a href="https://jira.mongodb.org/browse/WT-3310">WT-3310</a> Add support to <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#ac6f0630cb70bb057aa4512f7888dc701" title="Alter a table. ">WT_SESSION::alter</a> to change table log setting</li>
<li><a href="https://jira.mongodb.org/browse/WT-3389">WT-3389</a> Restructure page split code to hold a split generation for the entire operation.</li>
<li><a href="https://jira.mongodb.org/browse/WT-3406">WT-3406</a> Fix a bug in reconciliation so that it ignores concurrent updates.</li>
<li><a href="https://jira.mongodb.org/browse/WT-3418">WT-3418</a> Fix a block manager race in tree close/open</li>
<li><a href="https://jira.mongodb.org/browse/WT-3435">WT-3435</a> Improvements to the cache overflow mechanism aka lookaside</li>
<li><a href="https://jira.mongodb.org/browse/WT-3437">WT-3437</a> Improvements to auto tuning of number of eviction workers</li>
<li><a href="https://jira.mongodb.org/browse/WT-3440">WT-3440</a> Add a log record when starting a checkpoint.</li>
<li><a href="https://jira.mongodb.org/browse/WT-3461">WT-3461</a> Avoid hangs when system clocks move backwards by using CLOCK_MONOTONIC for pthread_cond_timedwait if possible.</li>
<li><a href="https://jira.mongodb.org/browse/WT-3490">WT-3490</a> Fix a bug in <a class="el" href="struct_w_t___c_u_r_s_o_r.html#a349b739f9f1d4fc50497682527a4d738" title="Modify an existing record. ">WT_CURSOR.modify</a> unaligned size_t access.</li>
<li><a href="https://jira.mongodb.org/browse/WT-3495">WT-3495</a> Fix a bug so we don't ftruncate if log cursors are open</li>
<li><a href="https://jira.mongodb.org/browse/WT-3497">WT-3497</a> Improve logging message when hitting the configured session limits</li>
<li><a href="https://jira.mongodb.org/browse/WT-3537">WT-3537</a> Split pages in memory when nothing can be written</li>
<li><a href="https://jira.mongodb.org/browse/WT-3556">WT-3556</a> Remove wtstats support</li>
<li><a href="https://jira.mongodb.org/browse/WT-3681">WT-3681</a> Change recovery so that it doesn't truncate the last log file</li>
<li><a href="https://jira.mongodb.org/browse/WT-3683">WT-3683</a> Allow eviction of clean pages with history when cache is stuck</li>
<li><a href="https://jira.mongodb.org/browse/WT-3710">WT-3710</a> Get a page-level lock to ensure page splits are single threaded</li>
<li><a href="https://jira.mongodb.org/browse/WT-3752">WT-3752</a> Allow trimming of obsolete modify updates.</li>
</ul>
<p>See JIRA changelog for a full listing: <a href="https://jira.mongodb.org/projects/WT/versions/18401">https://jira.mongodb.org/projects/WT/versions/18401</a></p>
<h2>WiredTiger release 2.9.3, 2017-06-27 </h2>
<p>See the upgrading documentation for details of API and behavior changes.</p>
<p>Significant changes:</p><ul>
<li><a href="https://jira.mongodb.org/browse/WT-2972">WT-2972</a> Add an interface allowing partial updates to existing values</li>
<li><a href="https://jira.mongodb.org/browse/WT-3063">WT-3063</a> Add an interface allowing reservation of records for read-modify-write</li>
<li><a href="https://jira.mongodb.org/browse/WT-3142">WT-3142</a> Add a workload generator application</li>
<li><a href="https://jira.mongodb.org/browse/WT-3160">WT-3160</a> Improve eviction of internal pages from idle trees</li>
<li><a href="https://jira.mongodb.org/browse/WT-3245">WT-3245</a> Avoid hangs on shutdown when a utility thread encounters an error</li>
<li><a href="https://jira.mongodb.org/browse/WT-3258">WT-3258</a> Improve visibility into thread wait time due to pages exceeding memory_page_max</li>
<li><a href="https://jira.mongodb.org/browse/WT-3263">WT-3263</a> Allow archive on restart/recovery if clean shutdown</li>
<li><a href="https://jira.mongodb.org/browse/WT-3287">WT-3287</a> Review WiredTiger internal panic checks</li>
<li><a href="https://jira.mongodb.org/browse/WT-3292">WT-3292</a> Review/cleanup full-barrier calls in WiredTiger</li>
<li><a href="https://jira.mongodb.org/browse/WT-3296">WT-3296</a> LAS table fixes/improvements</li>
<li><a href="https://jira.mongodb.org/browse/WT-3327">WT-3327</a> Checkpoints can hang if time runs backward</li>
<li><a href="https://jira.mongodb.org/browse/WT-3345">WT-3345</a> Improve rwlock scaling</li>
<li><a href="https://jira.mongodb.org/browse/WT-3373">WT-3373</a> Access violation due to a bug in internal page splitting</li>
<li><a href="https://jira.mongodb.org/browse/WT-3379">WT-3379</a> Change when pages can be split to avoid excessively slowing some operations</li>
</ul>
<p>See JIRA changelog for a full listing: <a href="https://jira.mongodb.org/browse/WT/fixforversion/18291">https://jira.mongodb.org/browse/WT/fixforversion/18291</a></p>
<h2>WiredTiger release 2.9.2, 2017-05-25 </h2>
<p>See the upgrading documentation for details of API and behavior changes.</p>
<p>Significant changes:</p><ul>
<li><a href="https://jira.mongodb.org/browse/SERVER-16796">SERVER-16796</a> Increase logging activity for journal recovery operations</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-28168">SERVER-28168</a> Cannot start or repair MongoDB after unexpected shutdown.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-28194">SERVER-28194</a> Fix a bug where a missing WiredTiger.turtle file can result in data loss</li>
<li><a href="https://jira.mongodb.org/browse/WT-98">WT-98</a> Update the current cursor value without a search</li>
<li><a href="https://jira.mongodb.org/browse/WT-2439">WT-2439</a> Enhance reconciliation page layout</li>
<li><a href="https://jira.mongodb.org/browse/WT-2898">WT-2898</a> Improve performance of eviction-heavy workloads by dynamically controlling the number of eviction threads</li>
<li><a href="https://jira.mongodb.org/browse/WT-3097">WT-3097</a> Race on reconfigure or shutdown can lead to waiting for statistics log server</li>
<li><a href="https://jira.mongodb.org/browse/WT-3106">WT-3106</a> Add truncate support to command line wt utility</li>
<li><a href="https://jira.mongodb.org/browse/WT-3114">WT-3114</a> Avoid archiving log files immediately after recovery</li>
<li><a href="https://jira.mongodb.org/browse/WT-3115">WT-3115</a> Change the dhandle lock to a read/write lock</li>
<li><a href="https://jira.mongodb.org/browse/WT-3127">WT-3127</a> Fix a bug with CPU yield calls don't necessarily imply memory barriers</li>
<li><a href="https://jira.mongodb.org/browse/WT-3135">WT-3135</a> Fix a bug with search_near() for index with custom collator</li>
<li><a href="https://jira.mongodb.org/browse/WT-3137">WT-3137</a> Fix a hang in __log_slot_join/__log_slot_switch_internal</li>
<li><a href="https://jira.mongodb.org/browse/WT-3144">WT-3144</a> Fix a bug where random cursor returns not-found when descending to an empty page</li>
<li><a href="https://jira.mongodb.org/browse/WT-3148">WT-3148</a> Improve eviction efficiency with many small trees</li>
<li><a href="https://jira.mongodb.org/browse/WT-3149">WT-3149</a> Change eviction to start new walks from a random place in the tree</li>
<li><a href="https://jira.mongodb.org/browse/WT-3150">WT-3150</a> Reduce impact of checkpoints on eviction server</li>
<li><a href="https://jira.mongodb.org/browse/WT-3152">WT-3152</a> Convert table lock from a spinlock to a read write lock</li>
<li><a href="https://jira.mongodb.org/browse/WT-3157">WT-3157</a> Fix a bug in checkpoint/transaction integrity issue when writes fail.</li>
<li><a href="https://jira.mongodb.org/browse/WT-3158">WT-3158</a> Fix structure packing on Windows.</li>
<li><a href="https://jira.mongodb.org/browse/WT-3188">WT-3188</a> Fix error handling in logging where fatal errors could lead to a hang</li>
<li><a href="https://jira.mongodb.org/browse/WT-3193">WT-3193</a> Close a race between verify opening a handle and eviction visiting it</li>
<li><a href="https://jira.mongodb.org/browse/WT-3206">WT-3206</a> Fix a bug where core dump happened on NULL page index</li>
<li><a href="https://jira.mongodb.org/browse/WT-3218">WT-3218</a> Fix a bug that could lead to unexpected checkpoint ordering failures</li>
<li><a href="https://jira.mongodb.org/browse/WT-3243">WT-3243</a> Reorder log slot release so joins don't wait on IO</li>
<li><a href="https://jira.mongodb.org/browse/WT-3262">WT-3262</a> Stop making schema operations wait for cache</li>
</ul>
<p>See JIRA changelog for a full listing: <a href="https://jira.mongodb.org/browse/WT/fixforversion/17874">https://jira.mongodb.org/browse/WT/fixforversion/17874</a></p>
<h2>WiredTiger release 2.9.1, 2016-12-22 </h2>
<p>New features and API changes; refer to the API documentation for full details:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/SERVER-26545">SERVER-26545</a> Remove fixed-size limitation on WiredTiger hazard pointers. See the upgrading documentation for details</li>
<li><a href="https://jira.mongodb.org/browse/WT-283">WT-283</a> Add a new <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#ac6f0630cb70bb057aa4512f7888dc701" title="Alter a table. ">WT_SESSION::alter</a> method that can be used to reconfigure table metadata</li>
<li><a href="https://jira.mongodb.org/browse/WT-2670">WT-2670</a> Change the default file system access pattern advice for data files from random to no advice. Add access_pattern_hint configuration option for <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb" title="Create a table, column group, index or file. ">WT_SESSION::create</a> API that can be used to advise the file system of expected access semantics. See the upgrading documentation for details.</li>
<li><a href="https://jira.mongodb.org/browse/WT-3034">WT-3034</a> Add support for including updates when reading from named snapshots</li>
</ul>
<p>Significant changes and bug fixes:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-2960">WT-2960</a> Reduce likelihood of using the lookaside file, especially when inserting multi-megabyte values</li>
<li><a href="https://jira.mongodb.org/browse/WT-3056">WT-3056</a> Allow projected table and join cursors to use primary keys</li>
<li><a href="https://jira.mongodb.org/browse/WT-3070">WT-3070</a> Fix a bug in search_near on indexes</li>
</ul>
<p>Other noteworthy changes since the previous release:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-2336">WT-2336</a> Add a test validating schema operations via file system call monitoring</li>
<li><a href="https://jira.mongodb.org/browse/WT-2402">WT-2402</a> Pad structures to avoid cache line sharing</li>
<li><a href="https://jira.mongodb.org/browse/WT-2771">WT-2771</a> Add a statistic to track per-btree dirty cache usage</li>
<li><a href="https://jira.mongodb.org/browse/WT-2833">WT-2833</a> Add projections to wt dump utility</li>
<li><a href="https://jira.mongodb.org/browse/WT-2969">WT-2969</a> Possible snapshot corruption during compaction</li>
<li><a href="https://jira.mongodb.org/browse/WT-3014">WT-3014</a> Add GCC/clang support for ELF symbol visibility</li>
<li><a href="https://jira.mongodb.org/browse/WT-3021">WT-3021</a> Fixes for java log example, raw mode in java, and raw mode in log cursors</li>
<li><a href="https://jira.mongodb.org/browse/WT-3025">WT-3025</a> Fix error path in log_force_sync</li>
<li><a href="https://jira.mongodb.org/browse/WT-3028">WT-3028</a> Don't check for blocked eviction with in-memory workloads</li>
<li><a href="https://jira.mongodb.org/browse/WT-3030">WT-3030</a> Fix a race between scans and splits reading the index hint</li>
<li><a href="https://jira.mongodb.org/browse/WT-3037">WT-3037</a> Clean up some log slot comments</li>
<li><a href="https://jira.mongodb.org/browse/WT-3048">WT-3048</a> WiredTiger maximum size warning uses the wrong format</li>
<li><a href="https://jira.mongodb.org/browse/WT-3051">WT-3051</a> Remove external __wt_hex symbol</li>
<li><a href="https://jira.mongodb.org/browse/WT-3052">WT-3052</a> Improve search if index hint is wrong</li>
<li><a href="https://jira.mongodb.org/browse/WT-3053">WT-3053</a> Make Python use internal memory allocation again</li>
<li><a href="https://jira.mongodb.org/browse/WT-3054">WT-3054</a> Make a PackOutputStream constructor that is compatible with the previous interface.</li>
<li><a href="https://jira.mongodb.org/browse/WT-3055">WT-3055</a> When an AsyncOp is created, cache the whether the cursor is "raw"</li>
<li><a href="https://jira.mongodb.org/browse/WT-3057">WT-3057</a> WiredTiger hazard pointers should use the WT_REF, not the WT_PAGE</li>
<li><a href="https://jira.mongodb.org/browse/WT-3061">WT-3061</a> Syscall testing should support pwrite64 on Linux</li>
<li><a href="https://jira.mongodb.org/browse/WT-3064">WT-3064</a> Minor tree cleanups: .gitignore, NEWS misspelling</li>
<li><a href="https://jira.mongodb.org/browse/WT-3066">WT-3066</a> Minor code cleanups</li>
<li><a href="https://jira.mongodb.org/browse/WT-3068">WT-3068</a> Copy artifacts of test runs in wtperf_run script</li>
<li><a href="https://jira.mongodb.org/browse/WT-3068">WT-3068</a> Have Jenkins include specific files for copy rather than exclude</li>
<li><a href="https://jira.mongodb.org/browse/WT-3069">WT-3069</a> Fix LevelDB APIs build failures</li>
<li><a href="https://jira.mongodb.org/browse/WT-3071">WT-3071</a> Fixed sign-conversion compiler errors in Java and Python SWIG code</li>
<li><a href="https://jira.mongodb.org/browse/WT-3075">WT-3075</a> Document and enforce that WiredTiger now depends on Python 2.7</li>
<li><a href="https://jira.mongodb.org/browse/WT-3078">WT-3078</a> Test reconfiguration hang in the statlog server</li>
<li><a href="https://jira.mongodb.org/browse/WT-3080">WT-3080</a> Python test suite: add elapsed time for tests</li>
<li><a href="https://jira.mongodb.org/browse/WT-3082">WT-3082</a> Python test suite: shorten default run to avoid timeouts</li>
<li><a href="https://jira.mongodb.org/browse/WT-3084">WT-3084</a> Fix Coverity resource leak complaint</li>
<li><a href="https://jira.mongodb.org/browse/WT-3091">WT-3091</a> Add stats to test_perf001 test, so we can investigate what happened when it failed</li>
</ul>
<h2>WiredTiger release 2.9.0, 2016-09-06 </h2>
<p>New features and API changes; refer to the API documentation for full details:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-2360">WT-2360</a> Add nesting and disjunction functionality to cursor joins</li>
<li><a href="https://jira.mongodb.org/browse/WT-2552">WT-2552</a> Add a public API to allow custom filesystem implementations</li>
<li><a href="https://jira.mongodb.org/browse/WT-2738">WT-2738</a> Remove the ability to change the default checkpoint name. See the upgrading documentation for details.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2711">WT-2711</a> Change the statistics log configuration options. Restrict where statistics log files can be created to remove security vulnerability. See upgrading documentation for details.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2764">WT-2764</a> Enhance the checkpoint implementation, which led to a change in default eviction settings. See the upgrading documentation for details.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2880">WT-2880</a> Add Zstandard compression support</li>
<li>See the upgrading documentation for information about renamed and removed statistics.</li>
</ul>
<p>Significant changes and bug fixes:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-2026">WT-2026</a> Fix a bug where in-memory pages were allowed to grow too large</li>
<li><a href="https://jira.mongodb.org/browse/WT-2343">WT-2343</a> Ensure we cannot rename/drop when a backup cursor is open</li>
<li><a href="https://jira.mongodb.org/browse/WT-2520">WT-2520</a> Ensure <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a0334da4c85fe8af4197c9a7de27467d3" title="Verify a table or file. ">WT_SESSION::verify</a> does not alter tables</li>
<li><a href="https://jira.mongodb.org/browse/WT-2576">WT-2576</a> Ensure variable-length column-store cannot out-of-order return</li>
<li><a href="https://jira.mongodb.org/browse/WT-2664">WT-2664</a> Change eviction so any eviction thread can find candidates</li>
<li><a href="https://jira.mongodb.org/browse/WT-2702">WT-2702</a> Resolve an issue where under high thread load, WiredTiger exceeds cache size</li>
<li><a href="https://jira.mongodb.org/browse/WT-2731">WT-2731</a> Resolve an issue where raw compression can create pages that are larger than expected</li>
<li><a href="https://jira.mongodb.org/browse/WT-2737">WT-2737</a> Allow reconciliation to scrub dirty pages rather than evicting them</li>
<li><a href="https://jira.mongodb.org/browse/WT-2757">WT-2757</a> Fix a bug in column stores where it was not possible to retrieve the new record number after an append</li>
<li><a href="https://jira.mongodb.org/browse/WT-2816">WT-2816</a> Improve eviction performance</li>
</ul>
<p>Issues fixed in MongoDB:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/SERVER-23504">SERVER-23504</a> Resolve a resource leak</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-23588">SERVER-23588</a> Stop using _open_osfhandle on Windows</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-23659">SERVER-23659</a> Improve log error message at startup</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-23661">SERVER-23661</a> Fix an issue where $sample takes disproportionately long time on newly created collection</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-24306">SERVER-24306</a> Fix stall in log_flush switching to new files</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-24580">SERVER-24580</a> Add more eviction stats to track efficiency</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-24580">SERVER-24580</a> Enhance eviction when application threads are contributing</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-24971">SERVER-24971</a> Don't cache buffers after application eviction</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-25843">SERVER-25843</a> Remove a redundant test</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-25845">SERVER-25845</a> Resolve an explicit null dereferenced</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-25846">SERVER-25846</a> Resolve a dereference after null with a check</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-26753">SERVER-26753</a> Don't spin on a read-lock in a tight loop</li>
</ul>
<p>Other noteworthy changes since the previous release:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-2103">WT-2103</a> Add incremental backup testing to test/format</li>
<li><a href="https://jira.mongodb.org/browse/WT-2330">WT-2330</a> Ensure In-memory configurations do not create on-disk collection files</li>
<li><a href="https://jira.mongodb.org/browse/WT-2450">WT-2450</a> Resolve an issue where salvage releases pages, then explicitly evicts them. Which can race with the eviction server</li>
<li><a href="https://jira.mongodb.org/browse/WT-2453">WT-2453</a> Add multiple eviction queues</li>
<li><a href="https://jira.mongodb.org/browse/WT-2504">WT-2504</a> Remove READONLY conditional for base config</li>
<li><a href="https://jira.mongodb.org/browse/WT-2505">WT-2505</a> Resolve clang analyzer warnings</li>
<li><a href="https://jira.mongodb.org/browse/WT-2508">WT-2508</a> Ensure test programs should remove test directories on the "clean" target</li>
<li><a href="https://jira.mongodb.org/browse/WT-2512">WT-2512</a> Change how wtperf throttle values per thread are calculated</li>
<li><a href="https://jira.mongodb.org/browse/WT-2513">WT-2513</a> Fix a type conversion warning</li>
<li><a href="https://jira.mongodb.org/browse/WT-2517">WT-2517</a> Resolve incorrect uses of setvbuf on Windows</li>
<li><a href="https://jira.mongodb.org/browse/WT-2518">WT-2518</a> Optimization of LSM checkpoint handle acquisition</li>
<li><a href="https://jira.mongodb.org/browse/WT-2522">WT-2522</a> Resolve incorrect format code in message</li>
<li><a href="https://jira.mongodb.org/browse/WT-2525">WT-2525</a> Miscellaneous cleanups of In-memory configurations</li>
<li><a href="https://jira.mongodb.org/browse/WT-2526">WT-2526</a> Prevent mixing and matching readonly file-handles and read/write data-handles</li>
<li><a href="https://jira.mongodb.org/browse/WT-2528">WT-2528</a> Fix a style error in WiredTiger build</li>
<li><a href="https://jira.mongodb.org/browse/WT-2529">WT-2529</a> Be less aggressive asserting in readonly connections</li>
<li><a href="https://jira.mongodb.org/browse/WT-2531">WT-2531</a> Resolve a case where in-memory tables are wasting space in truncation</li>
<li><a href="https://jira.mongodb.org/browse/WT-2532">WT-2532</a> Change the WT_STREAM_APPEND and WT_STREAM_LINE_BUFFER flags as they overlap</li>
<li><a href="https://jira.mongodb.org/browse/WT-2533">WT-2533</a> Don't let in-memory tables return a zero size</li>
<li><a href="https://jira.mongodb.org/browse/WT-2534">WT-2534</a> Use atomic add when allocating transaction IDs</li>
<li><a href="https://jira.mongodb.org/browse/WT-2535">WT-2535</a> Extend test/format to test for transactions reading their writes</li>
<li><a href="https://jira.mongodb.org/browse/WT-2537">WT-2537</a> Check for an old and new uninitialized LSN for recovery</li>
<li><a href="https://jira.mongodb.org/browse/WT-2539">WT-2539</a> Make streams a separate handle type from files</li>
<li><a href="https://jira.mongodb.org/browse/WT-2540">WT-2540</a> Separate stream and file handle methods</li>
<li><a href="https://jira.mongodb.org/browse/WT-2542">WT-2542</a> Resolve fixed-length column store reconciliation overwriting original values</li>
<li><a href="https://jira.mongodb.org/browse/WT-2544">WT-2544</a> Fix eviction stats when clear is used</li>
<li><a href="https://jira.mongodb.org/browse/WT-2546">WT-2546</a> Change evict server to be smarter when it decides whether or not to evict pages</li>
<li><a href="https://jira.mongodb.org/browse/WT-2547">WT-2547</a> Add eviction testing configurations for 1 thread</li>
<li><a href="https://jira.mongodb.org/browse/WT-2548">WT-2548</a> Cap the amount of data handed to raw compression</li>
<li><a href="https://jira.mongodb.org/browse/WT-2550">WT-2550</a> Add support for raw mode cursors in java</li>
<li><a href="https://jira.mongodb.org/browse/WT-2553">WT-2553</a> Add some In-memory documentation and stress testing</li>
<li><a href="https://jira.mongodb.org/browse/WT-2556">WT-2556</a> Fix a typo in the Java example code</li>
<li><a href="https://jira.mongodb.org/browse/WT-2557">WT-2557</a> Ensure that we truncate logs before closing backup cursor</li>
<li><a href="https://jira.mongodb.org/browse/WT-2558">WT-2558</a> Reorganize WT_PAGE structure</li>
<li><a href="https://jira.mongodb.org/browse/WT-2559">WT-2559</a> Resolve a potential segfault in Windows logging code</li>
<li><a href="https://jira.mongodb.org/browse/WT-2560">WT-2560</a> Add a rwlock to protect transaction state, don't spin on this lock</li>
<li><a href="https://jira.mongodb.org/browse/WT-2562">WT-2562</a> Add sleep loop to adapt for slow machines like PPC</li>
<li><a href="https://jira.mongodb.org/browse/WT-2565">WT-2565</a> Further limit the amount of data passed to raw compression</li>
<li><a href="https://jira.mongodb.org/browse/WT-2566">WT-2566</a> Add explicit memory barriers to Lock/unlock operations</li>
<li><a href="https://jira.mongodb.org/browse/WT-2567">WT-2567</a> Add a check to see if logging is enabled for truncate rather than assuming it is</li>
<li><a href="https://jira.mongodb.org/browse/WT-2568">WT-2568</a> Add a backward compatible constructor for PackInputStream</li>
<li><a href="https://jira.mongodb.org/browse/WT-2569">WT-2569</a> Ensure __win_handle_read is followed by a call to GetLastError()</li>
<li><a href="https://jira.mongodb.org/browse/WT-2570">WT-2570</a> Minor lint and cleanups to code</li>
<li><a href="https://jira.mongodb.org/browse/WT-2571">WT-2571</a> Join code clean up</li>
<li><a href="https://jira.mongodb.org/browse/WT-2572">WT-2572</a> Ensure test/format doesn't select an incompatible set of options for in-memory options configured</li>
<li><a href="https://jira.mongodb.org/browse/WT-2573">WT-2573</a> Resolve a potential case where a double free can occur</li>
<li><a href="https://jira.mongodb.org/browse/WT-2574">WT-2574</a> Ensure test/format frees all allocated configure memory</li>
<li><a href="https://jira.mongodb.org/browse/WT-2576">WT-2576</a> Ensure variable-length column-store cannot out-of-order return</li>
<li><a href="https://jira.mongodb.org/browse/WT-2577">WT-2577</a> Resolve a potential double-free following an in-memory split</li>
<li><a href="https://jira.mongodb.org/browse/WT-2579">WT-2579</a> Change so diagnostic only code can use file streams directly</li>
<li><a href="https://jira.mongodb.org/browse/WT-2580">WT-2580</a> Fix potential SWIG naming conflict in Java</li>
<li><a href="https://jira.mongodb.org/browse/WT-2581">WT-2581</a> Resolve a case where we fail to track saved updates during a page split</li>
<li><a href="https://jira.mongodb.org/browse/WT-2582">WT-2582</a> Fix a case where eviction can return WT_RESTART when running in-memory</li>
<li><a href="https://jira.mongodb.org/browse/WT-2584">WT-2584</a> Change to not use periods at the end of error messages</li>
<li><a href="https://jira.mongodb.org/browse/WT-2586">WT-2586</a> Fix examples/ex_config</li>
<li><a href="https://jira.mongodb.org/browse/WT-2589">WT-2589</a> Ensure we clear the cursor statistics for LAS when 'clear' is set</li>
<li><a href="https://jira.mongodb.org/browse/WT-2592">WT-2592</a> Fix joins for the non-recno, non-raw case</li>
<li><a href="https://jira.mongodb.org/browse/WT-2593">WT-2593</a> Free the dirlist at the end of the function</li>
<li><a href="https://jira.mongodb.org/browse/WT-2595">WT-2595</a> Fix compiler warning in packing test</li>
<li><a href="https://jira.mongodb.org/browse/WT-2598">WT-2598</a> Change so that in-memory has faster lookup on file names</li>
<li><a href="https://jira.mongodb.org/browse/WT-2599">WT-2599</a> Split out the checksum code from the support directory</li>
<li><a href="https://jira.mongodb.org/browse/WT-2600">WT-2600</a> Clean up test program includes</li>
<li><a href="https://jira.mongodb.org/browse/WT-2602">WT-2602</a> In LSM, use the chunk size to set maximum page size in memory</li>
<li><a href="https://jira.mongodb.org/browse/WT-2605">WT-2605</a> Add C tests used in testing joins</li>
<li><a href="https://jira.mongodb.org/browse/WT-2609">WT-2609</a> Resolve incorrect "skips API_END call" error</li>
<li><a href="https://jira.mongodb.org/browse/WT-2610">WT-2610</a> Reduce hazard pointer array size</li>
<li><a href="https://jira.mongodb.org/browse/WT-2611">WT-2611</a> Modify wtperf to handle escaped quotes</li>
<li><a href="https://jira.mongodb.org/browse/WT-2612">WT-2612</a> Ensure the dist/s_prototypes script does not create a debugging file</li>
<li><a href="https://jira.mongodb.org/browse/WT-2613">WT-2613</a> Add WT_UNUSED to a variable to fix Windows compilation</li>
<li><a href="https://jira.mongodb.org/browse/WT-2615">WT-2615</a> Enabling checkpoints in test/format leads to reduced concurrency</li>
<li><a href="https://jira.mongodb.org/browse/WT-2616">WT-2616</a> Fix a deadlock with in-memory size lookups</li>
<li><a href="https://jira.mongodb.org/browse/WT-2617">WT-2617</a> Don't use u_int in the example code. It's not Windows native</li>
<li><a href="https://jira.mongodb.org/browse/WT-2621">WT-2621</a> Fix missing parentheses on call to __wt_errno</li>
<li><a href="https://jira.mongodb.org/browse/WT-2622">WT-2622</a> Clear old position for all random lookups</li>
<li><a href="https://jira.mongodb.org/browse/WT-2624">WT-2624</a> Fix example program build with MSVC 2013</li>
<li><a href="https://jira.mongodb.org/browse/WT-2626">WT-2626</a> Fix MSVC 2015 snprintf redefinition</li>
<li><a href="https://jira.mongodb.org/browse/WT-2627">WT-2627</a> Resolve Coverity complaints</li>
<li><a href="https://jira.mongodb.org/browse/WT-2628">WT-2628</a> Ensure reconciliation doesn't return without unlocking the page lock</li>
<li><a href="https://jira.mongodb.org/browse/WT-2629">WT-2629</a> Ensure stacks are not executable in assembly source</li>
<li><a href="https://jira.mongodb.org/browse/WT-2630">WT-2630</a> Rename pluggable filesystem methods to avoid reserved names</li>
<li><a href="https://jira.mongodb.org/browse/WT-2631">WT-2631</a> Ensure nullptr is not passed for parameters marked with attribute non-null</li>
<li><a href="https://jira.mongodb.org/browse/WT-2632">WT-2632</a> Tolerate EBUSY when a checkpoint cursor is open</li>
<li><a href="https://jira.mongodb.org/browse/WT-2637">WT-2637</a> Update file-extension documentation to cover not-supported cases</li>
<li><a href="https://jira.mongodb.org/browse/WT-2638">WT-2638</a> Add extension to the Windows file system implementation</li>
<li><a href="https://jira.mongodb.org/browse/WT-2644">WT-2644</a> Fix 'wt load -r' (rename) with LSM</li>
<li><a href="https://jira.mongodb.org/browse/WT-2645">WT-2645</a> Move the complexity of dump from the dump utility to the metadata cursor</li>
<li><a href="https://jira.mongodb.org/browse/WT-2646">WT-2646</a> Add checkpoint_wait configuration option to drop</li>
<li><a href="https://jira.mongodb.org/browse/WT-2648">WT-2648</a> Change cache-line alignment for new ports</li>
<li><a href="https://jira.mongodb.org/browse/WT-2651">WT-2651</a> Fix a Coverity found resource leak</li>
<li><a href="https://jira.mongodb.org/browse/WT-2652">WT-2652</a> Remove unnecessary wt_ftruncate call</li>
<li><a href="https://jira.mongodb.org/browse/WT-2653">WT-2653</a> Add display of device configuration to custom file-system example</li>
<li><a href="https://jira.mongodb.org/browse/WT-2656">WT-2656</a> Fix GCC 4.7 compiler warnings</li>
<li><a href="https://jira.mongodb.org/browse/WT-2658">WT-2658</a> Ensure we only include PPC-specific files in PPC builds</li>
<li><a href="https://jira.mongodb.org/browse/WT-2659">WT-2659</a> Assorted lint and cleanup to csuite tests</li>
<li><a href="https://jira.mongodb.org/browse/WT-2660">WT-2660</a> Fix a hang between eviction and connection close</li>
<li><a href="https://jira.mongodb.org/browse/WT-2662">WT-2662</a> For spell check, strip out double quote literals, they confuse aspell</li>
<li><a href="https://jira.mongodb.org/browse/WT-2664">WT-2664</a> Add ability for eviction workers to populate eviction queues</li>
<li><a href="https://jira.mongodb.org/browse/WT-2665">WT-2665</a> Limit allocator fragmentation from the WiredTiger cache</li>
<li><a href="https://jira.mongodb.org/browse/WT-2667">WT-2667</a> Add fops to Evergreen testing for Windows and Linux</li>
<li><a href="https://jira.mongodb.org/browse/WT-2668">WT-2668</a> Create join statistics that are useful and are easy to understand</li>
<li><a href="https://jira.mongodb.org/browse/WT-2671">WT-2671</a> Dump more information about the file layout in verify debug mode</li>
<li><a href="https://jira.mongodb.org/browse/WT-2672">WT-2672</a> Handle system calls that don't set errno</li>
<li><a href="https://jira.mongodb.org/browse/WT-2673">WT-2673</a> Stop automatically increasing memory page max</li>
<li><a href="https://jira.mongodb.org/browse/WT-2674">WT-2674</a> Simplify metadata file check</li>
<li><a href="https://jira.mongodb.org/browse/WT-2676">WT-2676</a> Don't use key size in column store in-memory splits</li>
<li><a href="https://jira.mongodb.org/browse/WT-2677">WT-2677</a> Fix JSON output so only printable ASCII is produced</li>
<li><a href="https://jira.mongodb.org/browse/WT-2678">WT-2678</a> Fix cases where metadata implies that an empty value is true</li>
<li><a href="https://jira.mongodb.org/browse/WT-2682">WT-2682</a> Add option to configure WiredTiger with strict compiler flags</li>
<li><a href="https://jira.mongodb.org/browse/WT-2683">WT-2683</a> Allow in memory storage engine to report zero disk usage</li>
<li><a href="https://jira.mongodb.org/browse/WT-2685">WT-2685</a> Fix clear walk hazard pointer failure</li>
<li><a href="https://jira.mongodb.org/browse/WT-2686">WT-2686</a> Report an error any time we fail to scan the log</li>
<li><a href="https://jira.mongodb.org/browse/WT-2687">WT-2687</a> Provide ability for test suite to verify the exit status of the wt utility</li>
<li><a href="https://jira.mongodb.org/browse/WT-2688">WT-2688</a> Improve build error messages when SWIG is unavailable</li>
<li><a href="https://jira.mongodb.org/browse/WT-2689">WT-2689</a> Fix heap-use-after-free on cursor error path</li>
<li><a href="https://jira.mongodb.org/browse/WT-2691">WT-2691</a> Use wrappers for ctype functions to avoid sign extension errors</li>
<li><a href="https://jira.mongodb.org/browse/WT-2692">WT-2692</a> Fix race in file system example</li>
<li><a href="https://jira.mongodb.org/browse/WT-2693">WT-2693</a> Ensure open_cursor error paths have consistent error handling</li>
<li><a href="https://jira.mongodb.org/browse/WT-2695">WT-2695</a> Integrate s390x accelerated crc32c support</li>
<li><a href="https://jira.mongodb.org/browse/WT-2696">WT-2696</a> Wait if we find an unbuffered flag without the size set yet</li>
<li><a href="https://jira.mongodb.org/browse/WT-2698">WT-2698</a> Change flag into atomically manipulated field to avoid deadlock</li>
<li><a href="https://jira.mongodb.org/browse/WT-2702">WT-2702</a> Block operations when the cache is 100% full</li>
<li><a href="https://jira.mongodb.org/browse/WT-2704">WT-2704</a> Fix bug in diagnostic code tracking duration of stuck cache</li>
<li><a href="https://jira.mongodb.org/browse/WT-2706">WT-2706</a> Fix lost log writes when switching files</li>
<li><a href="https://jira.mongodb.org/browse/WT-2707">WT-2707</a> Add stricter checks in dist/s_label, and add some WT_ERR calls</li>
<li><a href="https://jira.mongodb.org/browse/WT-2708">WT-2708</a> Fix a split child-update race with reconciliation/eviction</li>
<li><a href="https://jira.mongodb.org/browse/WT-2709">WT-2709</a> Resolve a connection reconfigure segfault in __wt_conn_cache_pool_destroy</li>
<li><a href="https://jira.mongodb.org/browse/WT-2710">WT-2710</a> WT_FILE_HANDLE_INMEM no longer needs an off field</li>
<li><a href="https://jira.mongodb.org/browse/WT-2713">WT-2713</a> Document WT_PANIC so pluggable filesystems can panic</li>
<li><a href="https://jira.mongodb.org/browse/WT-2715">WT-2715</a> Resolve random abort test failure with partial write</li>
<li><a href="https://jira.mongodb.org/browse/WT-2719">WT-2719</a> Allow make check without verbose configured</li>
<li><a href="https://jira.mongodb.org/browse/WT-2719">WT-2719</a> Fix memory leak in reconfig test</li>
<li><a href="https://jira.mongodb.org/browse/WT-2720">WT-2720</a> Change the return codes in run.py to error on failures</li>
<li><a href="https://jira.mongodb.org/browse/WT-2722">WT-2722</a> Escape regular expression meta-character so egrep works on all systems</li>
<li><a href="https://jira.mongodb.org/browse/WT-2724">WT-2724</a> Pass in session address, not pointer to it</li>
<li><a href="https://jira.mongodb.org/browse/WT-2728">WT-2728</a> Only verify the log file header during recovery</li>
<li><a href="https://jira.mongodb.org/browse/WT-2729">WT-2729</a> Focus eviction on the largest trees in cache</li>
<li><a href="https://jira.mongodb.org/browse/WT-2730">WT-2730</a> Btree can incorrectly match key slots on new pages</li>
<li><a href="https://jira.mongodb.org/browse/WT-2731">WT-2731</a> Finer adjustment for page size with raw compression</li>
<li><a href="https://jira.mongodb.org/browse/WT-2732">WT-2732</a> Coverity analysis defect 99665, Remove redundant test</li>
<li><a href="https://jira.mongodb.org/browse/WT-2734">WT-2734</a> Improve documentation of eviction configuration settings</li>
<li><a href="https://jira.mongodb.org/browse/WT-2739">WT-2739</a> pluggable file systems documentation cleanups</li>
<li><a href="https://jira.mongodb.org/browse/WT-2743">WT-2743</a> Fixup new I/O thread count statistics</li>
<li><a href="https://jira.mongodb.org/browse/WT-2744">WT-2744</a> Detect and ignore partial line</li>
<li><a href="https://jira.mongodb.org/browse/WT-2746">WT-2746</a> Add a new statistic tracking I/O for checkpoints</li>
<li><a href="https://jira.mongodb.org/browse/WT-2751">WT-2751</a> column-store statistics incorrectly calculates the number of entries</li>
<li><a href="https://jira.mongodb.org/browse/WT-2752">WT-2752</a> Fix errors in wtperf config</li>
<li><a href="https://jira.mongodb.org/browse/WT-2755">WT-2755</a> Fix for cases where tools treats size_t as 4B type</li>
<li><a href="https://jira.mongodb.org/browse/WT-2756">WT-2756</a> Upgrade the autoconf archive package to check for swig 3.0</li>
<li><a href="https://jira.mongodb.org/browse/WT-2757">WT-2757</a> Column tables behave differently when column names are provided</li>
<li><a href="https://jira.mongodb.org/browse/WT-2759">WT-2759</a> Releasing the hot-backup lock doesn't require the schema lock</li>
<li><a href="https://jira.mongodb.org/browse/WT-2760">WT-2760</a> Fix a bug in backup related to directory sync. Change the filesystem API to make durable the default</li>
<li><a href="https://jira.mongodb.org/browse/WT-2762">WT-2762</a> Handle 'Y' as an options from wtperf monitor file</li>
<li><a href="https://jira.mongodb.org/browse/WT-2763">WT-2763</a> Change test ID's in test_intpack to fix OS X test errors</li>
<li><a href="https://jira.mongodb.org/browse/WT-2764">WT-2764</a> Fix a bug calculating the dirty percentage of cache</li>
<li><a href="https://jira.mongodb.org/browse/WT-2765">WT-2765</a> Ensure indices are shown in the dump output</li>
<li><a href="https://jira.mongodb.org/browse/WT-2766">WT-2766</a> Don't sweep LAS cache when aren't making progress in eviction</li>
<li><a href="https://jira.mongodb.org/browse/WT-2767">WT-2767</a> In test/suite/run.py, add -s N option to run an individual scenario</li>
<li><a href="https://jira.mongodb.org/browse/WT-2769">WT-2769</a> Update documentation to reflect correct limits of memory_page_max</li>
<li><a href="https://jira.mongodb.org/browse/WT-2770">WT-2770</a> Add statistics tracking schema operations</li>
<li><a href="https://jira.mongodb.org/browse/WT-2772">WT-2772</a> Adjust log.wtperf config. Remove unneeded config entries</li>
<li><a href="https://jira.mongodb.org/browse/WT-2773">WT-2773</a> Ensure that search_near in an index finds exact matches</li>
<li><a href="https://jira.mongodb.org/browse/WT-2774">WT-2774</a> Minor cleanups/improvements</li>
<li><a href="https://jira.mongodb.org/browse/WT-2778">WT-2778</a> Enhance output formatting when running Python test suite</li>
<li><a href="https://jira.mongodb.org/browse/WT-2779">WT-2779</a> Fix large pages getting generated with raw compression</li>
<li><a href="https://jira.mongodb.org/browse/WT-2781">WT-2781</a> Don't take checkpoint lock if checkpoint_wait=0 for bulk cursor open</li>
<li><a href="https://jira.mongodb.org/browse/WT-2782">WT-2782</a> Minor text changes for file system functions</li>
<li><a href="https://jira.mongodb.org/browse/WT-2783">WT-2783</a> Clean up wtperf configuration object management</li>
<li><a href="https://jira.mongodb.org/browse/WT-2785">WT-2785</a> Scrub dirty pages rather than evicting them single-page reconciliation</li>
<li><a href="https://jira.mongodb.org/browse/WT-2787">WT-2787</a> Include src/include/wiredtiger_ext.h is problematic</li>
<li><a href="https://jira.mongodb.org/browse/WT-2788">WT-2788</a> Do not touch memory already freed during a close API call</li>
<li><a href="https://jira.mongodb.org/browse/WT-2791">WT-2791</a> Have evergreen upload artifacts for each build. Rename current artifacts to "Binaries"</li>
<li><a href="https://jira.mongodb.org/browse/WT-2793">WT-2793</a> Enhance statistics related to overflow values</li>
<li><a href="https://jira.mongodb.org/browse/WT-2795">WT-2795</a> Update documentation about read-only mode</li>
<li><a href="https://jira.mongodb.org/browse/WT-2796">WT-2796</a> Fix a memory leak when using the lookaside table</li>
<li><a href="https://jira.mongodb.org/browse/WT-2798">WT-2798</a> Fix data consistency bug with table creates during a checkpoint</li>
<li><a href="https://jira.mongodb.org/browse/WT-2800">WT-2800</a> Fix incorrect error message</li>
<li><a href="https://jira.mongodb.org/browse/WT-2801">WT-2801</a> Prevent eviction of metadata updates by a running checkpoint</li>
<li><a href="https://jira.mongodb.org/browse/WT-2802">WT-2802</a> Copy values during commit before releasing snapshot</li>
<li><a href="https://jira.mongodb.org/browse/WT-2803">WT-2803</a> Add VERBOSE=1 to all make check jobs</li>
<li><a href="https://jira.mongodb.org/browse/WT-2804">WT-2804</a> Don't read values in a tree without a snapshot</li>
<li><a href="https://jira.mongodb.org/browse/WT-2805">WT-2805</a> Avoid infinite recursion on error stream failure</li>
<li><a href="https://jira.mongodb.org/browse/WT-2806">WT-2806</a> Fix an off-by-one allocation in wtperf</li>
<li><a href="https://jira.mongodb.org/browse/WT-2807">WT-2807</a> Change the memory allocator for wtperf performance tests</li>
<li><a href="https://jira.mongodb.org/browse/WT-2811">WT-2811</a> The checkpoint session should not ignore it's own transaction ID</li>
<li><a href="https://jira.mongodb.org/browse/WT-2812">WT-2812</a> Verify cache_size before dividing to avoid division by 0</li>
<li><a href="https://jira.mongodb.org/browse/WT-2813">WT-2813</a> Configure eviction dirty settings explicitly for LSM in test/format</li>
<li><a href="https://jira.mongodb.org/browse/WT-2814">WT-2814</a> Add new single op truncate mode to wtperf</li>
<li><a href="https://jira.mongodb.org/browse/WT-2816">WT-2816</a> General improvements to WiredTiger eviction performance</li>
<li><a href="https://jira.mongodb.org/browse/WT-2817">WT-2817</a> Add wtperf conf to stress test checkpoints with updates</li>
<li><a href="https://jira.mongodb.org/browse/WT-2818">WT-2818</a> Change the page visibility check when queuing pages for eviction</li>
<li><a href="https://jira.mongodb.org/browse/WT-2820">WT-2820</a> Add gcc warn_unused_result attribute</li>
<li><a href="https://jira.mongodb.org/browse/WT-2822">WT-2822</a> Simplify error handling by using a panic mutex in functions that cannot fail</li>
<li><a href="https://jira.mongodb.org/browse/WT-2823">WT-2823</a> Support file handles without a truncate method</li>
<li><a href="https://jira.mongodb.org/browse/WT-2824">WT-2824</a> Fix double concatenation the config strings</li>
<li><a href="https://jira.mongodb.org/browse/WT-2826">WT-2826</a> Fix a clang38 false positive on uninitialized variable</li>
<li><a href="https://jira.mongodb.org/browse/WT-2827">WT-2827</a> Set a reasonable minimum for log_size</li>
<li><a href="https://jira.mongodb.org/browse/WT-2828">WT-2828</a> Change wtperf long tests to better match MongoDB workloads</li>
<li><a href="https://jira.mongodb.org/browse/WT-2829">WT-2829</a> Fix missing define for BerkeleyDB</li>
<li><a href="https://jira.mongodb.org/browse/WT-2831">WT-2831</a> Skip checkpointing if there have been no modifications</li>
<li><a href="https://jira.mongodb.org/browse/WT-2832">WT-2832</a> Python test uses hard-coded temporary directory</li>
<li><a href="https://jira.mongodb.org/browse/WT-2834">WT-2834</a> Fix sign-change warning with auto conversion from uint to int</li>
<li><a href="https://jira.mongodb.org/browse/WT-2834">WT-2834</a> Shared bloom filters allow only a partial shortcut</li>
<li><a href="https://jira.mongodb.org/browse/WT-2835">WT-2835</a> Stop WT_CONNECTION.leak-memory skipping memory map and cache cleanup</li>
<li><a href="https://jira.mongodb.org/browse/WT-2838">WT-2838</a> Don't free session handles on close if leak memory is configured</li>
<li><a href="https://jira.mongodb.org/browse/WT-2839">WT-2839</a> Remove cases ignoring return value of function</li>
<li><a href="https://jira.mongodb.org/browse/WT-2840">WT-2840</a> Fix garbage values found with clang analysis</li>
<li><a href="https://jira.mongodb.org/browse/WT-2841">WT-2841</a> Initialize verbose checkpoint timer at start of checkpoint</li>
<li><a href="https://jira.mongodb.org/browse/WT-2842">WT-2842</a> Add explicit include in wtperf to resolve build warning</li>
<li><a href="https://jira.mongodb.org/browse/WT-2843">WT-2843</a> If there is no truncate available, manually zero the log file</li>
<li><a href="https://jira.mongodb.org/browse/WT-2846">WT-2846</a> Ensure that all resources are released when destroying a thread group</li>
<li><a href="https://jira.mongodb.org/browse/WT-2846">WT-2846</a> Fixes for new thread group code</li>
<li><a href="https://jira.mongodb.org/browse/WT-2847">WT-2847</a> Merge fair locks into read/write locks</li>
<li><a href="https://jira.mongodb.org/browse/WT-2850">WT-2850</a> Fix clang 4.1 attribute warnings</li>
<li><a href="https://jira.mongodb.org/browse/WT-2853">WT-2853</a> Don't force eviction if multiple cursors are pinning the page</li>
<li><a href="https://jira.mongodb.org/browse/WT-2857">WT-2857</a> POSIX ftruncate calls should be use HAVE_FTRUNCATE define</li>
<li><a href="https://jira.mongodb.org/browse/WT-2858">WT-2858</a> Rename wtperf's CONFIG structure</li>
<li><a href="https://jira.mongodb.org/browse/WT-2859">WT-2859</a> Restructure statistics gathering macros</li>
<li><a href="https://jira.mongodb.org/browse/WT-2863">WT-2863</a> Support UTF-8 paths on Windows</li>
<li><a href="https://jira.mongodb.org/browse/WT-2864">WT-2864</a> Update reconfigure test to detect hangs</li>
<li><a href="https://jira.mongodb.org/browse/WT-2865">WT-2865</a> Fix a bug where the eviction server could panic after a WT_NOTFOUND</li>
<li><a href="https://jira.mongodb.org/browse/WT-2866">WT-2866</a> Don't set eviction stuck unless the cache is full</li>
<li><a href="https://jira.mongodb.org/browse/WT-2867">WT-2867</a> Review and fix barrier usage in __lsm_tree_close</li>
<li><a href="https://jira.mongodb.org/browse/WT-2868">WT-2868</a> Add sample_interval to checkpoint-stress.wtperf</li>
<li><a href="https://jira.mongodb.org/browse/WT-2869">WT-2869</a> Fix a performance regression on secondaries</li>
<li><a href="https://jira.mongodb.org/browse/WT-2870">WT-2870</a> Rename wtperf jobs for consistency</li>
<li><a href="https://jira.mongodb.org/browse/WT-2871">WT-2871</a> Make verbose formats and argument types match</li>
<li><a href="https://jira.mongodb.org/browse/WT-2872">WT-2872</a> Ensure tests with tiny caches don't get stuck due to the dirty trigger</li>
<li><a href="https://jira.mongodb.org/browse/WT-2873">WT-2873</a> Refactor CRC32 code</li>
<li><a href="https://jira.mongodb.org/browse/WT-2874">WT-2874</a> Change test_compact01 to avoid eviction</li>
<li><a href="https://jira.mongodb.org/browse/WT-2875">WT-2875</a> Add environment variable to disable long csuite tests</li>
<li><a href="https://jira.mongodb.org/browse/WT-2876">WT-2876</a> Add an oplog-like ability to wtperf utility</li>
<li><a href="https://jira.mongodb.org/browse/WT-2878">WT-2878</a> Fix an issue where verbose changes affected performance</li>
<li><a href="https://jira.mongodb.org/browse/WT-2881">WT-2881</a> Add -Wpedantic to clang compiler warning flags</li>
<li><a href="https://jira.mongodb.org/browse/WT-2883">WT-2883</a> Remove potentially recursive call for verbose handleops</li>
<li><a href="https://jira.mongodb.org/browse/WT-2885">WT-2885</a> Lint __wt_checkpoint_signal function</li>
<li><a href="https://jira.mongodb.org/browse/WT-2886">WT-2886</a> Ignore dirty eviction settings when in_memory is true</li>
<li><a href="https://jira.mongodb.org/browse/WT-2888">WT-2888</a> Switch functions to return void where possible</li>
<li><a href="https://jira.mongodb.org/browse/WT-2892">WT-2892</a> Fix case where hot backup can race with block truncate</li>
<li><a href="https://jira.mongodb.org/browse/WT-2894">WT-2894</a> Add wtperf stress workload that tries to induce negative scaling</li>
<li><a href="https://jira.mongodb.org/browse/WT-2895">WT-2895</a> Reduce the runtime of make check testing with disable long</li>
<li><a href="https://jira.mongodb.org/browse/WT-2896">WT-2896</a> Fix a resource leak</li>
<li><a href="https://jira.mongodb.org/browse/WT-2897">WT-2897</a> Fix an issue where checkpoints can become corrupted on failure</li>
<li><a href="https://jira.mongodb.org/browse/WT-2900">WT-2900</a> Add ARM8 build support to WiredTiger and fix ARM CRC assembler tags</li>
<li><a href="https://jira.mongodb.org/browse/WT-2901">WT-2901</a> Make checkpoint scrubbing configurable</li>
<li><a href="https://jira.mongodb.org/browse/WT-2902">WT-2902</a> Track per-tree the efficiency of eviction walks</li>
<li><a href="https://jira.mongodb.org/browse/WT-2903">WT-2903</a> Change the eviction_scrub_target default to 15%</li>
<li><a href="https://jira.mongodb.org/browse/WT-2904">WT-2904</a> Fix a bug where the reported checkpoint size could be many times data size</li>
<li><a href="https://jira.mongodb.org/browse/WT-2904">WT-2904</a> Revert overly strong assertion</li>
<li><a href="https://jira.mongodb.org/browse/WT-2905">WT-2905</a> Remove dead code</li>
<li><a href="https://jira.mongodb.org/browse/WT-2907">WT-2907</a> Fixed java concurrent close test to have both insert threads and scan threads</li>
<li><a href="https://jira.mongodb.org/browse/WT-2908">WT-2908</a> Add a dry-run option to python suite</li>
<li><a href="https://jira.mongodb.org/browse/WT-2910">WT-2910</a> When running in-memory, only evict dirty pages</li>
<li><a href="https://jira.mongodb.org/browse/WT-2911">WT-2911</a> Add support for gcc6</li>
<li><a href="https://jira.mongodb.org/browse/WT-2912">WT-2912</a> Make –enable-strict run on the zseries test box</li>
<li><a href="https://jira.mongodb.org/browse/WT-2913">WT-2913</a> Re-sort eviction queues if we find no new candidates</li>
<li><a href="https://jira.mongodb.org/browse/WT-2914">WT-2914</a> In test/csuite program, added explicit call to wiredtiger_open to satisfy some linkers</li>
<li><a href="https://jira.mongodb.org/browse/WT-2916">WT-2916</a> Fix and simplify s_whitespace</li>
<li><a href="https://jira.mongodb.org/browse/WT-2917">WT-2917</a> Split wtperf's configuration into per-database and per-run parts</li>
<li><a href="https://jira.mongodb.org/browse/WT-2918">WT-2918</a> The dist scripts create C files s_whitespace complains about</li>
<li><a href="https://jira.mongodb.org/browse/WT-2919">WT-2919</a> Don't mask error returns from style checking scripts</li>
<li><a href="https://jira.mongodb.org/browse/WT-2920">WT-2920</a> New eviction statistics</li>
<li><a href="https://jira.mongodb.org/browse/WT-2921">WT-2921</a> Reset the count when the last hazard pointer is cleared</li>
<li><a href="https://jira.mongodb.org/browse/WT-2923">WT-2923</a> Fix heap-use-after-free on address in compaction</li>
<li><a href="https://jira.mongodb.org/browse/WT-2924">WT-2924</a> Ensure we are doing eviction when threads are waiting for it</li>
<li><a href="https://jira.mongodb.org/browse/WT-2925">WT-2925</a> Change where the WT_THREAD_PANIC_FAIL flag lives</li>
<li><a href="https://jira.mongodb.org/browse/WT-2926">WT-2926</a> <a class="el" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#a579141678af06217b22869cbc604c6d4" title="Reconfigure a connection handle. ">WT_CONNECTION.reconfigure</a> can attempt unlock of not-locked lock</li>
<li><a href="https://jira.mongodb.org/browse/WT-2928">WT-2928</a> Don't give up when the urgent queue is half empty</li>
<li><a href="https://jira.mongodb.org/browse/WT-2928">WT-2928</a> Eviction failing to switch queues can lead to starvation</li>
<li><a href="https://jira.mongodb.org/browse/WT-2931">WT-2931</a> Enforce limits on dirty data for in-memory</li>
<li><a href="https://jira.mongodb.org/browse/WT-2932">WT-2932</a> Add a configuration option allowing tables to ignore cache limits</li>
<li><a href="https://jira.mongodb.org/browse/WT-2933">WT-2933</a> Fix a race between named snapshots and checkpoints</li>
<li><a href="https://jira.mongodb.org/browse/WT-2937">WT-2937</a> Only do an eviction walk after a page has been taken from the current queue</li>
<li><a href="https://jira.mongodb.org/browse/WT-2938">WT-2938</a> Change assembly file extensions from .S to .sx</li>
<li><a href="https://jira.mongodb.org/browse/WT-2941">WT-2941</a> Improve test/format to use faster key-generation functions</li>
<li><a href="https://jira.mongodb.org/browse/WT-2942">WT-2942</a> Verbose messages should not have newlines</li>
<li><a href="https://jira.mongodb.org/browse/WT-2945">WT-2945</a> Occasional hang running reconfigure fuzz test</li>
<li><a href="https://jira.mongodb.org/browse/WT-2946">WT-2946</a> Fix dist/s_docs being incompatible with OS X Xcode installation</li>
<li><a href="https://jira.mongodb.org/browse/WT-2947">WT-2947</a> Replace test suite populate functions with *DataSet classes</li>
<li><a href="https://jira.mongodb.org/browse/WT-2948">WT-2948</a> Simplify error handling by making __wt_epoch return never fail</li>
<li><a href="https://jira.mongodb.org/browse/WT-2949">WT-2949</a> Add option to skip closing the connection after test runs</li>
<li><a href="https://jira.mongodb.org/browse/WT-2950">WT-2950</a> Free all reconciliation memory between calls to eviction</li>
<li><a href="https://jira.mongodb.org/browse/WT-2953">WT-2953</a> Only test for checkpoint/LAS collision if LAS was used</li>
<li><a href="https://jira.mongodb.org/browse/WT-2954">WT-2954</a> Evict pages that exceed memory_page_max even if the transaction ID is stuck</li>
<li><a href="https://jira.mongodb.org/browse/WT-2955">WT-2955</a> Add statistics tracking the amount of time threads spend waiting for high level locks</li>
<li><a href="https://jira.mongodb.org/browse/WT-2959">WT-2959</a> Ensure WT_SESSION_IMPL is never used before it's initialized</li>
<li><a href="https://jira.mongodb.org/browse/WT-2961">WT-2961</a> Add a version drop-down to the web version of the docs</li>
<li><a href="https://jira.mongodb.org/browse/WT-2962">WT-2962</a> Allow configuration of builtin extensions</li>
<li><a href="https://jira.mongodb.org/browse/WT-2963">WT-2963</a> Fix a race bounding eviction in small caches</li>
<li><a href="https://jira.mongodb.org/browse/WT-2964">WT-2964</a> Alter evict walk to not fill all its slots with internal pages when running in aggressive mode</li>
<li><a href="https://jira.mongodb.org/browse/WT-2965">WT-2965</a> Remove sleep and retry loop from __evict_exclusive</li>
<li><a href="https://jira.mongodb.org/browse/WT-2968">WT-2968</a> Don't open file handles on backup</li>
<li><a href="https://jira.mongodb.org/browse/WT-2971">WT-2971</a> Add details on raw-compression into WT documentation</li>
<li><a href="https://jira.mongodb.org/browse/WT-2975">WT-2975</a> Fix a leak of statistics data when reopening handles</li>
<li><a href="https://jira.mongodb.org/browse/WT-2976">WT-2976</a> Add a statistic tracking how long app threads spend reading and writing</li>
<li><a href="https://jira.mongodb.org/browse/WT-2977">WT-2977</a> Remove stash and check code from LSM test</li>
<li><a href="https://jira.mongodb.org/browse/WT-2984">WT-2984</a> Keep sufficient history in the metadata for queries</li>
<li><a href="https://jira.mongodb.org/browse/WT-2985">WT-2985</a> Fix a race during checkpoint that can cause a core dump</li>
<li><a href="https://jira.mongodb.org/browse/WT-2987">WT-2987</a> Fix a bug where opening a cursor on an incomplete table drops core</li>
<li><a href="https://jira.mongodb.org/browse/WT-2988">WT-2988</a> Fix __wt_epoch potentially returning garbage values</li>
<li><a href="https://jira.mongodb.org/browse/WT-2991">WT-2991</a> Fix Coverity REVERSE_INULL</li>
<li><a href="https://jira.mongodb.org/browse/WT-2998">WT-2998</a> Add error messages to error returns that might be confusing</li>
<li><a href="https://jira.mongodb.org/browse/WT-2999">WT-2999</a> Added contributed test case that demonstrated the leak</li>
<li><a href="https://jira.mongodb.org/browse/WT-3000">WT-3000</a> Wait for previous writes on first write to new log file</li>
<li><a href="https://jira.mongodb.org/browse/WT-3001">WT-3001</a> Fix <a class="el" href="struct_w_t___e_x_t_e_n_s_i_o_n___a_p_i.html" title="Table of WiredTiger extension methods. ">WT_EXTENSION_API</a> references that are named inconsistently</li>
<li><a href="https://jira.mongodb.org/browse/WT-3002">WT-3002</a> Allow applications to exempt threads from eviction</li>
<li><a href="https://jira.mongodb.org/browse/WT-3003">WT-3003</a> Don't generate log record and op types</li>
<li><a href="https://jira.mongodb.org/browse/WT-3003">WT-3003</a> Fix doxygen comment blocks</li>
<li><a href="https://jira.mongodb.org/browse/WT-3004">WT-3004</a> Lint, declare functions that don't return a value as void</li>
<li><a href="https://jira.mongodb.org/browse/WT-3005">WT-3005</a> Add top-level .gitignore file</li>
<li><a href="https://jira.mongodb.org/browse/WT-3008">WT-3008</a> Move wtperf stress jobs to new stress runner folder</li>
<li><a href="https://jira.mongodb.org/browse/WT-3009">WT-3009</a> Remove the eviction_dirty_target from test/format runs with less than 20MB cache</li>
<li><a href="https://jira.mongodb.org/browse/WT-3011">WT-3011</a> Fix __wt_curjoin_open() saving the wrong URI in the cursor</li>
<li><a href="https://jira.mongodb.org/browse/WT-3012">WT-3012</a> Check a btree is LSM primary before switching</li>
<li><a href="https://jira.mongodb.org/browse/WT-3012">WT-3012</a> Don't track the LSM Primary as part of dirty bytes in cache</li>
<li><a href="https://jira.mongodb.org/browse/WT-3015">WT-3015</a> Change when we will evict internal pages</li>
<li><a href="https://jira.mongodb.org/browse/WT-3016">WT-3016</a> Change how file size is determined during compact tests to allow</li>
<li><a href="https://jira.mongodb.org/browse/WT-3017">WT-3017</a> Don't set NULL hazard pointers</li>
<li><a href="https://jira.mongodb.org/browse/WT-3020">WT-3020</a> Always make LSM chunks evictable when they are switched out</li>
<li><a href="https://jira.mongodb.org/browse/WT-3022">WT-3022</a> Change lsm_tree flags to fields to prevent race conditions</li>
<li><a href="https://jira.mongodb.org/browse/WT-3023">WT-3023</a> Don't treat splits as eviction making progress</li>
<li><a href="https://jira.mongodb.org/browse/WT-3024">WT-3024</a> Fix a hang on close caused by leaving a transaction ID pinned</li>
</ul>
<h2>WiredTiger release 2.8.0, 2015-03-24 </h2>
<p>The WiredTiger 2.8.0 release contains new features, new supported platforms, minor API changes and bug fixes.</p>
<p>New features and API changes; refer to the API documentation for full details:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-60">WT-60</a> Port WiredTiger to run on big endian platforms</li>
<li><a href="https://jira.mongodb.org/browse/WT-2287">WT-2287</a> Add a new <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#ab21ec3055cade4d2682f162783314984" title="Rebalance a table or file, see Rebalance. ">WT_SESSION.rebalance</a> API</li>
<li><a href="https://jira.mongodb.org/browse/WT-2333">WT-2333</a> Add a lock_wait configuration setting to <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#adf785ef53c16d9dcc77e22cc04c87b70" title="Drop (delete) an object. ">WT_SESSION.drop</a> to avoid blocking</li>
<li><a href="https://jira.mongodb.org/browse/WT-2349">WT-2349</a> Add a readonly configuration setting to wiredtiger_open</li>
<li><a href="https://jira.mongodb.org/browse/WT-2363">WT-2363</a> Remove built in support for bzip2 compression</li>
<li><a href="https://jira.mongodb.org/browse/WT-2404">WT-2404</a> Add streaming pack/unpack methods to the extension API</li>
</ul>
<p>Significant changes and bug fixes:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-1801">WT-1801</a> Add a directory sync after rollback of a <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a1d24b02549009f78b7c6463da0247614" title="Rename an object. ">WT_SESSION::rename</a> operation</li>
<li><a href="https://jira.mongodb.org/browse/WT-2130">WT-2130</a> Improve on-disk page utilization with random workloads</li>
<li><a href="https://jira.mongodb.org/browse/WT-2275">WT-2275</a> Fix a database corruption after truncate and crash</li>
<li><a href="https://jira.mongodb.org/browse/WT-2264">WT-2264</a> High update workloads can cause checkpoints to never complete</li>
<li><a href="https://jira.mongodb.org/browse/WT-2290">WT-2290</a> Improve effectiveness of <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#aafa7a12a4891a5bfdc98673a5b8f9c69" title="Compact a live row- or column-store btree or LSM tree. ">WT_SESSION.compact</a></li>
<li><a href="https://jira.mongodb.org/browse/WT-2361">WT-2361</a> Fix a bug in column-store where verify identifies out of order data</li>
<li><a href="https://jira.mongodb.org/browse/WT-2367">WT-2367</a> Fix a bug in <a class="el" href="struct_w_t___c_u_r_s_o_r.html#a0503f16bd8f3d05aa3552f229b3a8e1b" title="Return the next record. ">WT_CURSOR.next</a> that could cause out-of-order key returns</li>
<li><a href="https://jira.mongodb.org/browse/WT-2374">WT-2374</a> Fix a bug where a database was corrupted when restoring a backup</li>
<li><a href="https://jira.mongodb.org/browse/WT-2381">WT-2381</a> Fix the dump utility to include the table configuration</li>
<li><a href="https://jira.mongodb.org/browse/WT-2451">WT-2451</a> Allow the WiredTiger metadata to be evicted</li>
<li><a href="https://jira.mongodb.org/browse/WT-2490">WT-2490</a> Fix a bug in column-store where search_near() returns the wrong key</li>
</ul>
<p>Issues fixed in MongoDB:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/SERVER-21619">SERVER-21619</a> sys-perf: WT crash during core_workloads_WT execution</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-21833">SERVER-21833</a> Enhance <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#aafa7a12a4891a5bfdc98673a5b8f9c69" title="Compact a live row- or column-store btree or LSM tree. ">WT_SESSION::compact</a> to more reliably release space</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-21887">SERVER-21887</a> Enhance $sample to be faster on newly created collection</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-22676">SERVER-22676</a> Allow WiredTiger to open databases created by 3.0.0 or 3.0.1</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-22773">SERVER-22773</a> New CRC32 implementation on PowerPC</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-22831">SERVER-22831</a> Low query rate with heavy cache pressure and an idle collection</li>
</ul>
<p>Other noteworthy changes since the previous release:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-1517">WT-1517</a> Fix error handling around schema format edge cases</li>
<li><a href="https://jira.mongodb.org/browse/WT-2060">WT-2060</a> Simplify aggregation of statistics</li>
<li><a href="https://jira.mongodb.org/browse/WT-2073">WT-2073</a> Metadata cleanups</li>
<li><a href="https://jira.mongodb.org/browse/WT-2099">WT-2099</a> Seeing memory underflow messages</li>
<li><a href="https://jira.mongodb.org/browse/WT-2107">WT-2107</a> Add example code including an event handler</li>
<li><a href="https://jira.mongodb.org/browse/WT-2113">WT-2113</a> Truncate test occasionally fails with unexpected EBUSY</li>
<li><a href="https://jira.mongodb.org/browse/WT-2123">WT-2123</a> Don't clear allocated memory if not required</li>
<li><a href="https://jira.mongodb.org/browse/WT-2173">WT-2173</a> Fix some cases where tiny caches could get stuck full</li>
<li><a href="https://jira.mongodb.org/browse/WT-2177">WT-2177</a> Add an optional per-thread seed to random number generator</li>
<li><a href="https://jira.mongodb.org/browse/WT-2198">WT-2198</a> Bulk load and column store appends</li>
<li><a href="https://jira.mongodb.org/browse/WT-2215">WT-2215</a> WT_LSN needs to support atomic reads and updates</li>
<li><a href="https://jira.mongodb.org/browse/WT-2216">WT-2216</a> Simplify row-store search loop slightly</li>
<li><a href="https://jira.mongodb.org/browse/WT-2231">WT-2231</a> Pinned page cursor searches could check parent keys</li>
<li><a href="https://jira.mongodb.org/browse/WT-2235">WT-2235</a> Add a unicode option to WiredTiger printlog utility</li>
<li><a href="https://jira.mongodb.org/browse/WT-2242">WT-2242</a> WiredTiger treats dead trees the same as other trees in eviction</li>
<li><a href="https://jira.mongodb.org/browse/WT-2246">WT-2246</a> Improve performance for column-store append searches</li>
<li><a href="https://jira.mongodb.org/browse/WT-2247">WT-2247</a> Variable-length column-store in-memory page splits</li>
<li><a href="https://jira.mongodb.org/browse/WT-2258">WT-2258</a> Stop WiredTiger pre-loading pages when direct-IO is configured</li>
<li><a href="https://jira.mongodb.org/browse/WT-2259">WT-2259</a> Fix error handling when getting exclusive access to a btree</li>
<li><a href="https://jira.mongodb.org/browse/WT-2262">WT-2262</a> Fix random cursor next so it is not skewed by tree shape</li>
<li><a href="https://jira.mongodb.org/browse/WT-2265">WT-2265</a> WiredTiger related change in PowerPC specific code block in gcc.h</li>
<li><a href="https://jira.mongodb.org/browse/WT-2272">WT-2272</a> Fix a bug in the sweep server that triggered an assertion</li>
<li><a href="https://jira.mongodb.org/browse/WT-2276">WT-2276</a> Add a tool to decode checkpoint addr</li>
<li><a href="https://jira.mongodb.org/browse/WT-2277">WT-2277</a> Remove WT check against big-endian systems</li>
<li><a href="https://jira.mongodb.org/browse/WT-2279">WT-2279</a> Define WT_PAUSE(), WT_FULL_BARRIER(), etc when s390x is defined</li>
<li><a href="https://jira.mongodb.org/browse/WT-2280">WT-2280</a> Add CRC32 Optimized code for PowerPC</li>
<li><a href="https://jira.mongodb.org/browse/WT-2282">WT-2282</a> Error in wt_txn_update_oldest verbose message test</li>
<li><a href="https://jira.mongodb.org/browse/WT-2283">WT-2283</a> Retry in txn_update_oldest results in a hang</li>
<li><a href="https://jira.mongodb.org/browse/WT-2285">WT-2285</a> Enhance configure to set BUFFER_ALIGNMENT_DEFAULT to 4kb on Linux</li>
<li><a href="https://jira.mongodb.org/browse/WT-2289">WT-2289</a> Fix a bug in btree search when doing a fast key check</li>
<li><a href="https://jira.mongodb.org/browse/WT-2291">WT-2291</a> Random cursor walk inefficient in skip list only trees</li>
<li><a href="https://jira.mongodb.org/browse/WT-2295">WT-2295</a> <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb" title="Create a table, column group, index or file. ">WT_SESSION.create</a> does a full-scan of the main table</li>
<li><a href="https://jira.mongodb.org/browse/WT-2296">WT-2296</a> Improve log algorithm for sync/flush settings</li>
<li><a href="https://jira.mongodb.org/browse/WT-2297">WT-2297</a> Fix off-by-one error in Huffman config file parsing</li>
<li><a href="https://jira.mongodb.org/browse/WT-2299">WT-2299</a> Clean up layering violation between btree and block manager code</li>
<li><a href="https://jira.mongodb.org/browse/WT-2307">WT-2307</a> Fix a bug where internal page splits can corrupt cursor iteration</li>
<li><a href="https://jira.mongodb.org/browse/WT-2308">WT-2308</a> Add support for custom extractor for ref_cursors in join cursor</li>
<li><a href="https://jira.mongodb.org/browse/WT-2311">WT-2311</a> Add support for UltraSparc platform</li>
<li><a href="https://jira.mongodb.org/browse/WT-2312">WT-2312</a> Fix a bug where re-creating a deleted column-store page can corrupt the in-memory tree</li>
<li><a href="https://jira.mongodb.org/browse/WT-2313">WT-2313</a> Fix a bug in the sweep server</li>
<li><a href="https://jira.mongodb.org/browse/WT-2314">WT-2314</a> Update page-swap error handling so that it is consistent</li>
<li><a href="https://jira.mongodb.org/browse/WT-2316">WT-2316</a> Fix a bug in <a class="el" href="struct_w_t___c_u_r_s_o_r.html#a43d6664d2f68902aa63f933864242e76" title="Return the previous record. ">WT_CURSOR.prev</a> where it could return keys out-of-order</li>
<li><a href="https://jira.mongodb.org/browse/WT-2318">WT-2318</a> Enhance condition wait implementation to use less CPU on idle databases</li>
<li><a href="https://jira.mongodb.org/browse/WT-2321">WT-2321</a> Fix a race between eviction and worker threads on the eviction queue</li>
<li><a href="https://jira.mongodb.org/browse/WT-2322">WT-2322</a> Fix a bug in read-uncommitted join cursors where using Bloom filters is unsafe</li>
<li><a href="https://jira.mongodb.org/browse/WT-2328">WT-2328</a> Update schema drop does to use the block manager interface for file removal</li>
<li><a href="https://jira.mongodb.org/browse/WT-2331">WT-2331</a> Checking of search result for reference cursors before join</li>
<li><a href="https://jira.mongodb.org/browse/WT-2332">WT-2332</a> Fix a bug in logging write-no-sync mode</li>
<li><a href="https://jira.mongodb.org/browse/WT-2335">WT-2335</a> Fix a bug where parsing an invalid configuration string could segfault</li>
<li><a href="https://jira.mongodb.org/browse/WT-2338">WT-2338</a> Disable using pre-allocated log files when a backup cursor is open</li>
<li><a href="https://jira.mongodb.org/browse/WT-2339">WT-2339</a> Fix a bug in rebalance that caused database verification failure</li>
<li><a href="https://jira.mongodb.org/browse/WT-2340">WT-2340</a> Add logging guarantee assertions</li>
<li><a href="https://jira.mongodb.org/browse/WT-2345">WT-2345</a> Avoid creating tiny pages on disk when evicting small pages from cache</li>
<li><a href="https://jira.mongodb.org/browse/WT-2346">WT-2346</a> Enhance checkpoint implementation so the schema lock is not held during I/O</li>
<li><a href="https://jira.mongodb.org/browse/WT-2347">WT-2347</a> Fix some schema format edge cases in Java API</li>
<li><a href="https://jira.mongodb.org/browse/WT-2352">WT-2352</a> Allow build and test without requiring lz4</li>
<li><a href="https://jira.mongodb.org/browse/WT-2355">WT-2355</a> Fix minor scratch buffer usage in logging</li>
<li><a href="https://jira.mongodb.org/browse/WT-2356">WT-2356</a> log scan advances to next log file on partially written record</li>
<li><a href="https://jira.mongodb.org/browse/WT-2368">WT-2368</a> Fix a bug where row-store can pass invalid keys to collator functions</li>
<li><a href="https://jira.mongodb.org/browse/WT-2369">WT-2369</a> Use C compiler to detect headers instead of C++ compiler</li>
<li><a href="https://jira.mongodb.org/browse/WT-2371">WT-2371</a> Fix a bug where parent split cannot access the page after page-index swap</li>
<li><a href="https://jira.mongodb.org/browse/WT-2372">WT-2372</a> WiredTiger windows builder fails with C4005 against the "inline" macro</li>
<li><a href="https://jira.mongodb.org/browse/WT-2375">WT-2375</a> Add tests for custom collators</li>
<li><a href="https://jira.mongodb.org/browse/WT-2378">WT-2378</a> Fix a hang in LSM when doing forced drop with the no wait option</li>
<li><a href="https://jira.mongodb.org/browse/WT-2382">WT-2382</a> Fix a bug in join cursors with custom collator for 'u' format</li>
<li><a href="https://jira.mongodb.org/browse/WT-2384">WT-2384</a> Fix a bug in join cursors where lt, le conditions for ordering could be wrong</li>
<li><a href="https://jira.mongodb.org/browse/WT-2387">WT-2387</a> Fix cursor random unit test on Windows</li>
<li><a href="https://jira.mongodb.org/browse/WT-2390">WT-2390</a> Fix the OS X build</li>
<li><a href="https://jira.mongodb.org/browse/WT-2391">WT-2391</a> Enhance eviction so that it is less likely to evict pages from indexes</li>
<li><a href="https://jira.mongodb.org/browse/WT-2394">WT-2394</a> Fix a bug in compact that meant we didn't always reclaim available space</li>
<li><a href="https://jira.mongodb.org/browse/WT-2395">WT-2395</a> Fix a recovery failure with an LSM tree</li>
<li><a href="https://jira.mongodb.org/browse/WT-2396">WT-2396</a> Fix a deadlock between table drop and checkpoint</li>
<li><a href="https://jira.mongodb.org/browse/WT-2397">WT-2397</a> Fix a bug in cursor traversal where doing a reverse walk could skip records.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2399">WT-2399</a> Add test case that verifies cursor traversal</li>
<li><a href="https://jira.mongodb.org/browse/WT-2409">WT-2409</a> Fix a minor performance regression in LSM</li>
<li><a href="https://jira.mongodb.org/browse/WT-2410">WT-2410</a> Stop casting function pointers to different types</li>
<li><a href="https://jira.mongodb.org/browse/WT-2411">WT-2411</a> Fix a hang in LSM related to dropping tables</li>
<li><a href="https://jira.mongodb.org/browse/WT-2414">WT-2414</a> Avoid extractor calls for ordering cursor in join cursor</li>
<li><a href="https://jira.mongodb.org/browse/WT-2417">WT-2417</a> Windows Jenkins task is failing</li>
<li><a href="https://jira.mongodb.org/browse/WT-2418">WT-2418</a> Fix a bug in <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#ab21ec3055cade4d2682f162783314984" title="Rebalance a table or file, see Rebalance. ">WT_SESSION.rebalance</a> where it could return EBUSY</li>
<li><a href="https://jira.mongodb.org/browse/WT-2420">WT-2420</a> Fix a bug in LSM where recovery from a backup could fail</li>
<li><a href="https://jira.mongodb.org/browse/WT-2423">WT-2423</a> Fix a bug in session reference counting on error handling</li>
<li><a href="https://jira.mongodb.org/browse/WT-2425">WT-2425</a> Fix a performance regression in wtperf evict-btree read workload</li>
<li><a href="https://jira.mongodb.org/browse/WT-2426">WT-2426</a> Fix a deadlock caused by recent changes to checkpoint handle locking</li>
<li><a href="https://jira.mongodb.org/browse/WT-2428">WT-2428</a> Make statistics logging compatible with MongoDB</li>
<li><a href="https://jira.mongodb.org/browse/WT-2429">WT-2429</a> Add a statistic that tracks aggressive mode in eviction</li>
<li><a href="https://jira.mongodb.org/browse/WT-2430">WT-2430</a> Add statistics for join cursor</li>
<li><a href="https://jira.mongodb.org/browse/WT-2432">WT-2432</a> Fix a performance regression on LSM and read only workloads</li>
<li><a href="https://jira.mongodb.org/browse/WT-2433">WT-2433</a> Allow read-only databases to log statistics</li>
<li><a href="https://jira.mongodb.org/browse/WT-2434">WT-2434</a> Fix a race between force-drop and sweep</li>
<li><a href="https://jira.mongodb.org/browse/WT-2436">WT-2436</a> Fix a bug in join cursors with lt, le conditions and "strategy=bloom"</li>
<li><a href="https://jira.mongodb.org/browse/WT-2438">WT-2438</a> Extend WiredTiger stat declarations to help external tools</li>
<li><a href="https://jira.mongodb.org/browse/WT-2440">WT-2440</a> Fix a bug in the PowerPC checksum implementation</li>
<li><a href="https://jira.mongodb.org/browse/WT-2443">WT-2443</a> Add statistics for all indexes used in join cursor</li>
<li><a href="https://jira.mongodb.org/browse/WT-2447">WT-2447</a> Enhance join cursor implementation to avoid reading main table where possible</li>
<li><a href="https://jira.mongodb.org/browse/WT-2448">WT-2448</a> Add no_scale flag to relevant statistics</li>
<li><a href="https://jira.mongodb.org/browse/WT-2449">WT-2449</a> Enhance configure to check for a 64-bit build</li>
<li><a href="https://jira.mongodb.org/browse/WT-2454">WT-2454</a> Fix checkpoint_sync=false behavior to prevent flushes/sync to disk</li>
<li><a href="https://jira.mongodb.org/browse/WT-2456">WT-2456</a> Fix PowerPC CRC32 Code</li>
<li><a href="https://jira.mongodb.org/browse/WT-2457">WT-2457</a> Fix a bug where dropping an LSM table can return EBUSY when no user ops are active</li>
<li><a href="https://jira.mongodb.org/browse/WT-2459">WT-2459</a> Allow configure to use the –tag option for libtool when compiling on PowerPC</li>
<li><a href="https://jira.mongodb.org/browse/WT-2460">WT-2460</a> Fix a bug where checkpoint could fail with WT_ROLLBACK</li>
<li><a href="https://jira.mongodb.org/browse/WT-2471">WT-2471</a> Update WiredTiger printf formats to be platform aware</li>
<li><a href="https://jira.mongodb.org/browse/WT-2476">WT-2476</a> Fix a race where btree->evict_lock is being accessed after being destroyed</li>
<li><a href="https://jira.mongodb.org/browse/WT-2481">WT-2481</a> Fix a recently introduced performance regression in LSM</li>
<li><a href="https://jira.mongodb.org/browse/WT-2483">WT-2483</a> Make read only testing more robust</li>
<li><a href="https://jira.mongodb.org/browse/WT-2485">WT-2485</a> Fix a test/format failure with floating point exception</li>
<li><a href="https://jira.mongodb.org/browse/WT-2492">WT-2492</a> Fix a bug in Windows where we used the different memory allocators accidentally</li>
<li><a href="https://jira.mongodb.org/browse/WT-2495">WT-2495</a> Missing memory initialization leads to crash on Windows</li>
<li><a href="https://jira.mongodb.org/browse/WT-2496">WT-2496</a> Fix a bug revealed by test/format unable to read root page</li>
<li><a href="https://jira.mongodb.org/browse/WT-2497">WT-2497</a> Enhance test/format to save a copy of backup</li>
<li><a href="https://jira.mongodb.org/browse/WT-2498">WT-2498</a> Fix a bug in LSM tree drop where it could hang when a user cursor is open</li>
<li><a href="https://jira.mongodb.org/browse/WT-2499">WT-2499</a> Fix a bug in LSM shutdown where a race condition causes a segfault</li>
<li><a href="https://jira.mongodb.org/browse/WT-2501">WT-2501</a> Fix a bug where dropping a just opened LSM tree isn't thread safe</li>
<li><a href="https://jira.mongodb.org/browse/WT-2502">WT-2502</a> Fix a memory leak in locking handles for checkpoint</li>
</ul>
<h2>WiredTiger release 2.7.0, 2015-12-08 </h2>
<p>The WiredTiger 2.7.0 release contains new features, minor API changes and bug fixes.</p>
<p>New features and API changes; refer to the API documentation for full details:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-147">WT-147</a> Create indexes on non-empty tables.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1315">WT-1315</a> Add an implementation of cursor joins via a new <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#ae0ab118df83d173c6a20eb1ea3f3fd84" title="Join a join cursor with a reference cursor. ">WT_SESSION::join</a> API.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1350">WT-1350</a> Add a new configuration option to <a class="el" href="group__wt.html#gacbe8d118f978f5bfc8ccb4c77c9e8813" title="Open a connection to a database. ">wiredtiger_open</a> and <a class="el" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#a579141678af06217b22869cbc604c6d4" title="Reconfigure a connection handle. ">WT_CONNECTION::reconfigure</a> called "eviction_dirty_trigger" that causes eviction to start evicting dirty pages from cache once the given threshold has been reached.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1728">WT-1728</a> Add a <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a307800663ed211447a18c46863c28787" title="Reset the session handle. ">WT_SESSION::reset</a> method to release resources held by a session.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1930">WT-1930</a> Allow setting "file_manager=(close_idle_time=0)" to <a class="el" href="group__wt.html#gacbe8d118f978f5bfc8ccb4c77c9e8813" title="Open a connection to a database. ">wiredtiger_open</a> and <a class="el" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#a579141678af06217b22869cbc604c6d4" title="Reconfigure a connection handle. ">WT_CONNECTION::reconfigure</a> to disable closing idle handles.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1959">WT-1959</a> Change verify to distinguish between warnings and errors. Add a new strict mode to verify that causes warnings to be reported as errors. Use strict mode to match earlier behavior. See the upgrading documentation for more information.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1980">WT-1980</a> Add a new "metadata:create" URI to <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#afb5b4a69c2c5cafe411b2b04fdc1c75d" title="Open a new cursor on a data source or duplicate an existing cursor. ">WT_SESSION::open_cursor</a> for metadata cursors that return strings useful for passing to <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb" title="Create a table, column group, index or file. ">WT_SESSION::create</a>.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2065">WT-2065</a> Add a new configuration option to <a class="el" href="group__wt.html#gacbe8d118f978f5bfc8ccb4c77c9e8813" title="Open a connection to a database. ">wiredtiger_open</a> and <a class="el" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#a579141678af06217b22869cbc604c6d4" title="Reconfigure a connection handle. ">WT_CONNECTION::reconfigure</a> called "shared_cache=(quota)" that limits the amount of shared cache a participant can be assigned.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2104">WT-2104</a> Add a method to flush log files via a new <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a1843292630960309129dcfe00e1a3817" title="Flush the log. ">WT_SESSION::log_flush</a> API. Made <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a712226eca5ade5bd123026c624468fa2" title="Commit the current transaction. ">WT_SESSION::commit_transaction</a> configuration options match <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a1843292630960309129dcfe00e1a3817" title="Flush the log. ">WT_SESSION::log_flush</a>. Change the default <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a61c8c3ad80d8228172db66ca70bd90fd" title="Wait for a transaction to become synchronized. ">WT_SESSION::transaction_sync</a> timeout to 20 minutes rather than infinity.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2151">WT-2151</a> Enhance logging configuration to allow reconfiguration and add a new "log=(zero_fill)" configuration option that causes WiredTiger to zero-fill log files on creation.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2200">WT-2200</a> Add a new configuration option to <a class="el" href="group__wt.html#gacbe8d118f978f5bfc8ccb4c77c9e8813" title="Open a connection to a database. ">wiredtiger_open</a> called "write_through" that causes WiredTiger to specify the FILE_FLAG_WRITE_THROUGH on Windows when writing files (default false, including when "direct_io" is configured).</li>
<li><a href="https://jira.mongodb.org/browse/WT-2217">WT-2217</a> After a successful call to <a class="el" href="struct_w_t___c_u_r_s_o_r.html#aac90d9fbcc031570f924db55f8a1cee3" title="Insert a record and optionally update an existing record. ">WT_CURSOR::insert</a>, the key and value will be cleared from the cursor. See the upgrading documentation for more information.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-17078">SERVER-17078</a> Add a "statistics=(size)" mode to statistics cursors, which allows for retrieving file size only.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-18356">SERVER-18356</a> Changed the handling of the "config_base" option to <a class="el" href="group__wt.html#gacbe8d118f978f5bfc8ccb4c77c9e8813" title="Open a connection to a database. ">wiredtiger_open</a>. See upgrading documentation for more information.</li>
</ul>
<p>The following statistics were removed:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-1481">WT-1481</a> connection dhandles swept.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1481">WT-1481</a> connection candidate referenced.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1481">WT-1481</a> failed to find a slot large enough for record.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1989">WT-1989</a> log buffer size increases.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1989">WT-1989</a> slots selected for switching that were unavailable.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2094">WT-2094</a> log records written directly.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2094">WT-2094</a> record size exceeded maximum.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2182">WT-2182</a> pages split during eviction.</li>
</ul>
<p>Lookaside table:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-1967">WT-1967</a> Allow eviction of updates required by old readers.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2074">WT-2074</a> Fix a race between lookaside table reconciliation and checkpoints.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2149">WT-2149</a> Fix the order of creation of the lookaside table.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2190">WT-2190</a> Fix transaction visibility test that is applied to the lookaside table.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-21585">SERVER-21585</a> Don't use the lookaside file until the cache is stuck full.</li>
</ul>
<p>Issues fixed in MongoDB:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/SERVER-18829">SERVER-18829</a> Have pages start in the middle of the LRU queue for eviction.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-18838">SERVER-18838</a> During drops, don't remove files until the metadata is durable.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-18875">SERVER-18875</a> Clean up deleted pages.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-18899">SERVER-18899</a> Add unit test to simulate fsyncLock.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-19340">SERVER-19340</a> Avoid type aliasing in the random number generator.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-19445">SERVER-19445</a> Have the oldest transaction update the oldest tracked ID.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-19522">SERVER-19522</a> Try to evict internal pages with no useful child pages.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-19573">SERVER-19573</a> Change row-store inserts to avoid page locking.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-19751">SERVER-19751</a> Retry pthread_create on EAGAIN or EINTR.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-19954">SERVER-19954</a> Don't scan tracked handles during checkpoints.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-19989">SERVER-19989</a> Add a write barrier before data handles are added to shared lists.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-19990">SERVER-19990</a> Don't assert on eviction of live updates from dead trees.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-20008">SERVER-20008</a> Don't reset eviction walks when hitting a busy page.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-20159">SERVER-20159</a> Make all readers wait while the cache is full.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-20193">SERVER-20193</a> Fix obsolete transaction check.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-20303">SERVER-20303</a> Tune in-memory splits when inserting large objects.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-20385">SERVER-20385</a> Make WT_CURSOR::next(random) more random.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-21027">SERVER-21027</a> Reverse split if there are many deleted pages.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-21553">SERVER-21553</a> Enable fast-path truncate after splits.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-21619">SERVER-21619</a> Don't do internal page splits after a tree is marked DEAD.</li>
<li><a href="https://jira.mongodb.org/browse/SERVER-21691">SERVER-21691</a> Avoid insert stalls.</li>
</ul>
<p>Other note worthy changes since the previous release:</p>
<ul>
<li><a href="https://jira.mongodb.org/browse/WT-1744">WT-1744</a> Throttle worker threads based on eviction targets.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1845">WT-1845</a> Allow read only transactions to commit after failure.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1869">WT-1869</a> Avoid doing in memory splits while checkpointing a tree.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1942">WT-1942</a> Add atomic implementations for PowerPC architecture.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1962">WT-1962</a> Make the hot_backup_lock a read/write lock.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1963">WT-1963</a> Fix backup cursor Java API.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1964">WT-1964</a> Fix a bug in the Java API when closing handles from a different thread.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1966">WT-1966</a> Change how the shared cache assigns priority to participants.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1975">WT-1975</a> Ensure previous log files are complete for forced sync.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1977">WT-1977</a> Improve performance of getting snapshots with many sessions.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1978">WT-1978</a> Better checking and tests for index cursor comparison.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1981">WT-1981</a> Fix a signed 32-bit integer unpacking bug.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1982">WT-1982</a> Fix a bug where cached overflow items were freed too early.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1985">WT-1985</a> Integer packing and other fixes for Python and Java.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1986">WT-1986</a> Fix a race renaming temporary log files.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1989">WT-1989</a> Improve scalability of log writes.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1996">WT-1996</a> Fix a bug where we would free the fist update during a page rewrite on error.</li>
<li><a href="https://jira.mongodb.org/browse/WT-1998">WT-1998</a> Fixes for indexes with some rarely used key/value formats.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2002">WT-2002</a> Fix a bug in verify where it would panic when encountering a corrupted file.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2007">WT-2007</a> Statically allocate log slot buffers to a maximum size.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2008">WT-2008</a> Fix a bug in recovery where a file create went missing.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2009">WT-2009</a> Apply tracked metadata operations post-commit.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2012">WT-2012</a> Fix a bug updating the oldest ID.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2013">WT-2013</a> Add gcc asm definitions for ARM64.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2014">WT-2014</a> Fix a bug in checkpoints where files could be flushed in the wrong order.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2015">WT-2015</a> Fix a bug in error handling during block open.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2017">WT-2017</a> Once an eviction server thread is started keep it running.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2019">WT-2019</a> Fix a logic bug tracking the maximum transaction ID in clean trees.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2020">WT-2020</a> Clarify checksum error failure messages.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2021">WT-2021</a> Fix a bug moving the oldest ID forward (introduced by <a href="https://jira.mongodb.org/browse/WT-1967">WT-1967</a>).</li>
<li><a href="https://jira.mongodb.org/browse/WT-2022">WT-2022</a> Fix a bug not releasing a handle when opening a non-existent index cursor.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2023">WT-2023</a> Improve locking primitives: simplify read-write lock operations.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2029">WT-2029</a> Improve scalability of statistics.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2031">WT-2031</a> Log slot revamp.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2032">WT-2032</a> Improve next_random cursors to work with small trees.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2034">WT-2034</a> Improve shared cache balancing algorithm.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2035">WT-2035</a> For index cursors, keep track of which column groups need to be positioned.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2036">WT-2036</a> Make handle sweeps more robust.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2037">WT-2037</a> Only write a checkpoint to the log on close if it wasn't.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2038">WT-2038</a> Avoid long scans holding the handle list lock.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2039">WT-2039</a> Add error check and unit test for log records over 4 GB.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2042">WT-2042</a> Only try to evict tombstones that are visible to all readers.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2045">WT-2045</a> Don't let the eviction server do slow reconciliation, it can stall eviction.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2046">WT-2046</a> Add a statistic for search restarts.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2047">WT-2047</a> Fix a bug in the random generator code to handle an uninitialized state.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2050">WT-2050</a> Show size with memory allocation errors.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2053">WT-2053</a> Fix a bug in disk verify messages.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2056">WT-2056</a> Reorder btree cursor close so stats are maintained correctly.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2057">WT-2057</a> Remove the verbose configuration when writing the base configuration file.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2058">WT-2058</a> Fix an alignment bug in the mutex and log-slot code.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2059">WT-2059</a> Include non-aggregated stats in cursor results.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2062">WT-2062</a> Try harder to make progress on in-memory splits.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2064">WT-2064</a> Don't spin indefinitely waiting for the handle list lock in eviction.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2066">WT-2066</a> Update the oldest transaction ID from eviction.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2068">WT-2068</a> Protect discarding handles with the handle list lock.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2075">WT-2075</a> Fix a hang in logging with parallel workload.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2078">WT-2078</a> Fix a bug in error handling with statistics cursors.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2081">WT-2081</a> Make verify progress reporting less verbose.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2085">WT-2085</a> Run some of the log_server threads operations more frequently.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2086">WT-2086</a> Add a statistic to track when eviction finds a page that can be split.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2089">WT-2089</a> Relax restrictions on multiblock eviction and in-memory splits.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2090">WT-2090</a> Fix a bug in the Windows OS layer that swallowed error returns.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2092">WT-2092</a> Free log condition variables after all threads are joined.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2093">WT-2093</a> Use the C99 bool type to clarify when functions return true/false.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2094">WT-2094</a> Eliminate direct write and record unbuffered log records.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2097">WT-2097</a> Reintroduce immediate waits when forced eviction is necessary.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2100">WT-2100</a> Rename evict to evict_queue so it's easier to search for.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2101">WT-2101</a> Don't update the logging ckpt_lsn on clean shutdown.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2102">WT-2102</a> Fix a hang in log slot join when forcing log writes.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2105">WT-2105</a> Fix a bug where we could reference an invalid memory address if a file is corrupted on disk.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2108">WT-2108</a> Rework in-memory page rewrite support (WT_PM_REC_REWRITE).</li>
<li><a href="https://jira.mongodb.org/browse/WT-2114">WT-2114</a> Make application eviction fairer.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2115">WT-2115</a> Don't skip truncated pages that are part of a checkpoint.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2116">WT-2116</a> Add diagnostic checks for stuck cache and dump the state.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2119">WT-2119</a> Don't evict clean multiblock pages with overflow items during checkpoints.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2126">WT-2126</a> Clean up if there is an error during splits.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2127">WT-2127</a> Deepen the tree more regularly to avoid wide internal pages.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2128">WT-2128</a> When decoding huffman encoding during salvage it's possible to have fewer bits than the symbol length during decoding, if the value has been corrupted.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2131">WT-2131</a> Switch to using a lock to control page splits to avoid starvation.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2132">WT-2132</a> Make debug dump function more robust to errors.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2134">WT-2134</a> Flush all buffered log records in log_flush.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2135">WT-2135</a> Fix log_only setting for backup cursor. Fix initialization.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2137">WT-2137</a> Check the sync_lsn is in the correct file before moving it forward.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2139">WT-2139</a> Fix a transaction visibility bug in read-uncommitted transactions.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2146">WT-2146</a> Improve performance when searching for short keys.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2148">WT-2148</a> Fix a compiler warning in encoding functions.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2153">WT-2153</a> Fix bug. Now we always need to start the log_server thread.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2154">WT-2154</a> Make btree dump safer.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2155">WT-2155</a> Remove last use of F_CAS_ATOMIC and the associated macro.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2156">WT-2156</a> Allow eviction workers to restart.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2157">WT-2157</a> Fix a bug where a failed page split could lead to incomplete checkpoints.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2159">WT-2159</a> Don't check the config twice in one path.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2162">WT-2162</a> Add null pointer check, needed after an index is dropped.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2164">WT-2164</a> Prevent another LSM chunk checkpoint while the first is still in progress.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2165">WT-2165</a> Stop using FALLOC_FL_KEEP_SIZE flag when pre-allocating files.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2167">WT-2167</a> Switch recovery to using an internal session.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2170">WT-2170</a> Protect the turtle file with a lock.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2174">WT-2174</a> Avoid the table list lock when creating a size only statistics cursor.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2178">WT-2178</a> In-memory storage engine support.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2179">WT-2179</a> Added decorator to mark txn13 as part of the –long test suite.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2180">WT-2180</a> Remove cursor.{search,search-near,remove} key size validation.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2182">WT-2182</a> When internal pages grow large enough, split them into their parents.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2184">WT-2184</a> Fix log scan bug when final record has many trailing zeros.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2185">WT-2185</a> Don't do reverse splits when closing a file.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2187">WT-2187</a> Add flag for flushing a slot.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2189">WT-2189</a> Update flag set and clear macros to be less error prone.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2191">WT-2191</a> In-memory disk image no longer the same as saved updates.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2192">WT-2192</a> Fix the logic around checking whether internal page is evictable.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2193">WT-2193</a> Handle read-committed metadata checkpoints during snapshot transactions.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2194">WT-2194</a> Java close callbacks should handle cursors that Java code did not open.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2195">WT-2195</a> Fix a hang after giving up on a reverse split.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2196">WT-2196</a> Fix error handling in size only statistics.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2199">WT-2199</a> Fix transaction sync inconsistency.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2203">WT-2203</a> Release an allocated page on error.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2204">WT-2204</a> Don't take a local copy of page->modify until we know the page is dirty.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2206">WT-2206</a> Change cache operations from flags to an enumeration.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2207">WT-2207</a> Track whenever a session has a handle exclusive.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2210">WT-2210</a> Raw compression fails if row-store recovery precedes column-store recovery.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2212">WT-2212</a> Add a "use_environment" config to <a class="el" href="group__wt.html#gacbe8d118f978f5bfc8ccb4c77c9e8813" title="Open a connection to a database. ">wiredtiger_open</a>.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2218">WT-2218</a> Add truncate stats.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2219">WT-2219</a> Enhancements to in-memory testing.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2220">WT-2220</a> Update time comparison macros.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2222">WT-2222</a> Add statistics for named snapshots.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2224">WT-2224</a> Track which deleted refs are discarded by a split.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2228">WT-2228</a> Avoid unnecessary raw-compression calls.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2237">WT-2237</a> Have threads publish unique transaction IDs so that updates always become visible immediately on commit.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2241">WT-2241</a> Use a lock to protect transaction ID allocation.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2243">WT-2243</a> Don't keep transaction IDs pinned for reading from checkpoints.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2244">WT-2244</a> Trigger in-memory splits sooner.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2248">WT-2248</a> <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a96f25dfa6447034aea1f67ab02ab5698" title="Close the session handle. ">WT_SESSION::close</a> is updating WT_CONNECTION_IMPL.default_session.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2249">WT-2249</a> Keep eviction stuck until cache usage is under 100%.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2250">WT-2250</a> Minor fix. Use SET instead of increment for stat.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2251">WT-2251</a> Free addresses when we discard deleted page references.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2253">WT-2253</a> Evict pages left behind by in-memory splits.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2257">WT-2257</a> Fixes when given multiple thread workload configurations.</li>
<li><a href="https://jira.mongodb.org/browse/WT-2260">WT-2260</a> Avoid adding internal pages to the eviction queue</li>
</ul>
<h2>WiredTiger release 2.6.1, 2015-05-13 </h2>
<p>The WiredTiger 2.6.1 release contains new features, minor API changes and bug fixes.</p>
<p>New features:</p>
<ul>
<li>Move the sync configuration setting from <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a7e26b16b26b5870498752322fad790bf" title="Start a transaction in this session. ">WT_SESSION::begin_transaction</a> to <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a712226eca5ade5bd123026c624468fa2" title="Commit the current transaction. ">WT_SESSION::commit_transaction</a>. Change the setting from a boolean to a string. See upgrading documentation for more information. refs <a href="https://jira.mongodb.org/browse/WT-1908">WT-1908</a></li>
<li>Add the ability to flag a transaction to be flushed asynchronously on commit via a new sync=[background] configuration option. Add a new <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a61c8c3ad80d8228172db66ca70bd90fd" title="Wait for a transaction to become synchronized. ">WT_SESSION::transaction_sync</a> API to wait for asynchronous flushes to complete. refs <a href="https://jira.mongodb.org/browse/WT-1908">WT-1908</a>, #1943</li>
<li>Add the ability to create a named in-memory snapshot via a new <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#ab15f6b5f81e6e98c9b6b41c451732873" title="Manage named snapshot transactions. ">WT_SESSION::snapshot</a> API. refs <a href="https://jira.mongodb.org/browse/WT-1839">WT-1839</a></li>
<li>Add the ability to disable write ahead logging at a per-table granularity. Accessed via log=(enabled) configuration for <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb" title="Create a table, column group, index or file. ">WT_SESSION::create</a> API. Partial logging has serious implications for recovery, it should be used with caution. refs #1989</li>
</ul>
<p>Other noteworthy changes:</p>
<ul>
<li>Fix several bugs related to syncing files for checkpoint durability. refs <a href="https://jira.mongodb.org/browse/WT-1944">WT-1944</a></li>
<li>Fix a segfault during checkpoint where we could attempt to access a file that was in the process of being dropped in the background. refs <a href="https://jira.mongodb.org/browse/SERVER-18014">SERVER-18014</a></li>
<li>Fix a segfault during eviction where we could attempt to evict a page from a tree that was in the process of being dropped in the background. refs <a href="https://jira.mongodb.org/browse/SERVER-18460">SERVER-18460</a></li>
<li>Fix a bug where WiredTiger could segfault in a workload with lots of cache pressure. refs <a href="https://jira.mongodb.org/browse/WT-1937">WT-1937</a></li>
<li>Fix a performance issue with <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#aafa7a12a4891a5bfdc98673a5b8f9c69" title="Compact a live row- or column-store btree or LSM tree. ">WT_SESSION::compact</a>, where it would spend a long time compacting tables that had no space to reclaim. refs <a href="https://jira.mongodb.org/browse/WT-1953">WT-1953</a></li>
<li>Fix a bug where accessing an overflow item could return WT_NOTFOUND incorrectly. The issue was related to an invalid transaction visibility check. refs <a href="https://jira.mongodb.org/browse/WT-1745">WT-1745</a></li>
<li>Improve performance and avoid changing files on startup if no recovery is required by avoiding the creation of unnecessary checkpoints and log records for files that haven't changed. refs <a href="https://jira.mongodb.org/browse/WT-1936">WT-1936</a></li>
<li>Improve how we handle create of a table, if a file with the same name already exists (possibly from an earlier failed create). refs #1974</li>
<li>Fix compiler warnings for LZ4 implementation on Windows. refs #2006</li>
<li>Fix a bug in the WiredTiger command line utility where it could create a base configuration file for an existing database, if there had been a crash while creating the database. refs <a href="https://jira.mongodb.org/browse/WT-1943">WT-1943</a></li>
<li>Fix a build problem where recent versions of RedHat would fail to detect posix_memalign presence correctly. refs <a href="https://jira.mongodb.org/browse/WT-1951">WT-1951</a></li>
<li>Fix several problems with how we create, recover and backup databases. Related to order of creation and differences between Windows and POSIX file system semantics. refs #1993</li>
<li>Fix a bug where we could flush the log file more often than required if using auto-commit transactions. refs <a href="https://jira.mongodb.org/browse/WT-1949">WT-1949</a></li>
<li>Fix a performance problem in LSM, where trees created with an initial bulk load could choose poor merges. refs <a href="https://jira.mongodb.org/browse/WT-1947">WT-1947</a></li>
<li>Improve how we decide whether to deepen a tree during an internal split operation. Append workloads could create trees that were excessively deep.</li>
<li>Fix a bug in LSM which could lead to a hang on connection close. refs <a href="https://jira.mongodb.org/browse/WT-1935">WT-1935</a></li>
<li>Fix a bug in the internal random number generator, where concurrent calls could lead to invalid sequences. Never seen in the wild.</li>
</ul>
<h2>WiredTiger release 2.6.0, 2015-05-13 </h2>
<p>The WiredTiger 2.6.0 release contains new features, minor API changes and many bug fixes.</p>
<p>New features:</p>
<ul>
<li>Add support for "at rest" encryption of WiredTiger databases via a new encryption API. refs <a href="https://jira.mongodb.org/browse/WT-1822">WT-1822</a></li>
<li>Add support for bulk load in LSM trees (previously the bulk configuration for cursor create was ignored by LSM trees). refs <a href="https://jira.mongodb.org/browse/SERVER-18321">SERVER-18321</a>, <a href="https://jira.mongodb.org/browse/WT-1922">WT-1922</a></li>
<li>Add enhanced compression support for LZ4. Change is not compatible with tables created with LZ4 compression using earlier versions of WiredTiger. See the upgrading documentation for more information.</li>
</ul>
<p>API and behavior changes:</p>
<ul>
<li>Enhance performance of <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#adf785ef53c16d9dcc77e22cc04c87b70" title="Drop (delete) an object. ">WT_SESSION::drop</a> with force enabled (mark the table as dead and discard it in the background without writing any content to disk, rather than flushing content from the cache). refs <a href="https://jira.mongodb.org/browse/WT-1894">WT-1894</a></li>
<li>Add an API to validate configuration strings. refs <a href="https://jira.mongodb.org/browse/WT-1739">WT-1739</a></li>
<li>Disallow the cache_resident flag on LSM trees. refs <a href="https://jira.mongodb.org/browse/WT-1905">WT-1905</a></li>
<li>Enhance the controls for how aggressively idle handles are closed, update the wiredtiger_open file_manager configuration options to expose that control. refs <a href="https://jira.mongodb.org/browse/SERVER-17907">SERVER-17907</a>, <a href="https://jira.mongodb.org/browse/WT-1856">WT-1856</a></li>
</ul>
<p>Significant bug fixes and performance enhancements:</p>
<ul>
<li>Fix bugs in checkpoint: committing the checkpoint transaction before it was safe, failure to sync the metadata file before updating the turtle file. refs <a href="https://jira.mongodb.org/browse/SERVER-18316">SERVER-18316</a></li>
<li>Don't attempt to validate configuration settings for extensions (collators, compressors, encryptors, extractors). The extension may be valid but not yet loaded so it is not possible to validate.</li>
<li>Check the magic and version numbers in log files when first opening them.</li>
<li>Fix a bug with cache leaf size accounting for statistics. refs <a href="https://jira.mongodb.org/browse/WT-1885">WT-1885</a>, <a href="https://jira.mongodb.org/browse/WT-1919">WT-1919</a></li>
<li>Fix a bug where checkpoint could skip a page that was rewritten in memory. refs <a href="https://jira.mongodb.org/browse/WT-1946">WT-1946</a></li>
<li>Fix a bug in <a class="el" href="struct_w_t___c_u_r_s_o_r.html#a8068ddce20d0775f26f6dac6e5eb209c" title="Return the record matching the key if it exists, or an adjacent record. ">WT_CURSOR::search_near</a> with a random cursor where deleted records could be returned. refs <a href="https://jira.mongodb.org/browse/WT-1921">WT-1921</a>, <a href="https://jira.mongodb.org/browse/WT-1944">WT-1944</a></li>
<li>Fix a bug in handle close where we could fail to clear the open handle flag. refs <a href="https://jira.mongodb.org/browse/WT-1915">WT-1915</a></li>
<li>Fix a bug in in-memory splits, don't allow any other eviction of a page if the page is being split. refs <a href="https://jira.mongodb.org/browse/WT-1916">WT-1916</a>, <a href="https://jira.mongodb.org/browse/WT-1917">WT-1917</a></li>
<li>Fix a bug in btree open where failure while opening a checkpoint may not clean up completely. refs <a href="https://jira.mongodb.org/browse/WT-1598">WT-1598</a></li>
<li>Fix a performance problem where long running transactions could continually scan long update chains looking for obsolete entries, when there is no chance of finding any. refs <a href="https://jira.mongodb.org/browse/WT-1913">WT-1913</a></li>
<li>Fix a performance problem where many threads accessing a single page could prevent WiredTiger from evicting or splitting the page. refs <a href="https://jira.mongodb.org/browse/WT-1912">WT-1912</a></li>
<li>Fix a source of deadlock bugs by restructuring how we lock handles. Clean up the definition of when it is safe to acquire different locks. refs <a href="https://jira.mongodb.org/browse/WT-1598">WT-1598</a></li>
<li>Fix a bug where we could evict pages from a file marked as cache resident, add optimizations for cache resident files. refs <a href="https://jira.mongodb.org/browse/SERVER-18192">SERVER-18192</a></li>
<li>Fix a deadlock related to LSM (cases where closing a file with an existing checkpoint could self deadlock). refs <a href="https://jira.mongodb.org/browse/WT-716">WT-716</a></li>
<li>Only split large in-memory pages if there is a need to keep them in cache (otherwise, it is better to reconcile and evict them immediately). refs <a href="https://jira.mongodb.org/browse/WT-1890">WT-1890</a>, <a href="https://jira.mongodb.org/browse/WT-1896">WT-1896</a></li>
<li>Fix a race on shutdown where the eviction server could still have been accessing files while they were being closed. refs <a href="https://jira.mongodb.org/browse/WT-1893">WT-1893</a></li>
<li>Fix a case where we could run recovery unnecessarily if there were only non-data changing log records since the last checkpoint. refs <a href="https://jira.mongodb.org/browse/WT-1892">WT-1892</a></li>
<li>Update API documentation to explain internal session handle usage. This allows users to do specific calculations based on the session_max setting.</li>
<li>Fix a bug in LSM where updates with overwrite could be skipped incorrectly. refs BF-829</li>
<li>Fix a cursor bug where searching and traversing in different combinations could lead to data buffers being freed before they should be. refs <a href="https://jira.mongodb.org/browse/WT-1887">WT-1887</a></li>
<li>Fix a bug when closing bulk cursors, where a file could be left open.</li>
<li>Fix a bug on Windows related to truncating files (SetEndofFile does not ignore truncation requests like POSIX fallocate).</li>
<li>Fix a bug in file truncate, where we could truncate to the wrong place if there was a race extending the file at the same time. refs <a href="https://jira.mongodb.org/browse/WT-1871">WT-1871</a></li>
<li>Fix a bug in reconciliation where page boundary structures could reference freed memory. refs <a href="https://jira.mongodb.org/browse/WT-1852">WT-1852</a></li>
<li>Change the <a class="el" href="struct_w_t___c_u_r_s_o_r.html#a7e25b2ced2cf3ec68bd5429bf921c79f" title="Return the record matching the key. ">WT_CURSOR::search</a> and <a class="el" href="struct_w_t___c_u_r_s_o_r.html#a8068ddce20d0775f26f6dac6e5eb209c" title="Return the record matching the key if it exists, or an adjacent record. ">WT_CURSOR::search_near</a> API to first check any currently pinned page before starting a regular descending search.</li>
<li>Fix a bug in recovery where an error was returned if a transaction spanned an entire log file.</li>
<li>Fix a bug where recovery could be unnecessarily run during startup.</li>
<li>Enhance the Python cursor API to allow setting keys and values using array notation.</li>
<li>Fix a bug where creating a column store with large gaps in the key range would lead to poor performance. refs <a href="https://jira.mongodb.org/browse/WT-1807">WT-1807</a>.</li>
<li>Improve the performance of the core btree search routine by using low-level x86 vectorized search instructions.</li>
</ul>
<h2>WiredTiger release 2.5.3, 2015-04-22 </h2>
<p>The WiredTiger 2.5.3 release contains important bug fixes.</p>
<p>API and behavior changes:</p>
<ul>
<li>Update configuration string parsing to always be case sensitive. See upgrading documentation for more information.</li>
<li>Change the statistics cursor <a class="el" href="struct_w_t___c_u_r_s_o_r.html#afc1b42c22c9c85e1ba08ce3b34437565" title="Reset the cursor. ">WT_CURSOR::reset</a> method to re-load statistics values. See upgrading documentation for more information. refs <a href="https://jira.mongodb.org/browse/WT-1533">WT-1533</a></li>
<li>Only align buffers on Linux if direct I/O is configured. See upgrading documentation for more information.</li>
<li>Fixes to how and when idle handles are closed. refs <a href="https://jira.mongodb.org/browse/WT-1808">WT-1808</a>, <a href="https://jira.mongodb.org/browse/WT-1811">WT-1811</a>, <a href="https://jira.mongodb.org/browse/WT-1814">WT-1814</a></li>
<li>Add some new statistics related to cache usage.</li>
<li>Add new configuration strings to provide control of how often handles are are reviewed for closure, and how long a handle needs to be idle before it is closed. The option is via the wiredtiger_open API, file_manager=(close_idle_time=30,close_scan_interval=10)</li>
<li>Add support for running WiredTiger command line utilities without logging. refs <a href="https://jira.mongodb.org/browse/WT-1732">WT-1732</a></li>
<li>Update the async configuration API to allow a minimum of 1. That is change: async=(ops_max=X) so that the minimum value is now 1 the old minimum was 10.</li>
</ul>
<p>Bug fixes and other significant changes:</p>
<ul>
<li>Fixes and improvements to Windows support.</li>
<li>Fix several bugs that prevent page eviction. refs <a href="https://jira.mongodb.org/browse/SERVER-16662">SERVER-16662</a>, <a href="https://jira.mongodb.org/browse/SERVER-17382">SERVER-17382</a>, <a href="https://jira.mongodb.org/browse/WT-1777">WT-1777</a></li>
<li>Fix a race when stopping eviction workers on shutdown. refs <a href="https://jira.mongodb.org/browse/WT-1698">WT-1698</a></li>
<li>Fix a bug where if the system crashes during create the base configuration file could be left in an invalid state. refs <a href="https://jira.mongodb.org/browse/WT-1775">WT-1775</a>, <a href="https://jira.mongodb.org/browse/WT-1776">WT-1776</a>, <a href="https://jira.mongodb.org/browse/SERVER-17571">SERVER-17571</a></li>
<li>Fix cases where <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#ac2bad195e24710d52d730fe3a7c1756a" title="Truncate a file, table or cursor range. ">WT_SESSION::truncate</a> could return EBUSY when a schema level operation is running - for example a checkpoint. refs <a href="https://jira.mongodb.org/browse/WT-1404">WT-1404</a>, <a href="https://jira.mongodb.org/browse/WT-1643">WT-1643</a></li>
<li>Fix a bug in logging - where we could fail to update the end of the log when there is a gap in the log records. refs <a href="https://jira.mongodb.org/browse/WT-1766">WT-1766</a>, <a href="https://jira.mongodb.org/browse/SERVER-17569">SERVER-17569</a>, <a href="https://jira.mongodb.org/browse/SERVER-17613">SERVER-17613</a></li>
<li>Fix how we account for space used in the cache to be more accurate. refs <a href="https://jira.mongodb.org/browse/SERVER-17424">SERVER-17424</a></li>
<li>Fix a bug where we could leak memory if opening a statistics cursor failed. refs <a href="https://jira.mongodb.org/browse/WT-1760">WT-1760</a></li>
<li>Fix a bug where a single page could consume a large portion of the cache. Leading to cases where a small cache size could result in a hang. refs <a href="https://jira.mongodb.org/browse/WT-1759">WT-1759</a></li>
<li>Fix a bug in the eviction server that could cause a WT_PANIC. The issue was encountered when the number of open handles exceeded the configured number of hazard pointers. refs <a href="https://jira.mongodb.org/browse/SERVER-17551">SERVER-17551</a></li>
<li>Fix a bug parsing huffman configuration options that could lead to a segfault.</li>
<li>Fix accounting in btree statistics gathering, so page tracking is accurate. refs <a href="https://jira.mongodb.org/browse/WT-1733">WT-1733</a></li>
<li>Fix a memory leak in cache management, where a race during page split could leave a key structure allocated. refs <a href="https://jira.mongodb.org/browse/WT-1582">WT-1582</a>, <a href="https://jira.mongodb.org/browse/WT-1747">WT-1747</a></li>
<li>Enhance checkpoint tracking code to allow eviction in files once the checkpoint has finished processing them. This helps reduce the impact of checkpoints on workloads with cache pressure. refs <a href="https://jira.mongodb.org/browse/WT-1745">WT-1745</a></li>
<li>Fix when aggregation is set on statistics fields. Fixes problems with visualizing statistics via wtstats graphs. refs <a href="https://jira.mongodb.org/browse/WT-1742">WT-1742</a></li>
<li>Change how checkpoints use empty blocks in on-disk files. Use a first-fit algorithm.</li>
</ul>
<h2>WiredTiger release 2.5.2, 2015-03-23 </h2>
<p>The WiredTiger 2.5.2 release contains important bug fixes.</p>
<p>API changes:</p>
<ul>
<li>Allow memory_page_max to be at most a quarter of the cache size not half. This avoids operations getting stalled due to the cache being filled with one or two pages.</li>
</ul>
<p>Bug fixes and other important changes:</p>
<ul>
<li>When skipping a dirty page during a checkpoint, make sure the tree is marked dirty. refs SUPPORT-1248, <a href="https://jira.mongodb.org/browse/SERVER-17319">SERVER-17319</a>, <a href="https://jira.mongodb.org/browse/SERVER-17506">SERVER-17506</a>, #1404, #1643, #1721, #1735</li>
<li>Fix a bug in range truncate where we could remove the wrong records. refs <a href="https://jira.mongodb.org/browse/SERVER-17345">SERVER-17345</a></li>
<li>Fix a bug in LSM management where we could let the cache get full - leading to a operations being blocked. refs #1720</li>
<li>Fix several bugs in the checkpoint implementation that could lead to a tree being marked clean when it had updates in memory. If shutdown occurred at a specific time those updates would be discarded without being written. refs SUPPORT-1248</li>
<li>Fix some bugs in logging - where system crashes could leave empty files that would stop recovery working on re-start. refs #1717, #1719, <a href="https://jira.mongodb.org/browse/SERVER-17451">SERVER-17451</a></li>
<li>Fix a bug in recovery. Force recovery instead of returning an error if the LSN given doesn't exist. refs #1700, #1704</li>
<li>Move writing into log worker thread to avoid latency in application threads. refs #1683</li>
<li>Fix a bug in the reconfigure API related to adhering to shared cache quotas. refs #1712, #1713</li>
<li>Fix a bug in WiredTiger statistics where we weren't recording overflow record statistics. refs #1520, #1703, #1711</li>
<li>Several enhancements to eviction of large pages including:<ul>
<li>Don't do forced eviction of a page if it is the current walk point.</li>
<li>Don't update the read generation on page in if it's set to oldest.</li>
<li>Clear the walk positions before the eviction server sleeps.</li>
<li>Reverse the direction of the LRU walk regularly.</li>
<li>Add all pages that would block to the eviction queue.</li>
<li>If evicting dirty pages use the worker threads not the server. refs #1706</li>
</ul>
</li>
<li>Use raw mode when dumping indices. refs #1709</li>
<li>Fix a bug where we could race opening files while a <a class="el" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#af535c517df851eeac8ebf3594d40b545" title="Close a connection. ">WT_CONNECTION::close</a> is in progress. refs <a href="https://jira.mongodb.org/browse/SERVER-17319">SERVER-17319</a></li>
<li>Fix a bug in LSM where snapshot transaction updates could have the wrong visibility check applied. Leading to invalid updates. refs #1641, #1701, #1702</li>
<li>Fix a bug in checkpoint where it could get an EBUSY return unnecessarily. refs #1404, #1589, #1705</li>
<li>Fix a bug when writing a page from memory to disk (reconciling). We could overwrite the end of a temporary buffer in some cases. refs #1697, #1699</li>
<li>Sometimes we would choose a sub-optimal layout for on disk pages when writing them out from memory. refs #1699</li>
<li>Improve the performance of in-memory lookups by making the content of the page structure more cache friendly.</li>
</ul>
<h2>WiredTiger release 2.5.1, 2015-03-07 </h2>
<p>The WiredTiger 2.5.1 release contains new features, minor API changes and many bug fixes.</p>
<p>New features and API changes:</p>
<ul>
<li>Add a new "log=(recover=on)" option to <a class="el" href="group__wt.html#gacbe8d118f978f5bfc8ccb4c77c9e8813" title="Open a connection to a database. ">wiredtiger_open</a>. The default value is "on", if set to "error", recovery won't be run on startup. An error will be returned if recovery is needed but disabled. This option is mainly to support the WiredTiger command line utility. refs #1651</li>
<li>Add a new <a class="el" href="struct_w_t___c_u_r_s_o_r.html#a6736da9b394239a201ba97761b7b941b" title="Return the ordering relationship between two cursors, testing only for equality: both cursors must ha...">WT_CURSOR::equals</a> method that returns when the cursors are equal, intended as a fast-path for cursor comparison.</li>
<li>Change how statistics work when there are checkpoints for an object. We used to aggregate statistics for all open checkpoints and the current handle. We now only return statistics for the object being queried. See upgrading documentation for further information.</li>
<li>Add a mode to LSM that allows us to limit the size of a tree by dropping old chunks. Enabled via "lsm=(chunk_count_limit=0)", default to 0 which disables the functionality. Note that enabling this feature discards old data automatically. refs #1652</li>
<li>Update the WiredTiger printlog command line utility to generate JSON that can be parsed by third party tools. refs #1438</li>
<li>Change how we track memory allocation overhead. We used to apply a fixed size for each allocation (which was difficult to track). The overhead can be specified via a new configuration option to <a class="el" href="group__wt.html#gacbe8d118f978f5bfc8ccb4c77c9e8813" title="Open a connection to a database. ">wiredtiger_open</a> using "cache_overhead=8". The value is a percentage and the default is 8. refs #1564 #1565</li>
<li>Major enhancements to the wtstats.py tool that translates WiredTiger statistics into an HTML graph. The tool now generates interactive graphs and no longer requires third party Python libraries to be installed.</li>
<li>Add a new <a class="el" href="struct_w_t___c_u_r_s_o_r.html#ad6a97a309e2c1ada7ca32a422c46612a" title="Reconfigure the cursor. ">WT_CURSOR::reconfigure</a> method for cursor configuration. See API documentation for more information. refs #1381</li>
<li>Add a new <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#abe03ccb716e097ed1bb4d42eb733c1f9" title="Return information about an error as a string. ">WT_SESSION::strerror</a> method, a thread-safe alternative to <a class="el" href="group__wt.html#gae8bf720ddb4a7a7390b70424594c40fd" title="Return information about a WiredTiger error as a string (see WT_SESSION::strerror for a thread-safe A...">wiredtiger_strerror</a>. refs #1516</li>
</ul>
<p>Bug fixes for bugs that could cause data inconsistency:</p>
<ul>
<li>Fix a bug in recovery where we could lose track of file identifiers and apply updates to the wrong file. refs <a href="https://jira.mongodb.org/browse/SERVER-17142">SERVER-17142</a> <a href="https://jira.mongodb.org/browse/SERVER-17131">SERVER-17131</a></li>
<li>Fix several bugs in data consistency that could cause corruption when restarting after a hard crash, including:<ul>
<li>A bug in table create that could cause recovery to fail. refs <a href="https://jira.mongodb.org/browse/SERVER-17204">SERVER-17204</a></li>
</ul>
</li>
</ul>
<p>Other significant changes:</p>
<ul>
<li>Significant tuning enhancements for the WiredTiger cache, including:<ul>
<li>Avoiding stalls due to evicting large pages</li>
<li>Better algorithms for getting application threads to help with cache management without interfering with operation latencies.</li>
<li>Better algorithms for maintaining the cache when there are a few very hot pages (e.g: append workloads). <a href="https://jira.mongodb.org/browse/SERVER-17344">SERVER-17344</a></li>
<li>Freeing obsolete references more aggressively, which saves space and reduces traversal overhead when there are lots of updates or deletes. refs <a href="https://jira.mongodb.org/browse/SERVER-17195">SERVER-17195</a>, #1647</li>
<li>Fix a bug that could cause a data loss if we split a large page into multiple smaller pages and attempted to evict the page at the same time. refs #1583 #1563 <a href="https://jira.mongodb.org/browse/SERVER-16868">SERVER-16868</a></li>
</ul>
</li>
<li>Significant improvements to the cursor truncate implementation, especially for workloads that periodically truncate from the start of the file. refs <a href="https://jira.mongodb.org/browse/SERVER-17141">SERVER-17141</a></li>
<li>Fix a bug in eviction where reconfiguring the number of eviction threads could result in a segfault. refs <a href="https://jira.mongodb.org/browse/SERVER-17293">SERVER-17293</a></li>
<li>Significant bug fixes and performance enhancements to the logging subsystem including:<ul>
<li>Avoid yielding excessively to avoid CPU overhead when there are many active sessions. refs #1610</li>
<li>The log close thread needs to wait for outstanding writes. #1571</li>
<li>Create a new utility thread to close and fsync log files. #1560</li>
<li>Ensure that log files are closed in sequence. #1555</li>
<li>Ensure that log file create appears atomic. #1482</li>
<li>Fix a race between connection close and switching log files that could lead to a new log file being in an undefined state. #1480</li>
</ul>
</li>
<li>Added support for advanced options to the WiredTiger verify command line tool.</li>
<li>Fix a bug in our conflict detection algorithm, where we were failing to detect some write-write conflicts in no-overwrite cursors. refs <a href="https://jira.mongodb.org/browse/SERVER-16351">SERVER-16351</a></li>
<li>Significant bug fixes when writing pages to disk, including:<ul>
<li>Stop double count the on-disk header when choosing split points. refs #1655</li>
<li>Fill the first and second pages as much as possible when splitting. refs #1282</li>
<li>Improve the algorithm for fitting large items onto pages when splitting. refs #1630 #1631</li>
<li>Fix a bug when using raw compression where we could overflow allocated memory. refs <a href="https://jira.mongodb.org/browse/SERVER-16664">SERVER-16664</a></li>
</ul>
</li>
<li>Fix several cases where <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a0334da4c85fe8af4197c9a7de27467d3" title="Verify a table or file. ">WT_SESSION::verify</a> and <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#ab3399430e474f7005bd5ea20e6ec7a8e" title="Salvage a table or file. ">WT_SESSION::salvage</a> could return EBUSY unnecessarily. refs #1404 <a href="https://jira.mongodb.org/browse/SERVER-16457">SERVER-16457</a></li>
<li>Fix a bug where racing between discarding and updating a tree returned an error to the application. refs #1618 <a href="https://jira.mongodb.org/browse/SERVER-17048">SERVER-17048</a></li>
<li>Fix a bug where opening a statistics cursor in parallel with a checkpoint could lead to a deadlock. refs #1575 <a href="https://jira.mongodb.org/browse/SERVER-16738">SERVER-16738</a></li>
<li>Change the shared cache implementation to use cache read pressure rather than write pressure to determine how best to share memory (as checkpoints skew write pressure as a metric). refs #1569</li>
<li>Fix a bug where a deadlock could occur if a checkpoint starts in parallel to compact operations. refs #1589 <a href="https://jira.mongodb.org/browse/SERVER-16967">SERVER-16967</a></li>
<li>Fix a bug in how we parse Huffman-encoding configuration settings during <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb" title="Create a table, column group, index or file. ">WT_SESSION::create</a>. refs #1417 #1536</li>
<li>Fix a bug where the custom extractor terminate callback was being made twice. refs #1503</li>
<li>Add a new mode to the eviction server where it writes out some pages even though the eviction triggers have not yet been reached.</li>
<li>Fix several issues reported by COVERITY static analysis tool.</li>
</ul>
<h2>WiredTiger release 2.5.0, 2014-12-24 </h2>
<p>The WiredTiger 2.5.0 release contains significant new features, API changes and many bug fixes.</p>
<p>Now that WiredTiger is part of MongoDB, we are tracking issues related to MongoDB usage of WiredTiger in the MongoDB JIRA system. Some entries in the changelog now reference JIRA tickets that can be found at:</p>
<p><a href="http://jira.mongodb.org">http://jira.mongodb.org</a></p>
<p>New features and API changes:</p>
<ul>
<li>Add support for storing large values on-page in a btree rather than in an overflow item. This is useful for workloads that want to keep large items in cache - since WiredTiger overflow items are never cached. It is configured via new <code>leaf_value_max</code> configuration setting. This enhancement led to the deprecation of internal_item_max and leaf_item_max configuration settings, see upgrading documentation for further information. [#1282]</li>
<li>Add support for compressing log files. When configured each compressible log record will be compressed. This is configure with the <code>log=(compressor=X)</code> configuration setting. See upgrading documentation for further information. [#1359]</li>
<li>No longer return EBUSY when opening a bulk cursor, verifying or salvaging a database if a checkpoint is currently running. This allows applications to do these exclusive operations without shutting down the checkpoint server thread. [#1397] [#1404] <a href="https://jira.mongodb.org/browse/SERVER-16236">SERVER-16236</a> <a href="https://jira.mongodb.org/browse/SERVER-16457">SERVER-16457</a></li>
<li>Add support for immutable indexes. [#1344]</li>
<li>Added several new statistics, improved accuracy for some statistics tracking and simplified mechanism for querying a particular statistic. [#1505]</li>
<li>Have the eviction server write out unnecessary pages prior to the cache reaching the configured eviction trigger size. This can reduce the amount of eviction application threads do when configured with a large cache.</li>
<li>Several enhancements to managing how long we keep files open</li>
<li>Revert a change in the 2.4.1 release that caused the WT_ROLLBACK (and deprecated WT_DEADLOCK) error return to map to different numeric values. Applications should ensure they are compiling against the same version of the wiredtiger.h header file as the library they link against, otherwise odd behavior will be experienced.</li>
<li>Support setting configuration strings to "none" as being equivalent to an empty string in most cases. [#1417]</li>
<li>Enhance the hot backup implementation to allow recovery to be run between incremental backups. [#1183]</li>
</ul>
<p>Other significant changes:</p>
<ul>
<li>Improve performance of cursor open when there are many tables in a database. [#1391] [#1443]</li>
<li>Reduce the impact checkpoints have on concurrent operations. This was done by changing how we lock tables. [#1391] [#1392]</li>
<li>Improve performance when scanning a table that has many deleted items. <a href="https://jira.mongodb.org/browse/SERVER-16247">SERVER-16247</a></li>
<li>Fix a bug in checkpoint, where the metadata (turtle) file wasn't being synced on checkpoint. [#1383]</li>
<li>Fix a bug where WiredTiger could accumulate memory during page splits and never free it. <a href="https://jira.mongodb.org/browse/SERVER-16546">SERVER-16546</a></li>
<li>Many enhancements and bug fixes for Windows.</li>
<li>Fix a bug where a custom extractor terminate was being called twice. [#1503]</li>
<li>Fix a bug where a race between closing a handle and checkpointing could lead to errors. [#1495] [#1497]</li>
<li>Validate the block header checksum before we clear it - if the checksum field had been corrupted, we didn't notice. <a href="https://jira.mongodb.org/browse/SERVER-16457">SERVER-16457</a></li>
<li>Fix a bug in write conflict detection. Cursors configured with no-overwrite could sometimes not see update conflicts for deleted records. <a href="https://jira.mongodb.org/browse/SERVER-16351">SERVER-16351</a></li>
<li>Several bug fixes and performance improvements in LSM including:<ul>
<li>Add support for custom collators in LSM trees. [#1361]</li>
<li>Fix a bug in LSM search_near, where it returned a deleted item. BF-694, BF-700</li>
<li>Improve background maintenance operations so that the cache does not get full unnecessarily.</li>
<li>Fix a bug that could lead to updates being written into old chunks. [#1432] [#1418]</li>
<li>Fix a bug in background merge that could skip updates. <a href="https://jira.mongodb.org/browse/SERVER-16123">SERVER-16123</a></li>
</ul>
</li>
<li>Fix a bug when maintaining the cache, that could cause checkpoints to skip writing an update that should have been included. [#1419] <a href="https://jira.mongodb.org/browse/SERVER-16336">SERVER-16336</a></li>
<li>Fix a bug in <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#adf785ef53c16d9dcc77e22cc04c87b70" title="Drop (delete) an object. ">WT_SESSION::drop</a>, where failures generated error output even when force was specified. [#1436]</li>
<li>Fix a bug in WiredTiger integer packing code when figuring out how much space is required for a value (it can shrink as numbers grow). <a href="https://jira.mongodb.org/browse/SERVER-16118">SERVER-16118</a></li>
<li>Several enhancements to the wtstats.py tool that generates graphs from standard WiredTiger statistics logs. [#1365]</li>
<li>Fix a bug on OS X where fsync isn't sufficient to flush a file, use fcntl(F_FULLFSYNC) instead.</li>
<li>Work around a bug in clang 3.5.0 compare and swap primitive. The __sync_bool_compare_and_swap version of the API in clang produces bad code for us with -O3 optimization enabled.</li>
</ul>
<h2>WiredTiger release 2.4.1, 2014-11-06 </h2>
<p>The WiredTiger 2.4.1 release contains several new features, many bug fixes and performance enhancements.</p>
<p>New features and API changes:</p>
<ul>
<li>Add new custom extractor functionality to WiredTiger indexes. Allowing an application to define mutated and/or multiple keys for indexes. [#1199]</li>
<li>Add a new <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a1d108fab498cfddbb09ee23e3321a88d" title="Return the transaction ID range pinned by the session handle. ">WT_SESSION::transaction_pinned_range</a> method that allows users to identify when a session is keeping a transaction ID pinned for a long time. [#1314]</li>
<li>Enhance statistics output so that keys are more clearly categorized. [#1313]</li>
<li>Rename WT_DEADLOCK error return to WT_ROLLBACK. WiredTiger uses the return in cases other than traditional application deadlock. The old value is retained as an alias to maintain backward compatibility. [#1204]</li>
<li>Increase the maximum configurable cache size to 100GB.</li>
</ul>
<p>Other significant changes:</p>
<ul>
<li>Improve support for building on Windows platforms. [#1342]</li>
<li>Fix a bug where WiredTiger could race closing handles. [#1336]</li>
<li>Enhance performance when hot pages in cache are growing rapidly. [#1317]</li>
<li>Fix a bug in recovery, where log files that are zero extended could result in some log records being skipped. [#1334]</li>
<li>Updates to the Java API to improve documentation and exception handling. [#1295]</li>
<li>Improve support for building on Oracle Solaris platform [#1329]</li>
<li>Fix a bug where closing a handle could leave the tree in an inconsistent state on failure. [#1316]</li>
<li>Several bug fixes and improvements to LSM including:<ul>
<li>Improving algorithm for switching the in-memory chunk.</li>
<li>Fixing a bug related to dropping obsolete chunks. [#1304]</li>
</ul>
</li>
<li>Fix a bug in schema level operations (table create, drop, etc). If there was an explicit transaction running when the operation was performed that was subsequently rolled back the object could be left in an inconsistent state.</li>
<li>Several enhancements to cache management when there are long running transactions present.</li>
</ul>
<h2>WiredTiger release 2.4.0, 2014-10-15 </h2>
<p>The WiredTiger 2.4.0 release contains significant new features, API changes and many bug fixes.</p>
<p>New features and API changes:</p>
<ul>
<li>Cursors keep their position across transaction boundaries. That is <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a7e26b16b26b5870498752322fad790bf" title="Start a transaction in this session. ">WT_SESSION::begin_transaction</a> and <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a712226eca5ade5bd123026c624468fa2" title="Commit the current transaction. ">WT_SESSION::commit_transaction</a> no longer reset cursors. [#1181]</li>
<li>Change cursor behavior so that when an operation returns WT_NOTFOUND, the cursor is now left pointing to the original key/value pair. [#1209]</li>
<li>Initial support for building WiredTiger on Windows.</li>
<li>Add ability to customize a collator for specific data sources or with application managed metadata. See upgrading documentation for more information. [#1165]</li>
<li>Enhance extension mechanism in WiredTiger to support loading extensions from the application binary - not just a separate library. [#1174]</li>
<li>Replace <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb" title="Create a table, column group, index or file. ">WT_SESSION::create</a> "lsm=(merge_threads)" configuration option with <a class="el" href="group__wt.html#gacbe8d118f978f5bfc8ccb4c77c9e8813" title="Open a connection to a database. ">wiredtiger_open</a> "lsm_manager=(worker_thread_max)". See upgrading documentation for more information.</li>
<li>Enhancements to the WiredTiger Python API build process. [#1188]</li>
<li>Add ability to dump and load WiredTiger databases in JSON format. [#1154]</li>
<li>Add ability to automatically checkpoint based on the volume of log records generated since the last checkpoint. This is enabled using the <a class="el" href="group__wt.html#gacbe8d118f978f5bfc8ccb4c77c9e8813" title="Open a connection to a database. ">wiredtiger_open</a> configuration option "checkpoint=(log_size=size)" [#1170]</li>
<li>Enhance functionality allowing users to write content into the WiredTiger transaction log. [#1171][#1175]</li>
<li>Enhance the WiredTiger HyperLevelDB implementation to support log replay. [#1106][#1155]</li>
</ul>
<p>Other significant changes:</p>
<ul>
<li>Fix several bugs in the shared cache implementation. [#1180][#1176]</li>
<li>Fix a bug where the public URI field in a cursor did not match the string passed to <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#afb5b4a69c2c5cafe411b2b04fdc1c75d" title="Open a new cursor on a data source or duplicate an existing cursor. ">WT_SESSION::open_cursor</a>. [#1235]</li>
<li>Fix several bugs in salvage. [#1222][#1169]</li>
<li>Several bug fixes and enhancements for <a class="el" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#a579141678af06217b22869cbc604c6d4" title="Reconfigure a connection handle. ">WT_CONNECTION::reconfigure</a>. [#1214][#1172]</li>
<li>Fix several bugs in raw compression implementation, particularly for data that compresses extremely well. [#1191]</li>
<li>Several bug fixes and enhancements to WiredTiger LevelDB interface.</li>
<li>Switch default build from using adaptive pthread mutexes to default pthread mutexes.</li>
</ul>
<h2>WiredTiger release 2.3.1, 2014-08-14 </h2>
<p>The WiredTiger 2.3.1 release contains mainly performance enhancements and bug fixes.</p>
<p>Changes to the WiredTiger API:</p>
<ul>
<li>Fix a bug in <a class="el" href="struct_w_t___c_u_r_s_o_r.html#a27f7cbd0cd3e561f6a145704813ad64c" title="Set the value for the next operation. ">WT_CURSOR::set_value</a> that could lead to undefined behavior with some value formats.</li>
<li>Make the asynchronous API generally available [#1139]</li>
<li>Add log cursors for replay and verification. Make generated log record and operation types public. [#1106]</li>
<li>Allow eviction worker threads to be started and stopped dynamically. Applications that use the <code>eviction_workers</code> configuration should see the upgrading documentation on how to use this feature. [#1116, #1143, #1158]</li>
</ul>
<p>Other significant changes:</p>
<ul>
<li>Improve performance and reduce latency during checkpoints and LSM merges. Remove uses of the checkpoint lock other than serializing checkpoints: compact holds the schema lock, so it doesn't need to hold the checkpoint lock, the new WT_BTREE handle close lock prevents checkpoints from colliding with handle close, so LSM doesn't need the checkpoint lock either.</li>
<li>Some minor cleanups, setting the internal session's name in a few places. [#1073]</li>
<li>Grab the live lock when loading a checkpoint in diagnostic mode: that could race with a read. [#1102]</li>
<li>Instead of keeping a list of file URIs for checkpoint to flush, open a handle and stash it. [#1114]</li>
<li>Add a new OS-layer function __wt_fsync_async to flush a file without waiting for the results, call it from the Btree flush-leaves code so pages start flushing while we're working the rest of the checkpoint. [#1136, #1152]</li>
<li>Wait for the handle flush lock when writing the leaf pages instead of returning EBUSY. [#1136]</li>
<li>Add a wtperf page to the documentation, describe how to simulate workloads and view statistics. [#1147]</li>
<li>Flag new structures not listed in PREDEFINE. [#1148]</li>
<li>Return EBUSY if no async handles available and fix ex_async to look for it. [#1153]</li>
<li>Fix some problems with navigation in the reference guide.</li>
<li>Bump the number of slots for internal sessions: we have a lot more than 2 now. Add a test for <code>session_max</code> settings, make sure we add enough to account for at least the default internal sessions.</li>
<li>Remove tcbench: we're no longer maintaining it.</li>
</ul>
<h2>WiredTiger release 2.3.0, 2014-07-29 </h2>
<p>The WiredTiger 2.3.0 release contains significant new features, performance enhancements and bug fixes. Significant changes are described below.</p>
<p>Changes to the WiredTiger API (see upgrading documentation for details):</p>
<ul>
<li>Add a LevelDB API implementation for WiredTiger. This includes support for stock LevelDB as well as Basho, HyperLevelDB and RocksDB versions of the API. To build the LevelDB API include –enable-leveldb in the configure command, to specify compatibility with an alternative LevelDB API use –enable-leveldb=[basho,hyper,rocksdb]. [#1028]</li>
<li>Add ability to build some common extensions into the WiredTiger library. This means that the libraries for those extensions don't need to be dynamically loaded at runtime. Currently supported extensions are Snappy compression and zlib compression. The option can be enabled by passing –with-builtins=[snappy,zlib] to the configure command line.</li>
<li>Add a new configuration to wiredtiger_open: statistics_log=(on_close=true), that causes a set of statistics to be logged on <a class="el" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#af535c517df851eeac8ebf3594d40b545" title="Close a connection. ">WT_CONNECTION::close</a>. [#1086]</li>
<li>Add a new configuration to wiredtiger_open: exclusive, that causes the open to fail if the database already exists.</li>
</ul>
<p>Other significant changes:</p>
<ul>
<li>Performance improvement for high throughput workloads using multiple eviction threads. Performance of some workloads improves by over 15% [#1087]</li>
<li>Significant performance optimizations for queries, giving up to 20% throughput improvement for in-memory query workloads. <a href="https://github.com/wiredtiger/wiredtiger/wiki/Query-throughput">https://github.com/wiredtiger/wiredtiger/wiki/Query-throughput</a></li>
<li>Fix an off-by-one bug that could lead to ENOMEM during commit with logging. [#1104][#1121]</li>
<li>Allow bulk loads to multiple files to complete in parallel. [#1114][#1126]</li>
</ul>
<h2>WiredTiger release 2.2.1, 2014-06-24 </h2>
<p>The WiredTiger 2.2.1 release contains mainly performance enhancements and bug fixes. Significant changes are described below.</p>
<p>Changes to the WiredTiger API (see upgrading documentation for details):</p>
<ul>
<li>Change the order in which configuration setting mechanisms are applied by wiredtiger_open. [#1010][#1034]</li>
<li>Split the global transaction_sync configuration into two parts: a sync method (dsync, fsync or none), and an enabled flag (false by default). [#1074]</li>
<li>Add ability to sync with per transaction granularity. [#1074]</li>
<li>Update WiredTiger Java API to throw WiredTigerException consistently. [#1011]</li>
<li>Add ability to dump and load databases using JSON format. [#740][#1049]</li>
</ul>
<p>Other significant changes:</p>
<ul>
<li>Various performance improvements to the main cursor search routine including reductions in how often we need to copy data and profiling based optimizations for tight search loops. [#1050][#1070]</li>
<li>Fix a bug in recovery with missing files (e.g., after a hotbackup that raced with file creation). [#1042][#1045]</li>
<li>Several bug fixes and performance enhancements related to LSM trees and snapshot isolation transactions. [#1057][#1060][#1075]</li>
<li>Several performance tuning enhancements to LSM trees around locking, throttling and switching chunks. [#1051]</li>
<li>Algorithmic improvements to LSM tree compact operation. It is now faster and more reliable. [#1063]</li>
<li>Create a separate thread to manage open file handles - which means that:<ul>
<li>Application threads are less likely to be responsible for closing handles</li>
<li>Multi threaded workloads don't open/close handles more often than necessary [#1018]</li>
</ul>
</li>
</ul>
<h2>WiredTiger release 2.2.0, 2014-05-21 </h2>
<p>The WiredTiger 2.2.0 release contains new features, performance enhancements and bug fixes. Significant changes include:</p>
<p>Changes relevant for upgrading applications:</p>
<p>Update the table create API to disable prefix compression by default. Applications generally see better performance without prefix compression, choosing space saving over performance is up to the application. [#981]</p>
<p>Change the default leaf_page_max setting from 1MB to 32KB. Choosing a large default leaf_page_max led to poor performance in out of cache workloads.</p>
<p>Remove the <code>--enable-debug</code> option to configure. It is more standard to set <code>CFLAGS="-g"</code> variable instead.</p>
<p>Save the wiredtiger_open configuration when a database is created, so that settings like cache size, extensions and logging are set consistently by all subsequent users of the database.</p>
<p>Add an <code>--enable-verbose</code> option to configure. In order to access the verbose message functionality available as part of the wiredtiger_open and <a class="el" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#a579141678af06217b22869cbc604c6d4" title="Reconfigure a connection handle. ">WT_CONNECTION::reconfigure</a> APIs, it is necessary to pass the <code>--enable-verbose</code> option to configure.</p>
<p>Enhance the metadata cursor implementation (i.e: cursors created with a "metadata:" prefix) so that they can be used to inspect metadata for internal tables and now support altering the metadata. Add a new "read_only" flag to cursor configuration that defaults to false for metadata cursors.</p>
<p>Fix several bugs in raw compression, including one that could cause data corruption and some that triggered poor performance. [#984][#991][#1007][#1008][#1013]</p>
<p>Improve the performance of recovery - we no longer need to scan all log files looking for the last checkpoint.</p>
<p>Improve performance of read-only transactions, by deferring the allocation of transaction IDs. [#978]</p>
<p>Several bug fixes in hot backup related to log files, including:</p><ul>
<li>Always choose the right metadata version in the backup [#972]</li>
<li>Don't require that hot backup copies log files in order [#976]</li>
<li>Always copy log files before data files [#976]</li>
<li>Fix a bug where recovery returned an error if the last log record was incomplete [#994]</li>
</ul>
<p>Speed up checkpoints by doing a better job of skipping pages that can't contain changes that need to be included. [#954][#963][#1001]</p>
<p>Add ability to store zero length data items into LSM trees. [#540]</p>
<p>Add an asynchronous data access/manipulation API to WiredTiger. [#933]</p>
<p>Add the ability to configure multiple eviction server threads, to help with keeping space available in the cache. [#918]</p>
<p>Add the ability to reconfigure the checkpoint and statistics log servers. [#997][#1004]</p>
<p>Improve the performance of retrieving data for in cache workloads. [#970]</p>
<p>Improve the structure of the in-memory tree we are generating, by allowing internal pages to be split. This significantly improves query performance in some workloads. [#876]</p>
<p>Work around a bug in posix_fallocate on Linux, where it could corrupt already written data.</p>
<p>Add the ability to leak memory on connection close via new leak_memory option to <a class="el" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#af535c517df851eeac8ebf3594d40b545" title="Close a connection. ">WT_CONNECTION::close</a> API. This allows for faster shutdown if a process is going to exit when the WiredTiger connection is closing.</p>
<p>Allow salvage to run on any table type.</p>
<h2>WiredTiger release 2.1.2, 2014-03-27 </h2>
<p>The WiredTiger 2.1.2 release contains performance enhancements and bug fixes. Significant changes include:</p>
<p>Update the configuration settings for shared_cache to make the distinction between cache_size and shared_cache less confusing. See upgrading documentation for more information.</p>
<p>Various performance enhancements to improve the performance of checkpoints.</p>
<p>Fix a bug that could cause a hang with small caches under heavy load. [#894]</p>
<h2>WiredTiger release 2.1.1, 2014-03-04 </h2>
<p>The WiredTiger 2.1.1 release contains new features, performance enhancements and bug fixes. Significant changes include:</p>
<p>Fix a bug where a page could be marked clean when it contained uncommitted changes. This bug could cause undefined behavior in transaction rollback under load.</p>
<p>Fix a bug with shared caches when rebalancing between connections.</p>
<p>Add a new public API to WiredTiger that provides the ability to parse WiredTiger compatible configuration strings. See the upgrading documentation for further information. [#873]</p>
<p>A number of performance enhancements to the LSM implementation, particularly for long running workloads.</p>
<p>A number of performance enhancements and bug fixes to cache eviction code.</p>
<p>Add an option to use direct I/O when reading from checkpoints. To enabled the functionality add "direct_io=[checkpoint]" to your wiredtiger_open configuration string. [#847]</p>
<h2>WiredTiger release 2.1.0, 2014-02-04 </h2>
<p>The WiredTiger 2.1.0 release contains new features, performance enhancements and bug fixes. Significant changes include:</p>
<p>The <a class="el" href="group__wt.html#struct_w_t___i_t_e_m" title="A raw item of data to be managed, including a pointer to the data and a length. ">WT_ITEM</a> structure was changed so that the size field is a size_t rather than a uint32_t. See upgrading documentation for details.</p>
<p>A change to the compress_raw interface around repeating the call with more records. See upgrading documentation for details.</p>
<p>In LSM trees, the memory_page_max setting is ignored. The effective setting is double the chunk size. [#861][#859]</p>
<p>Add support for zlib compression. [#855] [#865]</p>
<p>Various enhancements to how WiredTiger generates tree structures in memory to help maintain consistent performance as table size grows. [#851]</p>
<p>Add support for Levyx Inc Helium as an external data source in WiredTiger [#849][#850]</p>
<p>Improve insert performance when a table contains many identical overflow items.</p>
<p>Various performance enhancements to btree searches. [#838][#839][#840]</p>
<p>Add support for newer versions of autoconf up to 1.14. [#599][#841]</p>
<p>Improve multi-threaded throughput of durable log writes, including changing the default wiredtiger_open transaction_sync configuration from dsync to fsync, see the upgrading documentation for further information. [#831][#832]</p>
<p>In the Python and Java APIs, automatically close handles to prevent invalid accesses by applications. [#649][#800][#830]</p>
<p>Various enhancements to the LSM merge algorithm, including improvements to how files are selected for merging, and throttling based on whether merges are keeping up (to limit write amplification). Made the minimum number of chunks chosen to merge configurable. [#817][#819][#822]</p>
<h2>WiredTiger release 2.0.1, 2013-12-12 </h2>
<p>The WiredTiger 2.0.1 release contains major new features, numerous performance enhancements and bug fixes.</p>
<p>Significant changes include:</p>
<ul>
<li>WiredTiger now supports fine-grained durability via Write Ahead Logging (WAL). Logging is enabled with the "log=(enabled)" configuration string to wiredtiger_open. If the connection is not shut down cleanly and logging is enabled, WiredTiger will automatically run recovery the next time it is opened, rolling forward changes in the log until the last commit. [#605]</li>
<li>Many enhancements to the LSM implementation to improve the throughput and reduce maximum operation latency including:<ul>
<li>Algorithmic improvements when multiple merge threads are configured.</li>
<li>Improvements to bloom filter lookup speed.</li>
<li>Enhancements to internal cursor management, to reduce search overhead.</li>
<li>Prioritize switching to a new level 0 chunk in utility threads, to avoid application thread pauses.</li>
<li>More advanced logic in choosing when to create bloom filters.</li>
</ul>
</li>
<li>LSM specific <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb" title="Create a table, column group, index or file. ">WT_SESSION::create</a> configuration option enhancements. Including:<ul>
<li>Move existing options into their own group, and strip leading lsm_ prefix.</li>
<li>Add a new merge_max configuration option.</li>
<li>Update the default chunk_size to be 10MB.</li>
<li>Increase the default bloom filter bit and hash counts.</li>
<li>Clean up files left after interrupted merges. See the upgrading documentation for details. [#784, #785, #786, #802]</li>
</ul>
</li>
<li><a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#aafa7a12a4891a5bfdc98673a5b8f9c69" title="Compact a live row- or column-store btree or LSM tree. ">WT_SESSION::compact</a> can now be used to merge LSM trees into a small number of chunks on disk. [#792]</li>
<li>Enhanced the Java API, so that when WiredTiger automatically closes a handle, the handle is automatically invalidated for the Java application. [#485]</li>
<li>Add a script that can create an interactive web page to view statistics from a WiredTiger statistics log. Based on D3: <a href="http://d3js.org/">http://d3js.org/</a></li>
<li>Enhancements to the wtperf performance testing tool to add new features</li>
</ul>
<h2>WiredTiger release 1.6.6, 2013-11-19 </h2>
<p>The WiredTiger 1.6.6 release is a bugfix and performance tuning release.</p>
<p>This release of WiredTiger contains a database format change. Database files from previous releases will need to be upgraded.</p>
<p>A special note: the WiredTiger code base is now being regularly reviewed using the Coverity Static Analysis Verification Engine. We'd like to thank Coverity for their on-going support of Open Source projects like WiredTiger!</p>
<p>Significant changes include:</p>
<ul>
<li>Performance changes include: limiting operations done inside update serialization primitives, removing unnecessary memory barriers, replacing spinlocks with atomic instructions, padding structures to avoid false cache sharing, switching from per-file mutexes to per-page mutexes, pre-allocating structures to avoid memory allocation while holding mutexes, and using adaptive mutexes where available. [#707, #718, #719]</li>
<li>A number of LSM stability and performance improvements: changes include better merge algorithms, reduced locking, and higher concurrency.</li>
<li>A number of table compaction performance improvements, including changes allowing compaction to no longer read unnecessary file blocks into the cache, requires fewer passes over the file and support concurrent checkpoints and eviction. This change required an underlying file format change, see the upgrading documentation for details. [#756, #761]</li>
<li><p class="startli">WiredTiger statistics have been significantly improved:</p>
<p class="startli">Statistics logging has been changed to aggregate information from all open handles. [#709, #717]</p>
<p class="startli">For performance reasons, statistics are now disabled by default, see the upgrading documentation for details. [#715]</p>
<p class="startli">Statistics configuration has been changed so the connection and cursor configuration are consistent, with matching changes to the "wt stat" command-line utility; see the upgrading documentation for details.</p>
</li>
<li><p class="startli">Update <a class="el" href="struct_w_t___e_v_e_n_t___h_a_n_d_l_e_r.html" title="The interface implemented by applications to handle error, informational and progress messages...">WT_EVENT_HANDLER</a> interface to contain a new "handle close" interface and to pass a <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html" title="All data operations are performed in the context of a WT_SESSION. ">WT_SESSION</a> handle into all callbacks, see the upgrading documentation for details. [#649]</p>
<p class="startli">Add timestamp, process ID and thread ID to messages generated via <a class="el" href="struct_w_t___e_v_e_n_t___h_a_n_d_l_e_r.html" title="The interface implemented by applications to handle error, informational and progress messages...">WT_EVENT_HANDLER</a> interface. [#753]</p>
</li>
<li>WiredTiger eviction improvements, supporting larger data-to-cache size ratios. [#754]</li>
<li>Various fixes for handling overflow records. [#726, #743]</li>
<li>Overflow records are no longer tracked during bulk-loads, significantly increasing bulk-load performance for some data sets.</li>
</ul>
<h2>WiredTiger release 1.6.5, 2013-10-09 </h2>
<p>This is primarily a bugfix and performance tuning release. The main changes are:</p>
<ul>
<li>Change the default statistics_fast configuration from false to true.</li>
<li>Change <a class="el" href="struct_w_t___c_u_r_s_o_r.html#aac90d9fbcc031570f924db55f8a1cee3" title="Insert a record and optionally update an existing record. ">WT_CURSOR::insert</a> to not hold a position. [#673]</li>
<li>Disallow <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#aafa7a12a4891a5bfdc98673a5b8f9c69" title="Compact a live row- or column-store btree or LSM tree. ">WT_SESSION::compact</a> operations on LSM trees.</li>
<li>The 'sync' setting to wiredtiger_open has been renamed 'checkpoint_sync'.</li>
<li>Add a "metadata:" cursor type. [#660]</li>
<li>Fix race in the cache's dirty byte tracking. [#635, #699]</li>
<li>Fix a bug scanning through a memory-mapped file with overflow items. [#701]</li>
<li>Use hardware checksum instructions when available. [#582, #702]</li>
<li>Several bug fixes related to tracking active transaction IDs and detection of obsolete updates with high concurrency workloads. [#639, #643, #657, #683]</li>
<li>Fix several bugs in LSM including races on shutdown and Bloom filter creation. [#686, #687, #688].</li>
<li>Fix a bug in LSM where we were not including Bloom filter files in backups. [#684]</li>
<li>Optimize the LSM throttle and merge algorithms. [#676]</li>
<li>Make hot backups work concurrently with files being bulk-loaded. [#570, #653]</li>
<li>Add full support for snapshot isolation to LSM: only switch LSM chunks if all changes are globally visible and detect conflicts between transactions across file switches. [#629]</li>
</ul>
<h2>WiredTiger release 1.6.4, 2013-08-20 </h2>
<p>This is primarily a bugfix and performance tuning release. The main changes are:</p>
<ul>
<li>Make prefix compression of keys conditional on the amount of space saved. A database format change was required for this enhancement. See upgrading documentation for details. [#624]</li>
<li>The default behavior of the wt utility's load command has been changed to overwrite existing data.</li>
<li>Add a <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb" title="Create a table, column group, index or file. ">WT_SESSION::create</a> prefix_compression_min configuration option with a default value of 4. [#624] and [#624]</li>
<li>Fix "make install" of Python API. [#598]</li>
<li>Require platform support for atomic read/write of 64 bit values. [#553]</li>
<li>Support transaction semantics for custom data source implementations. Enhance Memrata data source to support transactions.</li>
<li>Changes to the wtperf testing tool related to how configuration options are specified.</li>
<li>Enhance cursor key/value memory management to be more efficient, consistent, and have stricter checking of inputs and outputs.</li>
<li>Increase the likelihood of being able to evict hot pages. [#604]</li>
<li>Reference on-page keys instead of copying them to allocated memory. This saves space in the cache and overhead when reading pages into cache. [#592] and [#600]</li>
<li>Add a btree search optimization that skips matching prefixes. [#595]</li>
<li>Turn off Huffman encoding for keys on row-store internal pages. [#592]</li>
<li>Add concurrent logging infrastructure that will be used to support write ahead logging in a future release.</li>
</ul>
<h2>WiredTiger release 1.6.3, 2013-07-12 </h2>
<p>This is a bugfix and performance tuning release. The main changes are:</p>
<ul>
<li>Change the default cursor overwrite configuration so that it is consistent across all data sources. This change may alter the behavior of existing applications without triggering any compilation or runtime warnings. See the upgrade documentation for details. [#512]</li>
<li>Require platform support for 64 bit atomic operations. [#553]</li>
</ul>
<h2>WiredTiger release 1.6.2, 2013-06-18 </h2>
<p>This is a bugfix and performance tuning release. The main changes are:</p>
<ul>
<li>Fix a race in the WiredTiger pseudo random number generator that was leading to poor distribution of numbers.</li>
<li>Change the default compression configuration to "uncompressed".</li>
<li>Fix a race between checkpoints and LSM that could result in a crash. [#543]</li>
<li>Add an option to output version information at runtime. Configure by including "verbose=[version]" in the wiredtiger_open connection configuration string. [#564]</li>
<li>Add a configurable prefix to error messages. [#527]</li>
<li>Add two new extension APIs, one to return a transaction ID, one to return if a transaction ID is visible to the current transaction.</li>
<li>Add standard metadata functions to the extension API and make extension data sources responsible for their own metadata entries.</li>
<li>Add a new extension function __wt_ext_config_strget that returns the configuration value from a single string.</li>
</ul>
<h2>WiredTiger release 1.6.1, 2013-05-31 </h2>
<p>This is a bugfix and performance tuning release. The main changes are:</p>
<ul>
<li>Fix the compress_raw API so that it uses platform independent types. See the upgrade guide for further information. [#561]</li>
<li>Add an explicit enable setting to shared_cache configuration. See the upgrade guide for further information.</li>
<li>Fix several bugs in hot backup, including race conditions between backup and table drop (and other schema level operations). [#556] [#557]</li>
<li>Allow any data source type for indices as well as column groups. [#545]</li>
<li>Preload btree internal pages into file system cache when opening a table.</li>
<li>Change the default allocation size to 4KB so that DIRECT_IO with 4KB blocks works. [#547]</li>
<li>Fix some bugs related to tracking the oldest active transaction. [#552]</li>
<li>Fix a bug in the extension API when using multiple databases.</li>
<li>Disallow named checkpoints on LSM trees - they aren't supported. [#546]</li>
<li>Fix support for custom collators with LSM trees. [#544]</li>
<li>Build fixes for gcc 4.1.2.</li>
</ul>
<p>See the upgrade documentation for details of API changes that may require altering existing applications.</p>
<h2>WiredTiger release 1.6.0, 2013-05-16 </h2>
<p>This release contains new features, bug fixes and performance improvements. The significant changes are highlighted below:</p>
<ul>
<li>Fix a bug where configuring direct I/O could cause checksum errors at runtime. NOTE: database file format change. [#526]</li>
<li>Fix a race that allowed checkpoints to be deleted while hot backups are running. [#515]</li>
<li>Scale to events per second in graphs generated from statistics log output. [#518]</li>
<li>Changes to reduce the latency of LSM operations.</li>
<li>Add a new terminate callback to extension interfaces that is called when the WiredTiger connection is closed. [#530]</li>
<li>Various optimizations and bug fixes to cache management and eviction code.</li>
<li>Update various statistics.</li>
<li>Fix a bug where using a combination of read-committed and snapshot transactions could result in inconsistent values being returned. [#539]</li>
<li>Fix a bug where using LSM trees with compression enabled could result in an invalid system call. [#535]</li>
<li>Enhance statistics logging so that it can dump "lsm:" statistics.</li>
</ul>
<p>See the upgrade documentation for information about database format changes in this release.</p>
<h2>WiredTiger release 1.5.3, 2013-04-26 </h2>
<p>This release contains some major new features along with numerous bug fixes and performance improvements. The significant changes are highlighted below:</p>
<ul>
<li>Enhance the extension data source API to facilitate implementation of new data stores in WiredTiger.</li>
<li>Add support for the STEC / Memrata KVS data source.</li>
<li>Add a Berkeley DB data source via the WiredTiger extension API.</li>
<li>Various enhancements to cache eviction management. Mostly to avoid stalls in application threads.</li>
<li>Fixes to shared cache pool implementation, so resources are more aggressively reallocated.</li>
<li>Add new statistics.</li>
<li>Implement automatic insert throttling in LSM - enabled by default.</li>
<li>Configuration strings are now case sensitive.</li>
<li>Enhance LSM merge algorithms to be more efficient as trees grow very large.</li>
</ul>
<p>See the upgrade documentation for details of API changes that may require altering existing applications.</p>
<h2>WiredTiger release 1.5.2, 2013-03-28 </h2>
<p>This is a bugfix release. The main changes are:</p>
<p>[#493] Fix get_key/value in the Java API for complex cursors.</p>
<ul>
<li>Fix a leak in eviction detected by valgrind.</li>
<li>Stop trying to cache the oldest reader: we only use it for eviction and only update it when required.</li>
<li>Track cursor creation in the statistics (creating a cursor per operation isn't a good idea).</li>
</ul>
<h2>WiredTiger release 1.5.1, 2013-03-25 </h2>
<p>This is a bugfix and performance tuning release. The main changes are:</p>
<ul>
<li>Fix several bugs in LSM:<ul>
<li>the logic for setting the "no eviction" flag on LSM chunks was reversed, causing unnecessary eviction once the cache became full;</li>
<li>calling session.checkpoint while writing to an LSM tree could confuse the logic around switching to new chunks; and</li>
<li>fix a possible NULL pointer indirection when switching chunks.</li>
</ul>
</li>
<li>Make WT_ASSERT a no-op when not in DIAGNOSTIC mode.</li>
<li>Panic if we find a block on the wrong list, that's not something we can recover from.</li>
<li>If a page is reconciled (causing it's on-disk blocks to be freed and potentially recycled), and then a subsequent collapse of a stack of split-merge pages replaces that page with a page that has not yet been reconciled, we can potentially free the same blocks twice. The fix is to clear the page's WT_REF.addr field at the time we free the blocks, so future reconciliations will ignore the original disk blocks.</li>
<li>Fix a bug in the dump utility that allowed index URIs.</li>
<li>Tweak merge to build better trees with random insert workloads.</li>
<li>Don't use a stale value for the oldest reader transaction ID.</li>
<li>Track the size of the WT_REF array in internal pages (including WT_ADDRs). Also add an estimate of per-allocation overhead.</li>
<li>Fix a bug where URIs containing absolute paths were not being parsed correctly.</li>
<li>Add a RMW insert mode to wtbench.</li>
</ul>
<p>[#427] Improve cleanup after a failed wiredtiger_open call.</p>
<p>[#484] Don't allow true/false values in config strings where integers are expected.</p>
<p>[#486] Move the cache full check for autocommit transactions out of the rollback path (since we don't reset cursors there), to after we close a cursor.</p>
<p>[#488] Fix an assertion failure if we try to do eviction without ever having done an update.</p>
<h2>WiredTiger release 1.5.0, 2013-03-14 </h2>
<p>This release contains some major new features along with numerous bug fixes and performance improvements. The significant changes are highlighted below:</p>
<ul>
<li>Add a Java API.</li>
<li>Create a thread to do automatic checkpoints, configured by passing "checkpoint=(wait=X)" to wiredtiger_open.</li>
<li>Add support for periodically logging statistics to a file and a tool to generate graphs based on those logs. Configured by passing "statistics_log=(wait=X)" to wiredtiger_open.</li>
<li>Several changes to minimize the impact of checkpoints on other threads.</li>
<li>When reading from checkpoints, use mmap by default.</li>
<li>Enhance eviction so that internal pages take up less space.</li>
<li>Add maximum filesystem buffer cache settings to wiredtiger_open called "os_cache_max" and "os_cache_dirty_max". After doing the specified amount of reads or writes, WiredTiger will call fadvise and/or sync_file_range to drop pages from the filesystem cache. This is an alternative to direct I/O with less impact on performance.</li>
<li>Make run-time statistics optional, defaulted to "off".</li>
<li>Change how we detect if shared cache is used. It used to rely on a name, now it will be used if the shared_cache configuration option is included.</li>
<li>Add the ability to specify a per-connection reserved size for cache pools. Ensure cache pool reconfiguration is honoured quickly.</li>
<li>Rework hazard pointer coupling during cursor walks to be more efficient.</li>
<li>Add a cache_eviction_walk statistic to track the pages we walk and a cache_eviction_force statistic to track the count of pages queued for forced eviction.</li>
<li>Fixes to reduce the number of operations on shared data that were causing bottlenecks in read only workloads.</li>
<li>Add streaming pack / unpack to the API.</li>
<li>Add some basic reconciliation stats to the connection stats.</li>
<li>In LSM, keep trying to switch if there is an error: it may be transient.</li>
<li>Minor clean up and enhancement for the reconciliation statistics, add a set of compression statistics, both to the data-source statistics.</li>
<li>Compaction cannot run at the same time as a checkpoint: the problem is that checkpoints review page reconciliation information and checkpoints update page reconciliation information. Lock out checkpoints while compaction is running.</li>
</ul>
<h2>WiredTiger release 1.4.2, 2013-01-14 </h2>
<p>[#387] Fast-path "S" and "u" formats in cursor.get_key and cursor.get_value.</p>
<p>[#407] Allow non-conflicting updates to complete concurrently.</p>
<p>[#418] Add code in to prioritize eviction of pages that are larger than a certain threshold. This avoids taking a performance hit when a huge page needs to be reconciled. Add a new memory_max_page configuration option.</p>
<p>[#419] If a page splits, it potentially creates a merge-split internal page and we potentially walk that page during fast-delete. The WT_REF.addr field doesn't point to a cell in that case and we'll drop core.</p>
<p>[#424] Add clarification wording for boolean configuration strings.</p>
<p>[#425] Perform checkpoints in the calling thread, don't block eviction: when evicting in a file that is being checkpointed, only evict clean pages. Also Do compaction in the calling thread instead of interrupting the eviction thread to do the work.</p>
<p>[#426] Fixes for automake 1.3.x. Allow examples to run in parallel: give each a unique home directory.</p>
<p>Make the tree build without HAVE_VERBOSE.</p>
<p>Fix some issues with LSM rename and add a Python test.</p>
<p>Track when cursors refer to memory returned by WiredTiger, copy it if required before dropping hazard pointers that might be protecting it.</p>
<p>Verify shouldn't ever modify the file – don't bother checking for dirty pages, just discard everything.</p>
<p>When rolling forward to resolve key prefix compression, don't copy the key, we only need a reference to it, should speed up tables with lots of key prefix compression.</p>
<p>Requested changes for the WT_COMPRESSOR::compress_raw method API: pass in the configured object's page size as a convenience, and if <a class="el" href="struct_w_t___c_o_m_p_r_e_s_s_o_r.html#a8b72f263db4faea37d8362ebc4725990" title="Callback to size a destination buffer for compression. ">WT_COMPRESSOR::pre_size</a> is set, use it to determine the size of the destination buffer, rather than using the object's page size as the maximum needed.</p>
<h2>WiredTiger release 1.4.1, 2012-12-12 </h2>
<p>This is a bugfix, cleanup and performance tuning release. The significant changes are highlighted below:</p>
<p>[215] Add a __wt_panic function that shuts down all of the WiredTiger APIs. Also add a new error return WT_PANIC which means there has been an error in the WiredTiger engine, and it should be restarted.</p>
<p>[409] Fix a bug populating column groups with complex schema. Also allow empty column lists in projection cursors.</p>
<p>[150] Add description of how to do index-only searches to the documentation.</p>
<p>[392] Move examples/c/ex_test_perf.c to bench/wtperf.</p>
<p>[322] Add support for statistics on schema-level objects i.e tables, column groups, indices.</p>
<ul>
<li>Enhance statistics, including changing the name of some statistics.</li>
<li>Fix a bug in the eviction server that could cause it to abort, leaving the system unusable.</li>
</ul>
<h2>WiredTiger release 1.4.0, 2012-12-03 </h2>
<p>This release adds several major new features, a number of performance improvements and bug fixes. The significant changes are outlined below:</p>
<p>New features and API changes:</p>
<p>[242] Track the percentage of cache that is dirty, trigger eviction to bound it. This can be used to bound how much data checkpoints write.</p>
<p>[324] Add support for WT_COMPRESS::compress_raw, which lets the compression routine select how many rows are included in each disk block.</p>
<p>[381] Add statistics to track read and write amplification (application data size versus I/O size)</p>
<ul>
<li>Add a trigger configuration option to <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#aafa7a12a4891a5bfdc98673a5b8f9c69" title="Compact a live row- or column-store btree or LSM tree. ">WT_SESSION::compact</a> API.</li>
<li>Make <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb" title="Create a table, column group, index or file. ">WT_SESSION::create</a>'s checksum configuration 3-state: on, off, or uncompressed blocks only.</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>Fix build issues on Solaris.</li>
<li>Fix a bug calculating the generation of an LSM merge.</li>
<li>Fix WiredTiger dump and load for tables.</li>
<li>Fix a memory leak in checkpoints.</li>
<li>Improve accuracy of cache memory tracking with overflow items.</li>
</ul>
<h2>WiredTiger release 1.3.8, 2012-11-22 </h2>
<p>This release improves the performance of LSM trees, changes how statistics are reported and adds a shared cache implementation:</p>
<p>New features and API changes:</p>
<p>[232] Add a "size of checkpoint" statistic.</p>
<ul>
<li>Add a shared cache pool implementation. Manages a single cache among multiple databases within a process.</li>
<li>Merge statistics from file and LSM sources into a "data source" statistic structure. Rename and regroup some shared statistics. Add a helper to the Python API to lookup in a cursor in a simple expression.</li>
<li>Add support for sub groups of options in configuration strings.</li>
</ul>
<p>Performance tuning for LSM trees:</p>
<ul>
<li>Don't try to merge with a chunk that is much larger than a small chunk.</li>
<li>After an LSM merge, fault in some pages before the new tree goes live to avoid stalling application threads.</li>
<li>Don't automatically fail inserts if the write generation check fails: compare keys instead.</li>
<li>Switch the LSM tree lock to a read/write lock, so cursors can read the state of the tree in parallel.</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>Fix a bug where we could write past the end of a buffer after it was grown.</li>
</ul>
<h2>WiredTiger release 1.3.7, 2012-11-09 </h2>
<p>This release fixes a bug and improves performance with Bloom filters:</p>
<ul>
<li>Drop any old Bloom filter before creating a new one – we may have been interrupted in between creating it and updating the metadata. Write the metadata after creating missing Bloom filters.</li>
<li>Use a separate thread for creation of Bloom filters for the newest, unmerged LSM chunks.</li>
<li>Changes to the ex_test_perf example: change the default configuration to 4KB pages and disable prefix compression. Change the "-i" command line option to be a simple count of records to insert. Clean up error handling and add option to populate using multiple threads.</li>
<li>Clarify the docs for the default buffer_alignment setting.</li>
</ul>
<h2>WiredTiger release 1.3.6, 2012-11-06 </h2>
<p>This is a bugfix and performance tuning release. The changes are as follows:</p>
<ul>
<li>Rename the WiredTiger installed modules to libwiredtiger_XXX. Don't install the nop and reverse collator modules.</li>
<li>Replace test/format's bzip configuration string with compression, which can take one of four arguments (none, bzip, ext, snappy), change format to run snappy compression if the library is available.</li>
<li>Rename the builtin block compressor names from "bzip2_compress" to "bzip2", and from "snappy_compress" to "snappy".</li>
<li>Support multiple LSM merge threads with the "lsm_merge_threads" config key. Use IDs rather than array index to mark the start chunk in a merge, in case we race with another thread.</li>
<li>Cache the hash values used for Bloom filter lookups, rather than hashing for each Bloom filter in an LSM tree.</li>
<li>Only switch trees in an LSM cursor if the primary chunk is on disk.</li>
<li>Add a per-btree cache priority, currently only used to make it more likely for Bloom filter pages to stay in cache.</li>
<li>Only evict pages with read generations in the bottom quarter of the range we see. Fix a 32-bit wrapping bug in assigning read generations.</li>
<li>For update-only LSM cursors, only open a cursor in the primary chunk.</li>
<li>LSM: Report errors from the checkpoint thread.</li>
<li>LSM: only save a Bloom URI in the metadata after it is successfully created.</li>
<li>LSM: Create missing Bloom filters when reading from an LSM tree if "lsm_bloom_newest"is set.</li>
<li>LSM: Include all of the chosen chunks in a merge. Only pin the current chunk in an LSM cursor if it is writeable.</li>
</ul>
<h2>WiredTiger release 1.3.5, 2012-10-26 </h2>
<p>This is a bugfix and performance tuning release. The changes are as follows:</p>
<p>[#370] Document that applications are responsible for figuring out their upgrade path if they might swap out compression engines.</p>
<p>[#371] When a single session was used to reconcile multiple btrees, one of which had dictionaries configured and one of which didn't, we failed to clear the dictionary when starting page reconciliation. Be consistent, never use anything other than the btree handle's configuration to decide if we're using a dictionary in a reconciliation run.</p>
<p>[#372] Fix several potential integer overflow bugs.</p>
<p>[#373] Fix a bug where calls that performed an operation on multiple objects (such as creating a table that implicitly creates a column group) could leave the metadata incomplete if a process exited without calling <code><a class="el" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#af535c517df851eeac8ebf3594d40b545" title="Close a connection. ">WT_CONNECTION::close</a></code>. Hold the schema lock while opening tables. Fixes the error "cannot be
opened until all column groups are created" message when create calls race with open_cursor.</p>
<p>[#374] Fix a race that caused crashes when using the Python API with multi-threaded code.</p>
<p>[#375] Fix a bug in __wt_cond_wait - so that it returns after timeout expires.</p>
<ul>
<li>Protect the list of LSM trees with the schema lock to avoid races during create.</li>
<li>Update ex_test_perf to output statistics during populate and improve timing accuracy.</li>
<li>Skew eviction in favor of leaf pages - which improves read-only performance for large LSM trees.</li>
<li>Hold the LSM tree lock while gathering statistics.</li>
<li>Fix a bug in bulk load of bitmap files.</li>
<li>Fix a related bug in the bloom code that uses bitmap stores.</li>
<li>Don't attempt to drop the first chunk of an LSM tree before creating it.</li>
<li>Instead of entering a fake key cell after the last cell on the page just in case the page ends with a key cell which has no value, use the end of the page to detect that case.</li>
<li>Cache cursor key/value formats in Python, to save a native call from every get_key/value.</li>
<li>Don't sync the directory after open if the global "sync" flag is false.</li>
<li>Fix a race for LSM trees that could happen if two threads race to open a cursor and drop the LSM tree.</li>
</ul>
<h2>WiredTiger release 1.3.4, 2012-10-19 </h2>
<p>This release includes several important new features, including:</p>
<ul>
<li>support for online compaction of files;</li>
<li>support for tables, column groups and indices that use LSM trees for storage; and</li>
<li>improved statistics and configuration for LSM trees and Bloom filters.</li>
</ul>
<p>In addition, there are some significant performance improvements and bug fixes. The full list of changes is:</p>
<p>[#248] Add support for online compaction.</p>
<p>[#310] Fixed a bug where overflow blocks could be accessed by a long-running reader after they had been freed in a checkpoint.</p>
<p>[#358] Allocate checkpoint blocks from the live system's list of available blocks rather than always extending the file.</p>
<p>[#361] Sync the directory after creating a file: this is apparently required for durability on Linux, according to the Linux fsync man page.</p>
<p>[#362] Don't check if a page is on the avail or discard lists if we're salvaging the file, that is okay.</p>
<p>[#363] Remove obsolete code dealing with forced eviction.</p>
<p>[#366] Fake checkpoints may have the delete flag set, ignore them when rolling checkpoints forward.</p>
<p>[#367] All metadata reads should ignore the application's transactional context.</p>
<p>[#369] Support LSM as a data source for tables, column groups and indices.</p>
<ul>
<li>Add tuning options for LSM bloom filters, including controlling whether the oldest level in the tree has a Bloom filter, whether newly-created (level 0) files have Bloom filters, and passing arbitrary file configuration for Bloom filters.</li>
<li>Add a merge generation to LSM chunks. Add a statistic that reports the highest merge generation in a tree.</li>
<li>Add a new LSM statistic tracking searches that could benefit from bloom filters.</li>
<li>Enable LSM statistics in the "wt stat" utility.</li>
<li>Interrupt LSM merge operations, rather than waiting on close.</li>
<li>Wait for a while before looking for LSM major merges, in case merges catch up with inserts.</li>
<li>Fix LSM index searches. The main issue was LSM search_near was not always returning the closest key to the search key, which calling code expects. It now tries hard to find the smallest cursor larger than the search key, and only if no larger record exists does it return the largest record smaller than the search key.</li>
<li>Reset any old cursor position before an LSM search. This limits hazard references in an LSM search to a single chunk.</li>
<li>Fix a memory leak in an error path in Bloom filters.</li>
<li>Tweak the search loops in hazard_{set,clear} in favor of last-in-first-out ordering.</li>
<li>If there are many files open, some hotter than others, walk more files looking for pages to evict.</li>
<li>Don't stop evicting until we reach the target, have eviction wake up periodically regardless of whether the application signals it. This latter requires a "timed condition wait" operation.</li>
<li>Tweaks to file handle flags for out-of-cache read performance on Linux (disable read-ahead and access time updates).</li>
<li>Replace the WT_SESSION::dumpfile method with configuration strings to <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a0334da4c85fe8af4197c9a7de27467d3" title="Verify a table or file. ">WT_SESSION::verify</a>.</li>
<li>Fix a bug where we weren't skipping unnecessary default checkpoints because we weren't handling the generational number included in the internal checkpoint name.</li>
<li>Add a "force" configuration flag to <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a6550c9079198955c5071583941c85bbf" title="Write a transactionally consistent snapshot of a database or set of objects. ">WT_SESSION::checkpoint</a>, object compaction needs it because the work it wants done is done by the block manager.</li>
<li>Make compact and checkpoint operate on a table's indices.</li>
<li>When doing a page truncate, lock down the page before we unpack the on-page cell – it's possible the page could be instantiated, modified and reconciled while we're sleeping, in which case the WT_REF.addr field would no longer point on-page.</li>
</ul>
<h2>WiredTiger release 1.3.3, 2012-10-11 </h2>
<p>This is a bugfix and performance tuning release, primarily related to LSM trees. The changes are as follows:</p>
<p>[#350] Checkpoint the metadata after successful schema-level operations. Otherwise, if process exits without closing the connection or running a checkpoint, created objects exist but there is no record in the metadata.</p>
<p>[#351] Don't put checkpoint extent blocks on the available list, blocks on it are considered for truncation; they have to go on the "checkpoint
available" list.</p>
<ul>
<li>Choose LSM merges based on a measure of efficiency (levels collapsed per record), rather than simply choosing a minor or a major merge. Tweak the merge heuristic so we don't end up with runs of smaller chunks in the middle of the tree.</li>
<li>Add a connection-wide flag to disable LSM merges.</li>
<li>Don't create Bloom filters for the oldest chunk in the system. Add the ability to disable Bloom filters entirely.</li>
<li>Fix fast-path for bit values in <a class="el" href="struct_w_t___c_u_r_s_o_r.html#a27f7cbd0cd3e561f6a145704813ad64c" title="Set the value for the next operation. ">WT_CURSOR::set_value</a>.</li>
<li>Clean up allocation of LSM chunk IDs.</li>
<li>Update bloom_get so that it doesn't hold a cursor position.</li>
<li>Respect the page size for fixed-length column stores, remembering there are 8 bits per byte.</li>
<li>Support bulk loading a bitmap into a fixed-length column store, update Bloom filter code to use this.</li>
<li>Add an example program, ex_test_perf, to demonstrate basic LSM usage.</li>
<li>Add a new statistics cursor type "statistics:lsm". Update ex_stat.c to demonstrate usage.</li>
<li>Add a statistics_fast flag to file statistics cursors. Update LSM statistics so that they aggregate some cache statistics. Add ability to open a statistics cursor on a checkpoint.</li>
<li>Walk a constant number of pages for LRU eviction.</li>
<li>Move the cache full check to after an update operation completes, when it is no longer holding hazard references. This improves behavior with small caches.</li>
</ul>
<h2>WiredTiger release 1.3.2, 2012-10-03 </h2>
<p>This is a bugfix and performance tuning release, primarily related to LSM trees. The changes are as follows:</p>
<ul>
<li>Implement minor merges for LSM trees, prefer them to major merges.</li>
<li>Update hazard references, so the active array grows as needed. Change the default hazard_max to 1000.</li>
<li>Abort transactions if the cache is so full that they cannot make progress.</li>
<li>Fix a bug where verify could crash if an empty checkpoint exists.</li>
<li>Make the maximum number of chunks for merges configurable, rather than deriving a value from the number of hazard references available.</li>
<li>Switch to an atomic add to allocate transaction IDs. This fixes a subtle race before where two threads could temporarily have the same ID in the global state table. If one of the threads timed out and the other thread committed its transaction with that ID, the commit would not become visible immediately. This could lead to deadlock errors in workloads that are logically conflict-free.</li>
<li>Have auto-commit transactions retry deadlocks. This requires that we keep the user's key and value in the cursor.</li>
<li>Simplify the code handling updated records in variable-length column-store reconciliation.</li>
<li>Never wait for eviction when holding the schema lock. This avoids deadlocks between opening a column store file and taking a checkpoint.</li>
<li>Take care with the loop termination when walking files for eviction. We were making one extra call into __wt_tree_walk, which would leave a leaf page in the WT_REF_EVICT_WALK state, unable to be evicted. In some workloads, including LSM loads, we could end up with many files all consisting of a single leaf page, none of which could be evicted.</li>
<li>Pause updates when the cache is full.</li>
<li>In files marked as "out of cache", don't wait for eviction when reading a page.</li>
<li>Fix the record count calculation for minor merges. This was leading to no Bloom filter being created for minor merges after running for some time, leading to merges taking increasingly long to complete.</li>
<li>Only sleep in the LSM checkpoint thread if no work is done.</li>
<li>Add sanity check of cache size to LSM open.</li>
</ul>
<p>[#338] Create fake checkpoints until an object is modified, so that a checkpoint between the cursor create and the bulk load doesn't make it impossible to do a bulk-load on the cursor.</p>
<h2>WiredTiger release 1.3.1, 2012-09-25 </h2>
<p>This is a bugfix release, primarily related to LSM trees. The changes are as follows:</p>
<p>[#309] Implement auto-commit of transactions at the API. As well as ensuring the atomicity of complex operations, this change simplified code that simulated auto-commit internally and fixed a number of bugs.</p>
<p>[#321] Bulk-cursors no longer block checkpoints. We can't write files that are being bulk-loaded, so change checkpoint to create checkpoints in the metadata that, if accessed, look like empty files.</p>
<p>Tighten down the requirements for bulk-load, the only thing that can be bulk-loaded now is a newly created tree, not any empty file.</p>
<p>[#329] Add dictionary support to variable-length column store objects. Support large row-store reconciliation dictionaries: add a skiplist as the indexing mechanism.</p>
<p>[#333] Fix a leak of the in-memory transaction log structure and the LSM data source handle.</p>
<p>[#334] Fix a memory leak where a page's replacement address wasn't being freed.</p>
<ul>
<li>Check that LSM trees are not configured as column stores.</li>
<li>Fix a race when starting the LSM worker thread. It was possible for the thread to exit immediately if it started fast enough.</li>
<li>Two fixes for LSM, one to ensure that cursors read from a checkpoint if one is available. The other to reduce the number of empty chunks that can be created initially.</li>
<li>Fix a bug that disabled bloom filters.</li>
<li>The configure script checks for Python support in SWIG.</li>
<li>If a drop operation fails to acquire all of the handle locks it needs, make sure it releases the primary handle lock.</li>
<li>Fix a number of other minor bugs and memory leaks.</li>
</ul>
<h2>WiredTiger release 1.3.0, 2012-09-17 </h2>
<p>This release contains a number of major new features, including:</p>
<ul>
<li>support for LSM trees with Bloom filters;</li>
<li>support for hot backups; and</li>
<li>support for fast truncation of files.</li>
</ul>
<p>In addition, there are some critical bug fixes. We recommend that all users upgrade. Here is the full list of changes:</p>
<p>[#143] Implement random record lookups.</p>
<p>[#168] Add support for LSM trees.</p>
<p>[#168] Add support for Bloom filters in LSM trees.</p>
<p>[#198] Handle page-generation wraparound.</p>
<p>[#236] Implement hot backups.</p>
<p>[#244] Index cursors for column-store objects may not be created using the record number as the index key.</p>
<p>[#247] Add a fast-path for <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#ac2bad195e24710d52d730fe3a7c1756a" title="Truncate a file, table or cursor range. ">WT_SESSION::truncate</a> that avoids reading most data to be deleted.</p>
<p>[#259] Performance hack for cursor open: don't parse the configuration strings for a default value if the application didn't specify a configuration string.</p>
<p>[#262] Disable dump on child cursors: only the top-level cursor is wrapped in a dump cursor.</p>
<p>[#266] Deal with new / dropped indices in __wt_schema_open_index.</p>
<p>[#269] Checkpoint handles must not be open when they are overwritten.</p>
<p>[#271] Add support for a reserved checkpoint name "WiredTigerCheckpoint" that opens the object's last checkpoint.</p>
<p>[#271] Add the ability to access unnamed checkpoints.</p>
<p>[#274] Change cursor.equals to return a standard error value and store the cursor equality result in a separate argument.</p>
<p>[#275] If exclusive handle is required for an operation and it is not available, fail immediately: don't block.</p>
<p>[#276] Fix methods that return integer parameters from Python. This includes cursor.equals and cursor.search_near.</p>
<p>[#277] Acquire the schema lock when creating the metadata file. We're single-threaded, so it isn't protecting against anything, but the handle management code expects to have the schema lock.</p>
<p>[#279] Some optimizations for __wt_config_gets_defno. Specifically, if we're dealing with a simple stack of config strings, just parse the application string rather than the full list of defaults.</p>
<p>[#279] Split the description string into a set of structures, to reduce the number of string comparisons and manipulation that's required.</p>
<p>[#282] Remove the cursor.reconfigure method, and replace it with documentation showing how to "reconfigure" cursors using the session.open_cursor method to duplicate them with different configuration strings.</p>
<p>[#284] Fix for a hazard reference race, where page eviction races with the creation of the hazard reference, we have to check the pointer itself as well as the state of the pointer.</p>
<p>[#285] We can clear the tree's modified flag on checkpoint, as long as the checkpoint writes all modifications. Clear the tree's modified flag before we start the checkpoint, but reset it as necessary if reconciliation is unable to write all of the changes in a page.</p>
<p>[#287] Fix __wt_config_check to handle overlapping config values correctly.</p>
<p>[#289] Add support for read-committed isolation, make it the default. Add a session-level "isolation" setting.</p>
<p>[#294] If txn_commit fails, document the transaction was rolled-back.</p>
<p>[#295] Expand the documentation on using cursors without explicit transactions.</p>
<p>[#300] Include all changes whenever closing a file, don't check for visibility. If updates are skipped while evicting a page, give up.</p>
<p>[#305] Have "wt dump" fail more gracefully if the object doesn't exist.</p>
<p>[#310] When freeing a tracked address in reconciliation, clear it to avoid freeing the same address again on error.</p>
<p>[#314] Replace cursor.equals with cursor.compare</p>
<p>[#319] Clear the bulk_load_ok flag when closing handles.</p>
<ul>
<li>Add an "ancient transaction" statistic so we can find out if they're actually occurring in the field.</li>
<li>Add an "was object ever modified" flag to the btree handle, and use it to avoid writing read-only objects during internal checkpoints, issue</li>
<li>Add per-connection statistics counters for transaction checkpoint, begin, commit and rollback. Add per-btree statistics counters for update conflicts.</li>
<li>Another fixed-length column-store implicit record fix: if the earliest row in the object is row 10, and it's on an append list, we still must return rows 1-9, they've been implicitly created.</li>
<li>Bulk cursors: disallow cursor.{equals,next,prev,reset,search, search_near,update,remove}; only close and insert are supported.</li>
<li>Change session.truncate to support any cursor position for range truncation, not just keys that are known to exist.</li>
<li>Checkpoint has to flush the metadata file, but only after it's flushed all of the other files.</li>
<li>Discard obsolete WT_UPDATE structures during updates.</li>
<li>Document that duplicated cursors are positioned at the same point as the cursor that was duplicated.</li>
<li>Fix a (very unlikely) deadlock at startup, if an application issues a checkpoint before the eviction server has managed to open its session.</li>
<li>Fix a core dump if we verify a file that's corrupted such that we are unable to load any checkpoints at all, and the per-checkpoint bit map is never set.</li>
<li>If a page selected for eviction cannot be freed because it has some recent updates, try instead to free memory by trimming old updates.</li>
<li>If a thread fails to evict a page, try to bump its snapshot. This avoids the common case of read-committed threads getting stuck because one thread falls behind (e.g., because we can't evict during a checkpoint).</li>
<li>If an exclusive table create fails, return EEXIST.</li>
<li>If we try to remove a file that doesn't exist, don't complain, return success.</li>
<li>If we're repeatedly taking a checkpoint with the same name, skip the work for read-only objects.</li>
<li>Instead of flagging the empty tree's leaf page empty as part of creating an empty tree in memory, set the page as modified (to force reconciliation); if the leaf page is still empty at that time, then we'll figure it out during that reconciliation. This fixes a memory leak where the leaf page of a empty tree wasn't being freed.</li>
<li>It's not unreasonable to open a cursor on a non-existent table, don't complain, just return not-found.</li>
<li>Move dist/RELEASE to the top level of the tree.</li>
<li>Optimization: don't repeatedly look up btree handles for schema operations.</li>
<li>Return keys from all operations: don't keep pointing to the application's key.</li>
<li>Update btree usage of 64 bitstring implementation, so it's cleaner.</li>
<li>Update the bitstring implementation to use 64 bit length strings.</li>
<li>Updates performed without an active transaction should become visible with the current transaction ID.</li>
<li>Upgrade to doxygen 1.8.x</li>
<li>Use a real snapshot transaction for checkpoints. Otherwise, the snapshot can be updated in between checkpointing multiple files (when updating the metadata).</li>
</ul>
<h2>WiredTiger release 1.2.2, 2012-06-20 </h2>
<p>This is a bugfix release. The changes are as follows:</p>
<ul>
<li>Defer making free pages available until the end of a checkpoint, in case there is a failure after processing some files.</li>
<li>When checking the value of the "isolation" key, don't assume it is nul terminated. This bug could cause transactions to run with incorrect isolation.</li>
<li>Fix two bugs with snapshot isolation:<ol type="1">
<li>reset the isolation level when the transaction completes;</li>
<li>when checking visibility, check item's ID against the maximum snapshot ID (not the transaction's ID).</li>
</ol>
</li>
</ul>
<h2>WiredTiger release 1.2.1, 2012-06-15 </h2>
<p>This is a bugfix release. The changes are as follows:</p>
<ul>
<li>Avoid a deadlock between eviction and checkpoint on the connection spinlock.</li>
<li>Allocate "desc" buffers in heap memory so that they are correctly aligned (fixes direct_io support on Linux).</li>
<li>Initialize the snapshot-avail list after cleaning it out, else we'll try and print a NULL pointer in VERBOSE mode.</li>
</ul>
<h2>WiredTiger release 1.2.0, 2012-06-04 </h2>
<p>This release contains many bugfixes and improvements. The major changes are:</p>
<p>[#138] Add support for transactions with coarse-grained durability. Transactions provide atomicity guarantees and rollback, and uncommitted changes are never written to disk. There is no on-disk log, so committed changes only become durable when the next checkpoint completes. Checkpoints are implemented by creating transactionally-consistent snapshots within data files.</p>
<p>[#156] Fully support operations that make schema changes with multiple sessions open concurrently.</p>
<p>[#159] Disable internal page key suffix compression if a custom collator is configured. This avoids issues with collators that require complete keys.</p>
<p>[#167] Add support for durable snapshots within files. While a snapshot is active, the pages used by the snapshot will not be overwritten. If a file is accessed after a crash or application exit without calling <a class="el" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#af535c517df851eeac8ebf3594d40b545" title="Close a connection. ">WT_CONNECTION::close</a>, any changes made after the last snapshot will be silently ignored.</p>
<p>[#214, #216] Fixes for forcing eviction with small caches.</p>
<h2>WiredTiger release 1.1.5, 2012-04-26 </h2>
<p>Don't update a WT_REF after it has been unlocked.</p>
<p>Add an operation to set a flag atomically, use it to avoid racing on page flags.</p>
<p>Fix a race between sync and reading that could cause a segfault.</p>
<h2>WiredTiger release 1.1.4, 2012-04-16 </h2>
<p>Check the versions of autoconf, automake and libtool to avoid failures when trying to build from the github tree with versions that are too old.</p>
<p>[#191] Create the schema table as part of creating the environment so that application threads don't race trying to create it later.</p>
<p>[#193] Split-merge pages have to be reconciled to mark their parents dirty</p>
<p>[#194] The dump utility should only output configuration that can be passed to <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb" title="Create a table, column group, index or file. ">WT_SESSION::create</a>.</p>
<p>Eviction fixes for out-of-cache update workloads:</p>
<ul>
<li>Fix an unlikely bug where the EVICT_LRU flag was cleared when a page in the LRU queue was overwritten with itself during a walk. This led to an assertion failure when the page was later evicted.</li>
<li>Clear all unused eviction queue entries while holding the lru_lock.</li>
<li>Split WT_PAGE->flags so that there is no possibility of racing: (1) Move WT_PAGE_REC_* flags into WT_PAGE_MODIFY; (2) Use atomic operations to set and clear the remaining (2) page flags.</li>
</ul>
<p>Move the test/format threads setting into the CONFIG file.</p>
<h2>WiredTiger release 1.1.3, 2012-04-04 </h2>
<p>Fix the "exclusive" config for <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb" title="Create a table, column group, index or file. ">WT_SESSION::create</a>. [#181]</p><ol type="1">
<li>Make it work for files within a single session.</li>
<li>Make it work for files across sessions.</li>
<li>Make other data sources consistent with files.</li>
</ol>
<p>Fix an eviction bug introduced into 1.1.2: when evicting a page with children, remove the children from the LRU eviction queue. Reduce the impact of clearing a page from the LRU queue by marking pages on the queue with a flag (WT_PAGE_EVICT_LRU).</p>
<p>During an eviction walk, pin pages up to the root so there is no need to spin when attempting to lock a parent page. Use the EVICT_LRU page flag to avoid putting a page on the LRU queue multiple times.</p>
<p>Layer dump cursors on top of any cursor type.</p>
<p>Add a section on replacing the default system memory allocator to the tuning page.</p>
<p>Typo in usage method for "wt write".</p>
<p>Don't report range errors for config values that aren't well-formed integers.</p>
<h2>WiredTiger release 1.1.2, 2012-03-20 </h2>
<p>Add public-domain copyright notices to the extension code.</p>
<p>test/format can now run multi-threaded, fixed two bugs it found: (1) When iterating backwards through a skiplist, we could race with an insert. (2) If eviction fails for a page, we have to assume that eviction has unlocked the reference.</p>
<p>Scan row-store leaf pages twice when reading to reduce the overhead of the index array.</p>
<p>Eviction race fixes: (1) Call __rec_review with WT_REFs: don't look at the page until we've checked the state. (2) Clear the eviction point if we hit it when discarding a child page, not just the parent.</p>
<p>Eviction tuning changes, particularly for read-only, out-of-cache workloads.</p>
<p>Only notify the eviction server if an application thread doesn't find any pages to evict, and then only once.</p>
<p>Only spin on the LRU lock if there might be pages in the LRU queue to evict.</p>
<p>Keep the current eviction point in memory and make the eviction walk run concurrent with LRU eviction.</p>
<p>Every test now has err/out captured, and it is checked to assure it is empty at the end of every test.</p>
<h2>WiredTiger release 1.1.1, 2012-03-12 </h2>
<p>Default to a verbose build: that can be switched off by running <code>configure --enable-silent-rules</code>).</p>
<p>Account for all memory allocated when reading a page into cache. Total memory usage is now much closer to the cache size when using many small keys and values.</p>
<p>Have application threads trigger a retry forced page eviction rather than blocking eviction. This allows rec_evict.c to simply set the WT_REF state to WT_REF_MEM after all failures, and fixes a bug where pages on the forced eviction queue would end up with state WT_REF_MEM, meaning they could be chosen for eviction multiple times.</p>
<p>Grow existing scratch buffers in preference to allocating new ones.</p>
<p>Fix a race between threads reading in and then modifying a page.</p>
<p>Get rid of the pinned flag: it is no longer used.</p>
<p>Fix a race where btree files weren't completely closed before they could be re-opened. This behavior can be triggered by using a new session on every operation (see the new -S flag to the test/thread program). [#178]</p>
<p>When connections are closed, create a session and discard the btree handles. This fixes a long-standing bug in closing a connection: if for any reason there are btree handles still open, we need a real session handle to close them.</p>
<p>Really close btree handles: otherwise we can't safely remove or rename them. Fixes test failures in test_base02 (among others).</p>
<p>Wait for application threads in LRU eviction to drain before walking a file.</p>
<p>Fix a buffer size calculation when updating the root address of a file.</p>
<p>Documentation fix: 10% of 1MB is 100KB.</p>
<h2>WiredTiger release 1.1.0, 2012-02-28 </h2>
<p>Add checks to the session.truncate method to ensure the start/stop cursors reference the same object and have been initialized.</p>
<p>Implement cursor duplication via <a class="el" href="struct_w_t___s_e_s_s_i_o_n.html#afb5b4a69c2c5cafe411b2b04fdc1c75d" title="Open a new cursor on a data source or duplicate an existing cursor. ">WT_SESSION::open_cursor</a>. [#161]</p>
<p>Switch to quiet builds by default.</p>
<p>Fix with automake version < 1.11, use foreign mode so that fewer top-level files are required.</p>
<p>If a session or connection method is about to return WT_NOTFOUND (some underlying object was not found), map it to ENOENT, only cursor methods return WT_NOTFOUND. [#163]</p>
<p>Save and restore session->btree in schema ops to simplify calling code. [#164]</p>
<p>Note the wiredtiger_open config string "multiprocess" is not yet supported.</p>
<p>Move "root:F" and "version:F" entries for files into the value for "file:F", so there is only a single record per file. [NOTE: SCHEMA CHANGE]</p>
<p>When parsing config strings, continue to the end of the string in case of repeated keys. [#124]</p>
<p>Don't require shared libraries unless Python is configured.</p>
<p>Add support for direct I/O, with the config "direct_io=(data,log)". Build with _GNU_SOURCE on Linux to enable O_DIRECT.</p>
<p>Don't keep the last page of column stores pinned: it prevented eviction of large trees created from scratch.</p>
<p>Allow application threads to evict pages from any tree: maintain a count of threads doing LRU in each tree and wait for activity to drain when closing. </p>
</div></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="index.html">Reference Guide</a></li>
<li class="footer">Copyright (c) 2008-2019 MongoDB, Inc. All rights reserved. Contact <a href="mailto:info@wiredtiger.com">info@wiredtiger.com</a> for more information.</li>
</ul>
</div>
</body>
</html>
|