Website | Documentation | Official Repository | Blog | YouTube | Discord | Telegram | LinkedIn | X
YDB is an open source Distributed SQL Database that combines high availability and scalability with strict consistency and ACID transactions.
YDB is designed from scratch as a response to growing demand for scalable interactive web services. Scalability, strict consistency and effective cross-row transactions were a must for such OLTP-like workload. YDB is built by people with strong background in databases and distributed systems, who had an experience of developing No-SQL database and the Map-Reduce system for one of the largest search engines in the world. We found that YDB's flexible design allows us to build more services on top of it including persistent queues and virtual block devices.
Basic YDB features:
- Fault-tolerant configuration that survive disk, node, rack or even datacenter outage;
- Horizontal scalability;
- Automatic disaster recovery with minimum latency disruptions for applications;
- SQL dialect (YQL) for data manipulation and scheme definition;
- ACID transactions across multiple nodes and tables with strict consistency.
YDB could be deployed in three availability zones. Cluster remains available for both reads and writes during complete outage of a single zone. Availability zones and regions are covered in more detail in documentation.
Unlike traditional relational databases YDB scales out providing developers with capability to simply extend cluster with computation or storage resources to handle increasing load. YDB has desaggregated storage and compute layers which allow you to scale storage and compute resources independently.
Current production installations have more than 10,000 nodes, store petabytes of data and handle millions distributed transactions per second.
YDB has built-in automatic recovery support to survive a hardware failure. After unpredictable disk, node, rack or even datacenter failure YDB remains fully available for reads and writes and restores required data redundancy automatically.
YDB has support for multitenant and serverless setups. A user can run a YDB cluster and create several databases that share one pool of storage and have different compute nodes. Alternatively a user can run several serverless databases that share one pool of compute resources to utilize them effectively.
YDB runs on x86 64bit platforms with minimum 8 GB of RAM.
We have major experience running production systems on 64-bit x86 machines working under Ubuntu Linux.
For development purposes we test that YDB could be built and run under latest versions of MacOS and Microsoft Windows on a regular basis.
- Install YDB using pre-built executables, build it from source or use Docker container.
- Install command line interface tool to work with scheme and run queries.
- Start local cluster or container and run YQL query via YDB CLI.
- Access Embedded UI via browser for schema navigation, query execution and other database development related tasks.
- Run available example application.
- Develop an application using YDB SDK.
- Build server (ydbd) and client (ydb) binaries from source code.
- Deploy a cluster using Kubernetes.
- Deploy a cluster using pre-built executables.
We are glad to welcome new contributors!
- Please read the contributor's guide.
- We can accept your work to YDB after you have signed contributor's license agreement (aka CLA).
- Please don't forget to add a note to your pull request, that you agree to the terms of the CLA.
Take a look at YDB web site for the latest success stories and user scenarios.