Elliptics

From Wikipedia, the free encyclopedia
Elliptics
Developer(s)Evgeniy Polakov with Yandex support
Initial release2008; 16 years ago (2008)
Repository
Written inC++, Python, Go
TypeNoSQL
LicenseGNU Lesser General Public License
Websitewww.reverbrain.com

Elliptics is a distributed key–value data storage with open source code. By default it is a classic distributed hash table (DHT) with multiple replicas put in different groups (distributed hashes). Elliptics was created to meet requirements of multi-datacenter and physically distributed storage locations when storing huge amount of medium and large files (1 KB up to gigabytes in size, thousands to billions of objects).

History[edit]

Elliptics was created in 2007, initially as a part of POHMELFS,[1][2] a cache coherent distributed file system developed by Linux programmer Evgeniy Polyakov. POHMELFS was announced on January 31, 2008,[3] and merged into the staging area of the Linux kernel source tree in version 2.6.30, released June 9, 2009. The filesystem went practically unused and was removed again in February 2012.[4]

In 2008 Elliptics separated as an independent project. Polyakov tried different approaches to distributed data storage systems, some of them were not suitable because of their complexity and some of them were too far from a real-life (BerkeleyDB, LevelDB, Kyoto Cabinet backends for medium and big files, different datacenters in a single DHT ring, non eventual recovery). Elliptics is eventually consistent system with multiple updated in parallel replicas potentially living in physically distributed locations. Elliptics contains multiple layers from low-level on-disk store (named Eblob) up to SLRU caches and dynamic routing protocol.[5]

In 2012, Polyakov announced a new version of POHMELFS based on Elliptics.[4]

As of 2014, Elliptics is used in Yandex Maps, Disk, Music, Photos, Market and infrastructure,[6] Sputnik search engine and Coub.

Architecture[edit]

By default, Elliptics forms a distributed hash table in single group (a replica). Group may contains one or many servers as well as physical server can contain multiple elliptics groups (replicas) stored on different backends. Groups can live in different physical locations thus allowing to serve clients' requests when other locations are not accessible. A peer-to-peer (P2P) protocol can be used to access data directly from storage servers without proxying. Elliptics supports server-side scripting in C++, JavaScript, Python, based on the Cocaine technology, SLRU cache and multiple pluggable backends (eblob is the fastest for medium and large data and the most popular one).

Elliptics clients connect directly to all storage servers which helps to:

  • Execute lookup in O(1) network requests (single network request per replica)
  • Run write/update commands into multiple replicas in parallel

There are several application programming interfaces (APIs) for data access:

  • Asynchronous feature-promise C++ library
  • Python binding
  • Go binding
  • HTTP-proxy named Rift with buckets and ACLs based on TheVoid library (using boost::asio)
  • Community-driven Erlang bindings

Features[edit]

  • Distributed hash tables, no metadata servers, true horizontal scaling
  • Data replication – replicas can be stored in different physical locations
  • Range and bulk requests
  • Different I/O storage backends, API to create own low-level storage backends
  • Automatic data repartitioning in case of removed or added nodes
  • Eventually consistent recovery
  • Consistent hashing addressing model
  • Cluster statistics
  • Frontend: HTTP; bindings: C/C++, Go, Python
  • Server-side script execution support (write trigger analog)
  • Distributed SLRU cache with TTL
  • P2P streaming support (eblob and file backends only - external applications like Nginx web server can stream data from eblob object files directly to clients without proxying)

Problems and restrictions[edit]

  • Eventual consistency: as Elliptics is fully distributed in case of emergency server can possibly return a file copy which is older than an actual one. Sometimes it can be unacceptable. In these cases due to time loses it is better to use more reliable ways of data request.
  • Network between client and servers can become a weak point as data is written on several servers in parallel.
  • API may be inconvenient for high-level requests. Elliptics does not provide its users with SQL-like data requests.
  • Elliptics does not have high-level transactions support that is why it is impossible to guarantee that a command group will be fully executed or will not be executed at all.
  • Transactions are only atomic within group and are locked based on primary key.

Documentation[edit]

Elliptics and its supporting projects are being documented at community wiki Archived 2020-01-21 at the Wayback Machine. It contains high-level design docs, tutorial, low-level details and knowledge base. Elliptics and related projects are discussed in open Google group.

See also[edit]

References[edit]

  1. ^ "POHMELFS: A New But Old Distributed Linux File-System - Phoronix". www.phoronix.com. Retrieved 8 May 2017.
  2. ^ "POHMELFS returns [LWN.net]". lwn.net. Retrieved 8 May 2017.
  3. ^ "Entry 2008.01.31". Archived from the original on 6 October 2008. Retrieved 8 May 2017.
  4. ^ a b Evgeniy Polyakov (8 February 2012). "pohmelfs: call for inclusion".
  5. ^ "Как устроены облака Яндекса: Elliptics". Retrieved 8 May 2017.
  6. ^ "Elliptics — Yandex Technologies". api.yandex.com. Retrieved 8 May 2017.

External links[edit]