Berkeley DB

Berkeley DB
Berkeley DB
Original author(s) Margo Seltzer and Keith Bostic of Sleepycat Software
Developer(s) Sleepycat Software, later Oracle Corporation
Stable release 5.2.28 / June 10, 2011; 5 months ago (2011-06-10)
Development status production
Written in C
Operating system Unix, Linux, Windows, AIX, Sun Solaris, SCO Unix, Mac OS
Size ~1244 kB compiled on Windows x86
Type Embedded database
License Sleepycat License
Website www.oracle.com/us/products/database/berkeley-db/index.html

Berkeley DB (BDB) is a computer software library that provides a high-performance embedded database for key/value data. Berkeley DB is a programmatic software library written in C with API bindings for C++, PHP, Java, Perl, Python, Ruby, Tcl, Smalltalk, and most other programming languages. BDB stores arbitrary key/data pairs as byte arrays, and supports multiple data items for a single key. Berkeley DB is not a relational database.[1] BDB can support thousands of simultaneous threads of control or concurrent processes manipulating databases as large as 256 terabytes, on a wide variety of operating systems including most Unix-like and Windows systems, and real-time operating systems. Berkeley DB is also used as the common name for three distinct products; Oracle Berkeley DB, Berkeley DB Java Edition, and Berkeley DB XML. These three products all share a common ancestry and are currently under active development at Oracle Corporation.

Contents

Origin

Berkeley DB originated at the University of California, Berkeley as part of the transition (1986 to 1994) from 4.3BSD to 4.4BSD and of the effort to remove AT&T-encumbered code.[2] The first code, due to Seltzer and Yigit,[3] attempted to create a disk hash table that performed better than any of the existing Dbm libraries. In 1996 Netscape requested that the authors of Berkeley DB improve and extend the library, then at version 1.86, to suit Netscape's requirements for an LDAP server[4] and for use in the Netscape browser. That request led to the creation of Sleepycat Software. This company was acquired by Oracle Corporation in February 2006, which continues to develop and sell Berkeley DB.

Since its initial release, Berkeley DB has gone through various versions. Each major release cycle has introduced a single new major feature generally layering on top of the earlier features to add functionality to the product. The 1.x releases focused on managing key/value data storage and are referred to as "Data Store" (DS). The 2.x releases added a locking system enabling concurrent access to data. This is what is known as "Concurrent Data Store" (CDS). The 3.x releases added a logging system for transactions and recovery, called "Transactional Data Store" (TDS). The 4.x releases added the ability to replicate log records and create a distributed highly available single-master multi-replica database. This is called the "High Availability" (HA) feature set. Berkeley DB's evolution has sometimes led to minor API changes or log format changes, but very rarely have database formats changed. Berkeley DB HA supports online upgrades from one version to the next by maintaining the ability to read and apply the prior release's log records.

The FreeBSD and OpenBSD operating system continue to use Berkeley DB 1.8x for compatibility reasons;[5] Linux-based operating systems commonly include several versions to accommodate for applications still using older interfaces/files.

Berkeley DB is redistributed under the Sleepycat Public License, which is an OSI-approved open source license as well as an FSF-approved free software licence.[6][7] The product ships with complete source code, build script, test suite, and documentation. The code quality and general utility along with the licensing terms have led to its use in a multitude of free and open source software. Those who do not wish to abide by the terms of the Sleepycat Public License have the option of purchasing another proprietary license for redistribution from Oracle Corporation. This technique is called dual licensing.

Berkeley DB includes compatibility interfaces for some historic Unix database libraries: dbm, ndbm and hsearch (a System V library for creating in-memory hash tables).

Architecture

Berkeley DB has an architecture notably simpler than that of other database systems like Microsoft SQL Server and Oracle Database. For example, like SQLite, it does not provide support for network access — programs access the database using in-process API calls. Oracle added support for SQL in 11g R2 release based on the popular SQLite API by including a version of SQLite in Berkeley DB.[8] Consequently, as is common with SQLite, there is now 3rd Party support for PL/SQL in Berkeley DB through Metatranz StepSqlite.[9]

A program accessing the database is free to decide how the data is to be stored in a record. Berkeley DB puts no constraints on the record's data. The record and its key can both be up to four gigabytes long.

Despite having a simple architecture, Berkeley DB supports many advanced database features such as ACID transactions, fine-grained locking, hot backups and replication.

Editions

The name Berkeley DB encompasses three different products:

  1. Berkeley DB
  2. Berkeley DB Java Edition
  3. Berkeley DB XML

Each edition has separate database libraries, despite the common branding. The first is the traditional Berkeley DB, written in C. It contains several database implementations, including a B+Tree and one built around extendible hashing.

Berkeley DB Java Edition (JE) is a pure Java database. Its design resembles that of Berkeley DB without replicating it exactly, and has a feature set that includes many of those found in the traditional Berkeley DB and others that are specific to the Java Edition. Since it is written in pure Java, no native code is required. It has a log structured storage architecture, which gives it different performance and concurrency characteristics. Three APIs are available—a Direct Persistence Layer which is "Plain Old Java Objects" (POJO); one which is based on the Java Collections Framework (an object persistence approach); and one based on the traditional Berkeley DB API. The Berkeley DB Java Edition High Availability option (Replication) is available. Note that traditional Berkeley DB also supports a Java API, but it does so via JNI and thus requires an installed native library.

The Berkeley DB XML database specializes in the storage of XML documents, supporting XQuery via XQilla. It is implemented as an additional layer on top of (a legacy version of) Berkeley DB and the Xerces library. DB XML is written in C++ and supports multiple language bindings, including C++, Java (via JNI), Perl and Python.

Programs that use Berkeley DB

Berkeley DB provides the underlying storage and retrieval system of several LDAP servers, database systems, and many other proprietary and free/open source applications. Notable software that use Berkeley DB for data storage include:

  • ARC - Advanced Resource Connector open source grid middleware introduced by NorduGrid, use BerkeleyDB in several services.
  • Asterisk PBX - A free/open source PBX.
  • Bitcoin - A distributed peer-to-peer open source digital currency.
  • Bogofilter – A free/open source spam filter that saves its wordlists using Berkeley DB.
  • Carbonado – An open source relational database access layer.
  • Cfengine – A free/open source configuration management system, developed by Mark Burgess of Oslo University College.
  • Citadel – A free/open source groupware platform that keeps all of its data stores, including the message base, in Berkeley DB.
  • Cyrus IMAP Server – A free/open source IMAP and POP3 server, developed by Carnegie Mellon University
  • Evolution - A free/open source mail client; contacts are stored in addressbook.db using Berkley DB
  • Figaro DB - An embedded, native XML Database for the Microsoft's .NET Framework built upon Berkeley DB.
  • GlusterFS - A cluster filesystem which leverages industry-standard commodity hardware to build highly scalable, non-stop storage systems.
  • GRAMPS - "Genealogical Research and Analysis Management Programming System", free genealogy software.
  • HyperGraphDB - An open-source OO graph database based on generalized hypergraphs.
  • IPD OS - Oracle's Instantaneous Problem Detection OS Tool
  • Jabberd2 – An Extensible Messaging and Presence Protocol server
  • J-ISIS (Java ISIS) - A new version of Winisis dtabase programme (of Unesco) being developed for library use
  • KDevelop – An IDE for Linux and other Unix-like operating systems
  • KLibido – A free/open source Newsgroup reader tailored for binary downloads
  • Movable Type (until version 4.0) – A proprietary weblog publishing system developed by California-based Six Apart
  • memcachedb - A persistence-enabled variant of memcached
  • MySQL database system – Prior to v5.1, MySQL included a BDB data storage backend.
  • OpenCOBOL - A free/open source COBOL implementation.
  • OpenDS - an open source directory server.
  • OpenLDAP – A free/open source implementation of the Lightweight Directory Access Protocol (LDAP)
  • Papyrus Platform – The ISIS Papyrus Platform uses BerkeleyDB for its distributed object-relational transaction kernel for adaptive content and process management in enterprise applications
  • PiSi – The package management system of Pardus
  • Postfix – A fast, secure, easy-to-administer MTA for Linux/Unix systems
  • Redland – A RDF Application Framework can use BDB for persistent storage (triplestore)
  • RPM – The RPM Package Manager uses Berkeley DB to retain its internal database of packages installed on a system
  • Scalien Keyspace - A consistently replicated, fault-tolerant key-value store
  • Source Navigator and Source Navigator NG - A source code analysis and exploration tool
  • Spamassassin – An anti-spam application
  • Subversion – A version control system designed specifically to replace CVS
  • Sun Grid Engine – A free and open source distributed resource management system.
  • SWGEmu - An open source community project aimed to develop, maintain and expand a free Pre-CU-era Star Wars Galaxies server software set.
  • Project Voldemort – A distributed database used by LinkedIn.
  • Wialon - a GPS tracking and fleet management software with Web-interface[10]
  • Porcupine - a Web Application Server[11]

Licensing

Oracle Corporation makes versions 2.0 and higher of Berkeley DB available under a dual license.[12] This license is a 2-clause BSD license with an additional copyleft clause similar to the GNU GPL version 2's Section 3, requiring source code of an application using Berkeley DB to be made available for a nominal fee.

Thus, the license depends on how a particular application that uses Berkeley DB is distributed to the public. Software that is not distributed can use the Sleepycat License, as can free and open source software. Proprietary software can use Berkeley DB only under a commercial license agreement between Oracle and the application's publisher.

As of July 2011, Oracle's list price for commercial Berkeley DB licenses varies between 900 and 13,800 USD per processor.[13]

See also

References

  1. ^ http://doc.gnu-darwin.org/intro/dbisnot.html
  2. ^ Olson, Michael A.; Bostic, Keith; Seltzer, Margo (1999). "Berkeley DB". Proc. FREENIX Track, USENIX Annual Tech. Conf.. http://www.usenix.org/events/usenix99/full_papers/olson/olson.pdf. Retrieved October 20, 2009. 
  3. ^ Seltzer, Margo; Yigit, Ozan (1991). "A New Hashing Package for UNIX". Proc. USENIX Winter Tech. Conf.. http://www.eecs.harvard.edu/margo/papers/usenix91/paper.ps. Retrieved October 20, 2009. 
  4. ^ Brunelli, Mark (March 28, 2005). "A Berkeley DB primer". Enterprise Linux News. http://searchenterpriselinux.techtarget.com/originalContent/0,289142,sid39_gci1071880,00.html. Retrieved December 28, 2008. 
  5. ^ "db(3)". http://www.freebsd.org/cgi/man.cgi?query=db&apropos=0&sektion=0&manpath=FreeBSD+7.1-RELEASE&format=html. Retrieved April 12, 2009. 
  6. ^ "The Sleepycat License". Open Source Initiative. October 31, 2006. http://www.opensource.org/licenses/sleepycat.php. Retrieved December 28, 2008. 
  7. ^ "Licenses". Free Software Foundation. December 10, 2008. http://www.fsf.org/licensing/licenses/index_html#GPLCompatibleLicenses. Retrieved December 28, 2008. 
  8. ^ "Twitter / Gregory Burd: @humanications We didn't r ...". http://twitter.com/gregburd/statuses/10979336891. 
  9. ^ "Official Berkeley DB FAQ". Oracle Corporation. http://www.oracle.com/technetwork/database/berkeleydb/db-faq-095848.html#DoesBerkeleyDBsupportPLSQL. Retrieved March 30, 2010. "Does Berkeley DB support PL/SQL?" 
  10. ^ http://gurtam.com/en/products/earn/get_wialon/wialon_pro.html
  11. ^ http://www.innoscript.org/
  12. ^ "Open Source License for Berkeley DB". Oracle Corporation. http://www.oracle.com/technology/software/products/berkeley-db/htdocs/oslicense.html. Retrieved December 28, 2008. "For a license to use the Berkeley DB software under conditions other than those described here, or to purchase support for this software, please contact berkeleydb-info_us@oracle.com." 
  13. ^ http://www.oracle.com/us/corporate/pricing/technology-price-list-070617.pdf

External links


Wikimedia Foundation. 2010.

Игры ⚽ Нужна курсовая?

Look at other dictionaries:

  • Berkeley — may refer to: People * The Berkeley family of England ** Lord Berkeley (disambiguation page) ** Baron Berkeley ** Berkeley Baronets * Anthony Berkeley , a pseudonym of Anthony Berkeley Cox, writer * Busby Berkeley, film choreographer * Edmund… …   Wikipedia

  • Berkeley — Berkeley …   Deutsch Wikipedia

  • BERKELEY (G.) — Soucieux d’enrayer la marée montante du scepticisme induite par le progrès des sciences positives, Berkeley fut essentiellement un apologiste. Mais il fut aussi un authentique philosophe, dont l’ambition paradoxale était de définir, d’une façon à …   Encyclopédie Universelle

  • Berkeley-DB — Entwickler: Oracle Aktuelle Version: 4.7 Betriebssystem: Unix, Linux, Windows, AIX, Sun Solaris, SCO U …   Deutsch Wikipedia

  • Berkeley DB — Entwickler Oracle Aktuelle Version 4.8 Betriebssystem Unix, Linux, Windows, AIX, Sun Solaris, SCO Unix, Mac OS …   Deutsch Wikipedia

  • Berkeley DB — Saltar a navegación, búsqueda Berkeley DB Desarrollador Oracle Corporation (diseñado por Universidad de Berkeley) Sitio web Infor …   Wikipedia Español

  • Berkeley DB — Тип СУБД Разработчик разработчики Университета Беркли, Oracle Corporation Написана на C, API для многих других языков Операционная система Unix, Linux, Windows, AIX, Sun So …   Википедия

  • Berkeley — Saltar a navegación, búsqueda Berkeley puede referirse a: personas George Berkeley, filósofo y religioso británico, célebre representante de la escuela empirista inglesa. Busby Berkeley, director y coreógrafo estadounidense. Sir George Berkeley,… …   Wikipedia Español

  • Berkeley — puede referirse a: ● la ciudad de Berkeley, en el estado de California; ● la University of California, Berkeley localizada en la ciudad del mismo nombre. ● el filósofo y religioso británico George Berkeley, célebre representante de la escuela… …   Enciclopedia Universal

  • Berkeley db — Pour les articles homonymes, voir BDB. Berkeley DB …   Wikipédia en Français

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”