You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Thomas Boerger b6a95a8cb3 Integrate public as bindata optionally (#293)
* Dropped unused codekit config

* Integrated dynamic and static bindata for public

* Ignore public bindata

* Add a general generate make task

* Integrated flexible public assets into web command

* Updated vendoring, added all missiong govendor deps

* Made the linter happy with the bindata and dynamic code

* Moved public bindata definition to modules directory

* Ignoring the new bindata path now

* Updated to the new public modules import path

* Updated public bindata command and drop the new prefix
8 years ago
..
ast Integrate public as bindata optionally (#293) 8 years ago
column Integrate public as bindata optionally (#293) 8 years ago
context Integrate public as bindata optionally (#293) 8 years ago
ddl Integrate public as bindata optionally (#293) 8 years ago
domain Integrate public as bindata optionally (#293) 8 years ago
evaluator Integrate public as bindata optionally (#293) 8 years ago
executor Integrate public as bindata optionally (#293) 8 years ago
infoschema Integrate public as bindata optionally (#293) 8 years ago
inspectkv Integrate public as bindata optionally (#293) 8 years ago
kv Integrate public as bindata optionally (#293) 8 years ago
meta Integrate public as bindata optionally (#293) 8 years ago
model Integrate public as bindata optionally (#293) 8 years ago
mysql Integrate public as bindata optionally (#293) 8 years ago
optimizer Integrate public as bindata optionally (#293) 8 years ago
parser Integrate public as bindata optionally (#293) 8 years ago
perfschema Integrate public as bindata optionally (#293) 8 years ago
privilege Integrate public as bindata optionally (#293) 8 years ago
sessionctx Integrate public as bindata optionally (#293) 8 years ago
store Integrate public as bindata optionally (#293) 8 years ago
structure Integrate public as bindata optionally (#293) 8 years ago
table Integrate public as bindata optionally (#293) 8 years ago
terror Integrate public as bindata optionally (#293) 8 years ago
util Integrate public as bindata optionally (#293) 8 years ago
CONTRIBUTING.md Integrate public as bindata optionally (#293) 8 years ago
Dockerfile Integrate public as bindata optionally (#293) 8 years ago
Makefile Integrate public as bindata optionally (#293) 8 years ago
README.md Integrate public as bindata optionally (#293) 8 years ago
bootstrap.go Integrate public as bindata optionally (#293) 8 years ago
driver.go Integrate public as bindata optionally (#293) 8 years ago
gitcookie.sh Integrate public as bindata optionally (#293) 8 years ago
make.cmd Integrate public as bindata optionally (#293) 8 years ago
session.go Integrate public as bindata optionally (#293) 8 years ago
tidb.go Integrate public as bindata optionally (#293) 8 years ago

README.md

logo Build Status

What is TiDB?

TiDB is a distributed SQL database. Inspired by the design of Google F1, TiDB supports the best features of both traditional RDBMS and NoSQL.

  • Horizontal scalability
    Grow TiDB as your business grows. You can increase the capacity simply by adding more machines.

  • Asynchronous schema changes
    Evolve TiDB schemas as your requirement evolves. You can add new columns and indices without stopping or affecting the on-going operations.

  • Consistent distributed transactions
    Think 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.

  • 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.

  • Written in Go
    Enjoy TiDB as much as we love Go. We believe Go code is both easy and enjoyable to work with. Go makes us improve TiDB fast and makes it easy to dive into the codebase.

  • NewSQL over HBase
    Turn HBase into NewSQL database

  • Multiple storage engine support
    Power TiDB with your most favorite engines. TiDB supports many popular storage engines in single-machine mode. You can choose from GolevelDB, LevelDB, RocksDB, LMDB, BoltDB and even more to come.

Status

TiDB is at its early age and under heavy development, all of the features mentioned above are fully implemented.

Please do not use it in production.

Roadmap

Read the Roadmap.

Quick start

Read the Quick Start

Architecture

architecture

Contributing

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

Follow us

Twitter: @PingCAP

License

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

Acknowledgments