Elliptics network is a fault-tolerant distributed key/value database system. With default key generation policy it implements has table object storage. Comparing to traditional database systems, it is more likely to be a distributed network framework to make servers working together.
- Source Code
- https://github.com/reverbrain/elliptics[02]
- Developer
- Country of Origin
- RU
- Start Year
- 2009
- Project Types
- Commercial, Open Source
- Operating System
- Linux
- License
- LGPL v3
Elliptics network is a fault-tolerant distributed key/value database system. With default key generation policy it implements has table object storage. Comparing to traditional database systems, it is more likely to be a distributed network framework to make servers working together.
History
Elliptics was initially created in 2007 as part of POHMELFS. Later in 2009 seperated from that project and became a consistent distributed storage system later. As of 2014, Elliptics is used in Yandex Map, Disk, Music, Photos and some infrastructure.
Isolation Levels[05][06]
There are two types of Isolation using in Elliptics: Process and CGroup.
And Elliptics uses eventual consistency model to maintain data replicas, which means the data in a group may not maintain the same at any time, but they will eventually be synced with others sometimes in the future.
Logging[07][08][09]
Elliptics uses replication to ensure data availability form the beginning of its design. To use replication features, a group of servers are bound together by admin and make the replications every time.
For the implementation of the logging, it's using the blackhole logging library for writing logs. The blackhole library is an attribute-based logger with maximum performance optimization. Elliptics uses blackhole library and can output to File/Syslog/Socket.
Query Execution
Elliptics uses Cocaine to execute the code. It allows the Elliptics creating a pool of cgroups-bound processes to execute externally loaded code. It can access external elements.
Query Interface[10]
The API is designed to support C, C++ and Python. The document for Elliptics is broken and now only Python API document can be fetched.
Storage Architecture[11][12][05]
Storage architecture is named as Backends in Elliptics. Elliptics has three low-level backends: filesystem (where written objects are stored as files), Eblob (fast append-only storage) and Smack (small compressible objects stored in sorted tables).
Moreiver, Elliptics implemented both the generic storage protocol and its own specific protocol. Therefore, data stored in other services can be routed to Elliptics. For example, Elliptics can connect to MySQL servers and trigger some special commands to read/write data into Elliptics.
Citations
13 sources- http://reverbrain.com/elliptics reverbrain.com
- GitHub - reverbrain/elliptics: Distributed storage for medium and large objects with streaming support · GitHub github.com
- http://doc.reverbrain.com/elliptics:elliptics reverbrain.com
- Elliptics - Wikipedia wikipedia.org
- http://doc.reverbrain.com/elliptics:what reverbrain.com
- Profile · cocaine/cocaine-core Wiki · GitHub github.com
- http://doc.reverbrain.com/elliptics:replication reverbrain.com
- http://doc.reverbrain.com/elliptics:api-logging reverbrain.com
- GitHub - 3Hren/blackhole: Yet another logging library. · GitHub github.com
- http://doc.reverbrain.com/elliptics:api-python reverbrain.com
- http://doc.reverbrain.com/elliptics:serverside reverbrain.com
- Architecture · cocaine/cocaine-core Wiki · GitHub github.com
- http://doc.reverbrain.com/elliptics:architecture-scheme reverbrain.com