Vitess is a database clustering system for horizontal scaling of MySQL.
Перейти к файлу
Anthony Yeh 3ee8a59cf1 Make topo server flavor pluggable in integration tests. 2014-11-14 16:37:05 -08:00
config Make new DB data dir and config file for MariaDB. 2014-08-20 21:11:49 -07:00
data vtgate v3: add tests to cover new code paths 2014-11-07 12:19:30 -08:00
doc Changing documentation about ramdisk to use 4g instead of 2g 2014-10-31 17:28:30 -07:00
docker/root Remove obsolete zk Docker example. 2014-10-28 13:40:53 -07:00
examples/kubernetes Read topology from vtgate. 2014-11-05 13:53:42 -08:00
go Merge pull request #161 from youtube/tablet-externally-reparented 2014-11-14 09:49:20 -08:00
java Java client tests: increase timeout in failure test 2014-10-31 19:56:58 -07:00
misc Simplify instructions for contributing and deprecate createcl. 2014-10-17 19:56:20 -07:00
py Add a mechanism to log private data from exceptions and use case for bind_variables. 2014-10-29 10:32:46 -07:00
test Make topo server flavor pluggable in integration tests. 2014-11-14 16:37:05 -08:00
third_party Port fix for stdin support in mysqlbinlog from MariaDB to Google MySQL. 2014-08-01 16:50:56 -07:00
.gitignore Adding some java-specific rules. 2014-06-18 11:33:29 -07:00
CONTRIBUTING.md Simplify instructions for contributing and deprecate createcl. 2014-10-17 19:56:20 -07:00
Dockerfile Pin our docker image on wheezy. 2014-10-17 22:11:48 -07:00
LICENSE Change the license notice to be shorter and refer to the license file. 2012-06-07 11:55:06 -07:00
Makefile revert accidental Makefile change 2014-11-12 15:20:22 -08:00
README.md Update README.md 2014-10-20 22:48:37 -07:00
bootstrap.sh Make Vitess context types conform to the go.net/context API. 2014-11-10 11:14:17 -08:00
dev.env Remove unused go-etags setup in dev.env. 2014-09-27 19:16:12 -07:00

README.md

Vitess

Vitess is a set of servers and tools meant to facilitate scaling of MySQL databases for the web. It's been developed since 2011, and is currently used as a fundamental component of YouTube's MySQL infrastructure, serving thousands of QPS (per server). If you want to find out whether Vitess is a good fit for your project, please read our helicopter overview.

There are a couple of videos from sougou that you can watch: a short intro prepared for Google I/O 2014 and a more detailed presentation from @Scale '14.

Overview

Overview

Vitess consists of a number servers, command line utilities, and a consistent metadata store. Taken together, they allow you to serve more database traffic, and add features like sharding, which normally you would have to implement in your application.

vttablet is a server that sits in front of a MySQL database, making it more robust and available in the face of high traffic. Among other things, it adds a connection pool, has a row based cache, and it rewrites SQL queries to be safer and nicer to the underlying database.

vtgate is a very light proxy that routes database traffic from your app to the right vttablet, basing on the sharding scheme, latency required, and health of the vttablets. This allows the client to be very simple, as all it needs to be concerned about is finding the closest vtgate.

The topology is a metadata store that contains information about running servers, the sharding scheme, and replication graph. It is backed by a consistent data store, like Apache ZooKeeper. The topology backends are plugin based, allowing you to write your own if ZooKeeper doesn't fit your needs. You can explore the topology through vtctld, a webserver (not shown in the diagram).

vtctl is a command line utility that allows a human or a script to easily interact with the system.

All components communicate using a lightweight RPC system based on BSON. The RPC system is plugin based, so you can easily write your own backend (at Google we use a Protocol Buffers based protocol). We provide a client implementation for three languages: Python, Go, and Java. Writing a client for your language should not be difficult, as it's a matter of implementing only a few API calls (please send us a pull request if you do!).

Trying it out

Vitess is not entirely ready for unsupervised use yet. Some functionality is still under development, APIs may change, and parts of the code are undocumented. However, if you feel adventurous, you're more than welcome to try it. We know that there are some rough edges, so please don't hesitate to reach out to us through our mailing list if you run into any issues. Warnings aside, please take a look at our Getting Started guide.

Documentation

Intro

Using Vitess

Reference

License

Unless otherwise noted, the vitess source files are distributed under the BSD-style license found in the LICENSE file.