Vitess is a database clustering system for horizontal scaling of MySQL.
Перейти к файлу
Alain Jobart ed9a25393d Adding integration test support for grpc.
Only supported for vtctl client protocol for now.
2015-02-27 14:24:04 -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 Merge pull request #424 from michael-berlin/proof_read_life_of_a_query 2015-02-19 23:09:39 -08:00
docker Create Vitess-friendly Dockerfile for etcd. 2014-12-18 23:21:53 -08:00
examples Fix ListAllTablets result in README 2015-02-23 14:30:07 -08:00
go Adding servenv support for gRPC. 2015-02-27 12:50:54 -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
py ThrottledError should extend DatabaseError 2015-02-04 09:32:33 -08:00
test Adding integration test support for grpc. 2015-02-27 14:24:04 -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 vitess.io site preview script 2015-02-25 16:04:07 -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 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 Travis: Disable initial_sharding_bytes test 2015-02-03 20:10:04 -08:00
README.md Update README.md 2015-02-13 21:47:00 -08:00
bootstrap.sh First version of gRPC client and server for vtctl protocol. 2015-02-27 09:07:03 -08:00
dev.env Adding a CGO include path for mariadb. 2015-02-24 09:09:17 -08:00
preview-site.sh add vitess.io site preview script 2015-02-25 16:04:07 -08:00
publish-site.sh preserve links between docs in vitess.io 2015-02-17 10:57:39 -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.