vitess-gh/go
Deepthi Sigireddi 2c8664c800
Merge pull request #5160 from planetscale/ds-pitr2
Point in time recovery (part 1)
2019-10-07 16:18:38 -07:00
..
acl
bucketpool Improve the quality of the documents 2019-09-27 16:03:33 +08:00
bytes2
cache make vtgate query_plans endpoint return json; also fix comment typos 2019-08-21 10:41:02 -04:00
cacheservice update cacheservice Using var block (#4906) 2019-06-06 12:51:24 -07:00
cmd Merge pull request #5160 from planetscale/ds-pitr2 2019-10-07 16:18:38 -07:00
event fix some spelling mistakes 2019-09-27 11:15:31 +08:00
exit
fileutil
flagutil Add error handling for parsing StringMapValues instead of panicking (#4912) 2019-06-06 12:48:18 -07:00
hack
history
ioutil2
json2
jsonutil
memcache
mysql minor 2019-10-02 12:23:16 -07:00
netutil fix spelling mistake 2019-08-23 13:33:42 +08:00
pools Track number of times pool had zero available slots 2019-09-12 15:30:06 -04:00
proc
race
ratelimiter
sqlescape
sqltypes Merge pull request #5186 from planetscale/rk-newmult 2019-10-05 08:04:01 -07:00
stats fix some spelling mistakes 2019-09-26 17:06:20 +08:00
streamlog rename FilterTag to QueryLogFilterTag for consistency and clarity 2019-05-31 12:23:43 -07:00
sync2 fix some spelling mistakes 2019-09-26 17:06:20 +08:00
tb
testfiles
timer
trace Merge pull request #5259 from systay/tiny-refactoring 2019-10-05 07:36:43 -07:00
vt Merge pull request #5160 from planetscale/ds-pitr2 2019-10-07 16:18:38 -07:00
vtbench fix: add some error handling. 2019-09-28 13:10:37 +08:00
zk/zkctl
README.md

README.md

This directory contains all the Go code for Vitess.

Most of the packages at the top level are general-purpose and are suitable for use outside Vitess. Packages that are specific to Vitess are in the vt subdirectory. Binaries are in the cmd subdirectory.

Please see GoDoc for a listing of the packages and their purposes.

vt/proto contains the compiled protos for go, one per each directory. When importing these protos (for instance XXX.proto), we rename them on import to XXXpb. For instance:

import (
    topodatapb "vitess.io/vitess/go/vt/proto/topodata"
)