Lightning Memory-Mapped Database

OpenLDAP Lightning Memory-Mapped Database
Original author(s) Howard Chu
Developer(s) Symas
Initial release 2011-11-24
Stable release
0.9.18 / 2016-02-05
Preview release
0.9.18 / 2016-01-29
Development status production
Written in C
Operating system Unix, Linux, Windows, AIX, Sun Solaris, SCO Unix, macOS, iOS
Size 64KB (binary), 7KLOC (source)
Type Embedded database
License OpenLDAP Public License
Website symas.com/mdb

Lightning Memory-Mapped Database (LMDB) is a software library that provides a high-performance embedded transactional database in the form of a key-value store. LMDB is written in C with API bindings for several programming languages. LMDB stores arbitrary key/data pairs as byte arrays, has a range-based search capability, supports multiple data items for a single key and has a special mode for appending records at the end of the database (MDB_APPEND) which gives a dramatic write performance increase over other similar stores.[1] LMDB is not a relational database, it is strictly a key-value store like Berkeley DB and dbm.

LMDB may also be used concurrently in a multi-threaded or multi-processing environment, with read performance scaling linearly by design. LMDB databases may have only one writer at a time, however unlike many similar key-value databases, write transactions do not block readers, nor do readers block writers. LMDB is also unusual in that multiple applications on the same system may simultaneously open and use the same LMDB store, as a means to scale up performance. Also, LMDB does not require a transaction log (thereby increasing write performance by not needing to write data twice) because it maintains data integrity inherently by design.

History

LMDB's design was first discussed in a 2009 post to the OpenLDAP developer mailing list,[2] in the context of exploring solutions to the cache management difficulty caused by the project's dependence on Berkeley DB. A specific goal was to replace the multiple layers of configuration and caching inherent to Berkeley DB's design with a single, automatically managed cache under the control of the host operating system.

Development subsequently began, initially as a fork of a similar implementation from the OpenBSD ldapd project.[3] The first publicly available version appeared in the OpenLDAP source repository in June 2011.[4]

The project was known as MDB until November 2012, after which it was renamed in order to avoid conflicts with existing software.[5]

Technical description

Internally LMDB uses B+Tree data structures. The efficiency of its design and small footprint had the unintended side-effect of providing good write performance as well. LMDB has an API similar to Berkeley DB and dbm. LMDB treats the computer's memory as a single address space, shared across multiple processes or threads using shared memory with copy-on-write semantics (known historically as a single-level store). Due to most former modern computing architectures having 32-bit memory address space limitations, which imposes a hard limit of 4GB on the size of any database using such techniques, the effectiveness of the technique of directly mapping a database into a single-level store was strictly limited. However, today's 64 bit processors now mostly implement 48 bit address spaces, giving access to 47 bit addresses or 128 terabytes of database size,[6] making databases using shared memory useful once again in real-world applications.

Specific noteworthy technical features of LMDB are:

Concurrency

LMDB allows multiple threads within multiple processes to coordinate simultaneous access to a database. Readers scale linearly by design. While write transactions are globally serialized via a mutex, read-only transactions operate in parallel, including in the presence of a write transaction, and are entirely wait free except for the first read-only transaction on a thread. Each thread reading from a database gains ownership of an element in a shared memory array, which it may update to indicate when it is within a transaction. Writers scan the array to determine the oldest database version the transaction must preserve, without requiring direct synchronization with active readers.

Performance

In 2011 Google published software which allowed users to generate micro-benchmarks comparing LevelDB's performance to SQLite and Kyoto Cabinet in different scenarios.[9] In 2012 Symas added support for LMDB and Berkeley DB and made the updated benchmarking software publicly available.[10] The resulting benchmarks showed that LMDB outperformed all other databases in read and batch write operations. SQLite with LMDB excelled on write operations, and particularly so on synchronous/transactional writes.

It should be noted that the benchmarks showed the underlying filesystem as having a big influence on performance. JFS with an external journal performs well, especially compared to other modern systems like Btrfs and ZFS.[11][12] Zimbra has tested back-mdb vs back-hdb performance in OpenLDAP, with LMDB clearly outperforming the BDB based back-hdb.[13] Many other OpenLDAP users have observed similar benefits.[14]

Since the initial benchmarking work done in 2012, multiple follow-on tests have been conducted with additional database engines for both in-memory [15] and on-disk [16] workloads characterizing the performance across multiple CPUs and record sizes. These tests show that LMDB performance is unmatched on all in-memory workloads, and excels in all disk-bound read workloads, as well as disk-bound write workloads using large record sizes. The benchmark driver code was subsequently published on github[17] and further expanded in database coverage.

Reliability

LMDB was designed from the start to resist data loss in the face of system and application crashes. Its Copy-on-write approach never overwrites currently-in-use data. Avoiding overwrites means the structure on disk/storage is always valid, so application or system crashes can never leave the database in a corrupted state. In its default mode, at worst a crash can lose data from the last not-yet-committed write transaction. Even with all asynchronous modes enabled, it is only an OS catastrophic failure or hardware power-loss event rather than merely an application crash that could potentially result in any data corruption.

Two academic papers from the USENIX OSDI symposium[18] covered failure modes of DB engines (including LMDB) under a sudden power loss or system crash.[19][20] The paper from Pillai et al., did not find any failure in LMDB that would occur in the real-world file systems considered; the single failure identified by the study in LMDB only relates to hypothetical file systems.[21] The Mai Zheng et al. paper claims to point out failures in LMDB, but the conclusion depends on whether fsync or fdatasync is utilised. Using fsync ameliorates the problem. Selection of fsync or fdatasync is a compile-time switch which is not the default behavior in current GNU/Linux builds of LMDB, but is the default on MacOSX, *BSD, Android, and Windows. Default GNU/Linux builds of LMDB are therefore the only ones vulnerable to the problem discovered by the zhengmai researchers however LMDB may simply be rebuilt by GNU/Linux users to utilise fsync instead.[22]

License problems

In June 2013, Oracle changed Berkeley DB's license from the Sleepycat license to the Affero General Public License,[23] thus restricting its use in a wide variety of applications. This caused the Debian project to exclude the library from 6.0 onwards. It was also criticized that this license is not friendly to commercial redistributors. The discussion was sparked over whether the same licensing change could happen to LMDB. Author Howard Chu made clear that LMDB is part of the OpenLDAP project, which had its BSD style license before he joined, and it will stay like it. No copyright is transferred to anybody by checking in, which would make a similar move like Oracle's impossible.[24][25][26][27][28][29][30][31][32]

The Berkeley DB license issue has caused major GNU/Linux distributions such as Debian to completely phase out their use of Berkeley DB, with a preference for LMDB.[33]

API and uses

There are wrappers for several programming languages, such as C++,[34][35] Python,[36][37] Lua,[38] Go,[39] Ruby,[40] Objective C,[41] Javascript,[42] C#,[43] Perl,[44] PHP,[45] Tcl[46] and Common Lisp.[47] A complete list of wrappers may be found on the main web site[48]

Howard Chu ported SQLite 3.7.7.1 to use LMDB instead of its original B-tree code, calling the end result SQLightning.[49] One cited insert test of 1000 records was 20 times faster (than the original SQLite with its B-Tree implementation).[50] LMDB is available as a backing store for other open source projects including Cyrus SASL,[51] Heimdal Kerberos,[52] and OpenDKIM.[53] It is also available in some other NoSQL projects like MemcacheDB [54] and Mapkeeper.[55] LMDB was used to make the in-memory store Redis persist data on disk. The existing back-end in Redis showed pathological behaviour in rare cases, and a replacement was sought. The baroque API of LMDB was criticized though, forcing a lot of coding to get simple things done however its performance and reliability during testing was considerably better than the alternative back-end stores that were tried.[56]

An independent 3rd party software developer utilised the Python bindings to LMDB[57] in a high-performance environment and published, on the prominent technical news site Slashdot, how the system managed to successfully sustain 200,000 simultaneous read, write and delete operations per second (a total of 600,000 database operations per second)[58][59]

An up-to-date list of applications using LMDB is maintained on the main web site[60]

Application support

Many popular free software projects distribute or include support for LMDB, often as the primary or sole storage mechanism.

Technical reviews of LMDB

LMDB makes unusual (novel) use of well-known computer science techniques such as copy-on-write semantics and B+Trees to provide atomicity and reliability guarantees as well as performance that can be hard to accept, given the library's relative simplicity and that no other similar key-value store database offers the same guarantees or overall performance, even though the authors explicitly state in presentations that LMDB is read-optimised not write-optimised. Additionally, as LMDB was primarily developed for use in OpenLDAP its developers are focussed mainly on development and maintenance of OpenLDAP, not on LMDB per se. The developers limited time spent presenting the first benchmark results was therefore criticized as not stating limitations, and for giving a "silver bullet impression" not adequate to address an engineers attitude[71] (it has to be pointed out that the concerns raised however were later adequately addressed to the reviewer's satisfaction by the key developer behind LMDB.[72][73])

The presentation did spark other database developers dissecting the code in-depth to understand how and why it works. Reviews run from brief [74] to in-depth. The RavenDB author wrote a 12-part series of articles on his analysis of LMDB, beginning July 9, 2013. The conclusion was in the lines of "impressive codebase ... dearly needs some love", mainly because of too long methods and code duplication.[75] This review, conducted by a .NET developer with no former experience of C, concluded on August 22, 2013 with "beyond my issues with the code, the implementation is really quite brilliant. The way LMDB manages to pack so much functionality by not doing things is quite impressive... I learned quite a lot from the project, and it has been frustrating, annoying and fascinating experience"[76]

Multiple other reviews cover LMDB[77] in various languages including Chinese.[78][79]

References

  1. LMDB Reference Guide. Retrieved on 2014-10-19
  2. back-mdb - futures. Retrieved on 2014-10-19
  3. MDB: A Memory-Mapped Database and Backend for OpenLDAP. Retrieved 2014-10-19
  4. First public version of MDB source code. Retrieved 2014-10-19
  5. MDB renamed to LMDB. Retrieved 2014-10-19
  6. Chu, Howard (2011). MDB: A Memory-Mapped Database and Backend for OpenLDAP (PDF). LDAPCon..
  7. B+Tree#Implementation
  8. LMDB Reference Guide. Retrieved on 2014-10-19
  9. "LevelDB Benchmarks". http://leveldb.googlecode.com/svn/trunk/doc/benchmark.html. Google, Inc. External link in |website= (help);
  10. Chu, Howard. "Database Microbenchmarks". Symas Corp. Retrieved 8 August 2014.
  11. "MDB Microbenchmarks". Symas Corp., 2012-09
  12. Database Microbenchmarks, Symas Corp., 2012-07.
  13. "OpenLDAP MDB vs HDB performance". Zimbra, Inc.
  14. OpenLDAP LMDB vs BDB
  15. Chu, Howard. "In-Memory Microbenchmark". Symas Corp.
  16. Chu, Howard. "On-Disk Microbenchmark". Symas Corp.
  17. "Benchmark Drivers". https://github.com/hyc/leveldb/tree/benches/doc/bench. External link in |website= (help);
  18. "OSDI 2014".
  19. "OSDI 2014, All File Systems Are Not Created Equal: On the Complexity of Crafting Crash-Consistent Applications".
  20. "OSDI 2014, Torturing Databases for Fun and Profit".
  21. "Archive of discussion regarding the Usenix 2014 pillai paper".
  22. "LMDB Crash consistency discussion".
  23. "Berkeley DB Release Announcement". Oracle Corporation. Starting with the 6.0 / 12c releases, all Berkeley DB products are licensed under the GNU AFFERO GENERAL PUBLIC LICENSE (AGPL), version 3. This license is published by the Free Software Foundation (FSF) (1) and approved by the Open Source Initiative (2). Please review the terms of the license to ensure compliance before upgrading to the 12c release. Previous releases of Berkeley DB software will continue to be distributed under the Sleepycat license.
  24. Ondřej Surý (July 2, 2013). "Berkeley DB 6.0 license change to AGPLv3". debian-devel (Mailing list). Debian.
  25. Simon Phipps (July 5, 2013). "Oracle switches Berkeley DB license". InfoWorld.
  26. "Oracle Quietly Switches BerkeleyDB to AGPL". Slashdot.
  27. "Oracle меняет лицензию Berkeley DB" [Oracle Berkeley DB license changes]. Programmers in Ukraine (in Russian). Blogspot. July 22, 2013.
  28. Jean Elyan (July 8, 2013). "Oracle passe Berkeley DB sous licence GNU AGPL" [Oracle Berkeley DB passes under GNU AGPL] (in French). Le Monde Informatique.
  29. Ondřej Surý (July 2, 2013). "Berkeley DB 6.0 vydána pod licencí AGPLv3" [Berkeley DB 6.0 is released under the GPLv3 license] (in Czech). Abclinuxu.
  30. Nathan Willis (July 10, 2013). "Debian, Berkeley DB, and AGPLv3". LWN.net.
  31. Dan Shearer (July 2, 2013). "Berkeley DB 6.0 license change to AGPLv3". debian-devel (Mailing list). Debian.
  32. Howard Chu (July 2, 2013). "Berkeley DB 6.0 license change to AGPLv3". debian-devel (Mailing list). Debian.
  33. Ondřej Surý (June 19, 2014). "New project goal: Get rid of Berkeley DB (post jessie)". debian-devel (Mailing list). Debian.
  34. LMDB C++11 wrapper, 2015-04
  35. LMDB C++ wrapper, 2012-11.
  36. LMDB Python wrapper, 2013-02
  37. py-lmdb. Retrieved on 2014-10-20.
  38. LMDB Lua wrapper, 2013-04.
  39. LMDB Go wrapper, 2013-04
  40. LMDB Ruby wrapper, 2013-02
  41. LMDB Objective-C wrapper, 2013-04
  42. LMDB Node.js wrapper, 2013-05
  43. LMDB .Net wrapper, 2013-06
  44. LMDB Perl wrapper, 2013-08
  45. LMDB PHP wrapper, 2015-04
  46. tcl-lmdb, 2015-11
  47. Using LMDB from Common Lisp, 2016-04
  48. "List of API wrappers for LMDB".
  49. SQLightning: a port of SQLite to use LMDB
  50. SQLightning tests.
  51. Cyrus SASL
  52. Heimdal Kerberos
  53. OpenDKIM
  54. LMDB in MemcacheDB
  55. Mapkeeper
  56. "Second Strike With Lightning". Anchor.
  57. "Python bindings to LMDB".
  58. "Python-LMDB in a high-performance environment on Slashdot".
  59. "Open letter to Howard Chu and David Wilson regarding Python-LMDB".
  60. "List of projects using LMDB".
  61. liblmdb0 in Debian Jessie. Retrieved 2014-10-20.
  62. lmdb in Ubuntu 14.04 LTS
  63. LMDB in Fedora 20. Retrieved 2014-10-20.
  64. lmdb in OpenSUSE. Retrieved 2014-10-20.
  65. OpenLDAP back-mdb. Retrieved 2014-10-20
  66. Postfix lmdb_table(5). Retrieved 2014-10-20
  67. What's new in CFEngine 3.6
  68. SkyDB on LMDB
  69. FineDB Comparison and Performance
  70. "Updating custom apache modules".
  71. "LMDB: The Leveldb Killer?".
  72. "Response to LMDB review".
  73. LMDB: The Leveldb Killer?. Retrieved 2014-10-20.
  74. "Lightning Memory-Mapped Database".
  75. "Reviewing Lightning memory-mapped database library: Partial".
  76. "Some final notes about LMDB review".
  77. "LMDB". Sampath Herga.
  78. "lmdb".
  79. lmdb
This article is issued from Wikipedia - version of the 9/29/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.