Go Yacc Other
Permalink
Failed to load latest commit information.
.github .github: Update issue template (#5419) Dec 15, 2017
LICENSES *: Tiny cleanup (#1145) Apr 23, 2016
_vendor/src *: update tipb (#5406) Dec 14, 2017
ast expression, plan: support builtin aggregation function 'bit_or' (#5145) Dec 19, 2017
cmd *: use lower-case of github.com/sirupsen/logrus (#5400) Dec 14, 2017
config *: support tls connection to pd and tikv (#5311) Dec 13, 2017
context *: collect and store query feedback (#5438) Dec 22, 2017
ddl *: AddIndex skip checking unique constraint when TiDB is importing da… Jan 2, 2018
distsql distsql: let the coprocessor streaming API use StreamResponse (#5389) Jan 3, 2018
docs added http api for tidb (#5388) Dec 22, 2017
domain *: use lower-case of github.com/sirupsen/logrus (#5400) Dec 14, 2017
executor executor: support Chunk for StreamAggExec (#5490) Jan 3, 2018
expression expression, types: "Flen" and "Decimal" of "TypeNewDecimal" should no… Dec 31, 2017
hooks *: improve pre-commit hook (#3151) Apr 26, 2017
infoschema ddl: support alter table auto_increment (#5472) Dec 27, 2017
kv *: AddIndex skip checking unique constraint when TiDB is importing da… Jan 2, 2018
meta ddl: fix rawArgs is overwritten (#5531) Jan 2, 2018
model ddl: support alter table auto_increment (#5472) Dec 27, 2017
mysql plan: check decimal|numeric flen or decimal is valid (#5530) Jan 3, 2018
owner *: use lower-case of github.com/sirupsen/logrus (#5400) Dec 14, 2017
parser parser, variable: fix #5478, make 'set transaction read only' works. (#… Dec 25, 2017
perfschema *: use lower-case of github.com/sirupsen/logrus (#5400) Dec 14, 2017
plan plan: reuse expressionRewriter. (#5537) Jan 3, 2018
privilege *: use lower-case of github.com/sirupsen/logrus (#5400) Dec 14, 2017
server server, statistics: add dump_stats api for debug (#5534) Jan 3, 2018
sessionctx *: AddIndex skip checking unique constraint when TiDB is importing da… Jan 2, 2018
statistics server, statistics: add dump_stats api for debug (#5534) Jan 3, 2018
store distsql: let the coprocessor streaming API use StreamResponse (#5389) Jan 3, 2018
structure kvencoder: add EncodeMetaAutoID method (#5272) Nov 30, 2017
table *: AddIndex skip checking unique constraint when TiDB is importing da… Jan 2, 2018
tablecodec config: enable table split. (#5379) Dec 12, 2017
terror *: use lower-case of github.com/sirupsen/logrus (#5400) Dec 14, 2017
tidb-server tidb: fix some case TiDB does not graceful shutdown expectly. (#5518) Dec 29, 2017
types plan: check decimal|numeric flen or decimal is valid (#5530) Jan 3, 2018
util *: AddIndex skip checking unique constraint when TiDB is importing da… Jan 2, 2018
x-server *: use lower-case of github.com/sirupsen/logrus (#5400) Dec 14, 2017
.dockerignore Dockerfile: Fix error while running `make server` (#1361) Jun 30, 2016
.editorconfig .editorconfig: add .editorconfig file, make tab_size = 4 (#2779) Mar 5, 2017
.gitignore Ignore debug binary of VSCode (#4377) Aug 30, 2017
.travis.yml Update go version in travis.yml (#4843) Oct 20, 2017
CONTRIBUTING.md Update CONTRIBUTING.md (#5257) Nov 29, 2017
CONTRIBUTORS correct the name of contributor (#3584) Jun 30, 2017
Dockerfile Use scratch (slim) container (#5303) Dec 6, 2017
Jenkinsfile Jenkinsfile: init adding Jenkinsfile (#3249) May 15, 2017
LICENSE *: Tiny cleanup (#1145) Apr 23, 2016
Makefile makefile: fix coverage ci. (#5450) Dec 20, 2017
README.md Update the link to the Roadmap (#5017) Nov 6, 2017
bench_test.go *: use lower-case of github.com/sirupsen/logrus (#5400) Dec 14, 2017
bootstrap.go *: use lower-case of github.com/sirupsen/logrus (#5400) Dec 14, 2017
bootstrap_test.go *: set session variable MaxChunkSize to 2 for test (#5238) Nov 28, 2017
checklist.md Format checklist.md (#3382) Jun 5, 2017
checkout-pr-branch.sh *: makes `checkout-pr-branch.sh` able to update the pr branch. (#4938) Oct 30, 2017
circle.yml Bumping golang version to 1.9 (#4527) Sep 20, 2017
code_review_guide.md doc: add code review guide. (#3166) Apr 28, 2017
gitcookie.sh server: Add metrics (#1729) Sep 17, 2016
glide.lock *: update tipb (#5406) Dec 14, 2017
glide.yaml *: update tipb (#5406) Dec 14, 2017
metrics.go tidb: add a transaction count metric (#4646) Sep 27, 2017
new_session_test.go executor: "InsertExec.NextChunk" should use function "getRowsSelectCh… Dec 26, 2017
session.go *: collect and store query feedback (#5438) Dec 22, 2017
session_test.go load timezone from tikv when start a tidb-server (#5393) Dec 14, 2017
tidb.go *: use lower-case of github.com/sirupsen/logrus (#5400) Dec 14, 2017
tidb_test.go server,tidb: move cancel function from session to clientConn (#5346) Dec 9, 2017

README.md

Build Status Go Report Card Project Status CircleCI Status Coverage Status

What is TiDB?

TiDB (The pronunciation is: /'taɪdiːbi:/ tai-D-B, etymology: titanium) is a Hybrid Transactional/Analytical Processing (HTAP) database. Inspired by the design of Google F1 and Google Spanner, TiDB features infinite horizontal scalability, strong consistency, and high availability. The goal of TiDB is to serve as a one-stop solution for online transactions and analyses.

  • Horizontal scalability

Grow TiDB as your business grows. You can increase the capacity for storage and computation simply by adding more machines.

  • Compatible with MySQL protocol

Use TiDB as MySQL. You can replace MySQL with TiDB to power your application without changing a single line of code in most cases.

  • Automatic Failover and high availability

Your data and applications are always-on. TiDB automatically handles malfunctions and protects your applications from machine failures or even downtime of an entire data-center.

  • Consistent distributed transactions

Think of TiDB as a single-machine RDBMS. You can start a transaction that crosses multiple machines without worrying about consistency. TiDB makes your application code simple and robust.

  • Online DDL

Evolve TiDB schemas as your requirement changes. You can add new columns and indexes without stopping or affecting the on-going operations.

  • Multiple storage engine support

Power TiDB with your most favorite engines. TiDB supports local storage engines such as GolevelDB and BoltDB, as well as TiKV, a distributed storage engine.

For more details, see How we build TiDB.

Roadmap

Read the Roadmap.

Quick start

Read the Quick Start.

Documentation

Architecture

architecture

Contributing

Contributions are welcomed and greatly appreciated. See CONTRIBUTING.md for details on submitting patches and the contribution workflow.

Connect with us

License

TiDB is under the Apache 2.0 license. See the LICENSE file for details.

Acknowledgments