SingleStore is a cloud-native database designed for data-intensive applications.
A distributed, relational, SQL database management system that features ANSI SQL support, it is known for speed in data ingest, transaction processing, and query processing.
SingleStore primarily stores relational data, though it can also store JSON data, graph data, and time series data.
For queries, it compiles Structured Query Language into machine code.
SingleStore can store data in either row-oriented tables ("rowstores") or column-oriented tables ("columnstores"). The format used is determined by the user when creating the table.
Rather than the traditional B-tree index, SingleStore rowstores use skiplists optimized for fast, lock-free processing in memory.
Columnstores store data indexed in sorted segments, in order to maximize on-disk compression and achieve fast ordered scans.
SingleStore also supports using hash indexes as secondary indexes to speed up certain queries.
A SingleStore cluster can be configured in "High Availability" (HA) mode, where every data partition is automatically created with master and slave versions on two separate leaf nodes.
Official website :- https://www.singlestore.com/
Comments
Post a Comment