Vitess is a database clustering system for horizontal scaling of MySQL.
Перейти к файлу
Anthony Yeh d47c07eb24 Fix Docker build dependency.
The new bootstrap step for protobuf v3 needs the unzip command.
2015-03-04 20:55:37 -08:00
Godeps Use godep for go-etcd client. 2015-01-28 15:44:42 -08:00
config Removing support for Google MySQL 5.1. 2015-02-19 13:03:12 -08:00
data Merge pull request #283 from youtube/vtgate 2015-01-05 19:55:45 -08:00
doc Modify information about free Cloud Platform trial. 2015-03-04 15:49:11 -08:00
docker Create Vitess-friendly Dockerfile for etcd. 2014-12-18 23:21:53 -08:00
examples Support SSD flag. Remove hardcoded region in cluster-down.sh. Start vt pods in parallel in cluster-up.sh 2015-02-27 13:07:03 -08:00
go Streaming query should not retry on FATAL error. 2015-03-04 16:14:04 -08:00
java Java Driver: Maven instructions 2015-01-29 12:48:41 -08:00
misc Ignore third_party and Godeps in git precommit hooks. 2015-01-28 15:42:47 -08:00
php Add a minimal VTGateConnection class for PHP. 2015-01-20 01:02:53 -08:00
proto Re-organizing protos. 2015-02-27 20:40:55 -08:00
py Add python side for gRPC. 2015-03-02 09:22:52 -08:00
test Add separate parameter for per connection timeout 2015-03-03 22:51:30 -08:00
third_party Fix "invalid heap pointer" crash when built with Go 1.4. 2015-01-12 23:42:26 -08:00
travis Travis: Do not hardcode version in mariadb dependencies 2015-01-28 12:34:30 -08:00
vitess.io Add Analytics ID. 2015-03-04 15:49:10 -08:00
.gitignore add vitess.io site preview script 2015-02-25 16:04:07 -08:00
.travis.yml Travis: build before running test target 2015-02-03 18:06:34 -08:00
CONTRIBUTING.md
Dockerfile Fix Docker build dependency. 2015-03-04 20:55:37 -08:00
LICENSE
Makefile Add python side for gRPC. 2015-03-02 09:22:52 -08:00
README.md Update README.md 2015-02-13 21:47:00 -08:00
bootstrap.sh Better version of this. 2015-03-03 14:57:25 -08:00
dev.env Adding a CGO include path for mariadb. 2015-02-24 09:09:17 -08:00
index.md Add content for vitess.io. 2015-03-04 15:49:10 -08:00
preview-site.sh publish index.md in root dir on vitess.io 2015-03-04 15:59:41 -08:00
publish-site.sh checkout index.md from master branch when publish vitess.io 2015-03-04 18:56:10 -08:00
replace_doc_link.py replace doc link script should use site.url 2015-02-17 11:18:53 -08:00

README.md

Vitess

Build Status Coverage Status

Introduction

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.