Skip to content

Commit

Permalink
Update overview.md (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
QueenyJin authored Oct 16, 2017
1 parent 4214031 commit 916331b
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,37 @@ title: TiDB Introduction
category: introduction
---

## TiDB Introduction
## What is TiDB?

TiDB (The pronunciation is: /'taɪdiːbi:/ tai-D-B, etymology: titanium) is a distributed SQL database. Inspired by the design of Google [F1](http://research.google.com/pubs/pub41344.html), TiDB supports the best features of both traditional RDBMS and NoSQL.
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 simply by adding more machines.
- __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__

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

### Auto failover
TiDB is stateless. TiKV and PD can tolerate failures of some of their instances. Whether it’s data machine failures or even downtime of an entire data center, your data can be recovered automatically. With its strong consistency guarantee, your data will be safe and up-to-date.
- __Online DDL__

### 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.
Evolve TiDB schemas as your requirement changes. You can add new columns and indexes without stopping or affecting the on-going operations.

### 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.
- __Multiple storage engine support__

### 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.
Power TiDB with your most favorite engines. TiDB supports local storage engines such as GolevelDB and BoltDB, as well as [TiKV](https://github.com/pingcap/tikv), a distributed storage engine.

### NewSQL over TiKV
Turn [TiKV](https://github.com/pingcap/tikv) into a NewSQL database.
## Roadmap

## 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.
Read the [Roadmap](https://github.com/pingcap/docs/blob/master/ROADMAP.md).

## TiDB Architecture

Expand Down

0 comments on commit 916331b

Please sign in to comment.