Add Vitess example for sharded MySQL in Kubernetes.

This is a simplified version of the configs found in the Vitess repo:

https://github.com/youtube/vitess/tree/master/examples/kubernetes

Here we use a single script to start all of Vitess, since the aim is
just to show the end result. The full tutorial on our site goes into
much more detail on each step:

http://vitess.io/getting-started/
This commit is contained in:
Anthony Yeh
2015-08-25 16:14:52 -07:00
parent c6d5c6dbbf
commit cc45d293e2
24 changed files with 1136 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
CREATE TABLE messages (
page BIGINT(20) UNSIGNED,
time_created_ns BIGINT(20) UNSIGNED,
keyspace_id BIGINT(20) UNSIGNED,
message VARCHAR(10000),
PRIMARY KEY (page, time_created_ns)
) ENGINE=InnoDB