Couchbase Server is an open-source, distributed NoSQL document-oriented database. It is desgined for interactive applications involving multiple users and concurrency operations. Couchbase server provides well-scaled key-value or JSON document access. It supports the Memcached client protocol and provides extra features like disk persistence, data replication, rebalancing and multi-tenancy with data partitioning, etc.
In 2010, the origination of Couchbase, Membase, was developed by a company called NorthScale which was founded by developers from Memcached project.
In February, 2011, the Membase project founders and Membase, Inc. merged with CouchOne(a company with many engineers behind CouchDB) as a new company called Couchbase, Inc.
In January 2012, Couchbase Server 1.8 was released and 1.8 was the first version after rename from Membase.
In December 2012, Couchbase Server 2.0 was released. New features like JSON new document store, indexing and querying, incremental MapReduce and replication across data centers are added.
The latest version of Couchbase Server is 6.0.0.
B+Tree Skip List Hash Table Inverted Index (Full Text)
A few of indexes are available in Couchbase Server:
Primary Index is based on the unique key of every item in a specified bucket. The bucket contains a full set of keys in a given key space.
Global Secondary Index (GSI) is the most frequently used index in Couchbase Server, for queries performed with the N1Ql query-language. The indexer for GSI creates a B+ tree for fast scans on the index key. Also, there is a Memory-Optimized GSI index which uses the skip-list structure as opposed to B-tree indexes.
Full Text is provided by the Search Service and it contains targets derived from the contents of documents within one or more specified buckets.
Views are supported with fields and information extracted from documents.
The checkpoint inside the Couchbase Server is a record of last sequenceID. The Sequence ID is an internal unique number for every change happened in Couchbase Server with chronologically increasing order. The replicator of the Couchbase Server sends the checkpoint of last change to the target at the end of every replication cycle. The target here could be any remote database where the changes are replicated.
Optimistic Concurrency Control (OCC)
Couchbase Server offers both optimistic and pessimistic locking to guarantee concurrency. The optimistic locking is implemented on the Compare-and-Swap (CAS) Value, which is a unique and atomically incrementing identifier inside the metadata of document. Couchbase Server verifies the CAS Value before a document is modified. Couchbase Server also supports pessimistic locking but it is less commonly used.
Couchbase Server uses Couchstore to store core data operations. Each Bucket (the smallest unit of Couchbase's storage model) is stored as a separate Couchstore file in the file system. Couchstore uses a B+tree structure to quickly access items through their keys. Append-only write model is used for efficient and safe writes.
Couchbase Server (Enterprise Edition) applies data compression to documents with a 3rd party open-source library Snappy. It provides three modes of compression.
Off Mode. The Couchbase Server decompresses the document if it is compressed, and stores the uncompressed document in memory but recompresses it when storing on disk. Also, Couchbase server sends the document in uncompressed form.
Passive Mode. When Couchbase Server receives the compressed document, it stores the compressed document in memory and disk. Also, the documents are sent in compressed form.
Active Mode. Couchbase Server stores and sends compressed document even if the document is uncompressed.
https://github.com/couchbase/manifest
https://docs.couchbase.com/home/index.html
Couchbase, Inc.
2010
Membase
C, C#, Go, Java, JavaScript, PHP, Python