You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+51-14
Original file line number
Diff line number
Diff line change
@@ -73,30 +73,67 @@ You can see the [TiKV Roadmap](docs/ROADMAP.md).
73
73
74
74
When a node starts, the metadata of the Node, Store and Region are recorded into PD. The status of each Region and Store is reported to PD regularly.
75
75
76
-
## Try TiKV
76
+
## Quick start
77
77
78
-
TiKV was originally a component of [TiDB](https://github.com/pingcap/tidb). To run TiKV you must build and run it with PD, which is used to manage a TiKV cluster. You can use TiKV together with TiDB or separately on its own.
78
+
### Deploy a playground with TiUP
79
79
80
-
We provide multiple deployment methods, but it is recommended to use our Ansible deployment for production environment. The TiKV documentation is available on [TiKV's website](https://tikv.org/docs/4.0/concepts/overview/).
80
+
The most quickest to try out TiKV with TiDB is using TiUP, a component manager for TiDB.
81
81
82
-
### Testing deployment
82
+
You can see [this page](https://docs.pingcap.com/tidb/stable/quick-start-with-tidb#deploy-a-local-test-environment-using-tiup-playground) for a step by step tutorial.
83
83
84
-
-[Try TiKV and TiDB](https://tikv.org/docs/4.0/tasks/try/introduction/)
84
+
### Deploy a playground with binary
85
85
86
-
You can use [`tidb-docker-compose`](https://github.com/pingcap/tidb-docker-compose/)to quickly test TiKV and TiDB on a single machine. This is the easiest way. For other ways, see [TiDB documentation](https://docs.pingcap.com/).
86
+
TiKV is able to run separatedly with PD, which is the minimal deployment required.
87
87
88
-
- Try TiKV separately
88
+
1. Download and extract binaries.
89
89
90
-
-[Deploy TiKV Using Docker Stack](https://tikv.org/docs/4.0/tasks/try/docker-stack/): To quickly test TiKV separately without TiDB on a single machine
91
-
-[Deploy TiKV Using Docker](https://tikv.org/docs/4.0/tasks/deploy/docker/): To deploy a multi-node TiKV testing cluster using Docker
92
-
-[Deploy TiKV Using Binary Files](https://tikv.org/docs/4.0/tasks/deploy/binary/): To deploy a TiKV cluster using binary files on a single node or on multiple nodes
90
+
```bash
91
+
$ export TIKV_VERSION=v4.0.12
92
+
$ export GOOS=darwin # only {darwin, linux} are supported
93
+
$ export GOARCH=amd64 # only {amd64, arm64} are supported
0 commit comments