BigCouch creates a cluster of CouchDB databases, acting in concert to store and retrieve documents, index and serve views, and serve CouchApps.
BigCouch has been developed in Erlang by Cloudant and then released as an Apache License 2.0 open source project.
BigCouch allows users to create clusters of CouchDBs that are distributed over an arbitrary number of servers. While it appears to the end-user as one CouchDB instance, it is in fact one or more nodes in an elastic cluster, acting in concert to store and retrieve documents, index and serve views, and serve CouchApps.
Each node of the cluster can accept requests, data is placed on partitions based on a consistent hashing algorithm, and quorum protocols are for read/write operations. It relies on Erlang & the Open Telecom Platform, despite using its own RPC mechanism over OTP’s own “rex” server.
Its future will be a merge with CouchDB.