From 5f29678a19665555b912983ba31791ee24cefa42 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Fri, 29 Mar 2019 11:15:39 -0600 Subject: [PATCH 01/28] DITA ToC Proof of concept --- TOC.md | 372 ++++++++++++++++++++++++++++++--------------------------- 1 file changed, 194 insertions(+), 178 deletions(-) diff --git a/TOC.md b/TOC.md index 5fff2a82bdb58..9ce3779945c45 100644 --- a/TOC.md +++ b/TOC.md @@ -2,182 +2,204 @@ ## Documentation List -+ About TiDB - - [TiDB Introduction](overview.md) - - [TiDB Architecture](architecture.md) -+ Quick Start - - [TiDB Quick Start Guide](QUICKSTART.md) - - [Basic SQL Statements](try-tidb.md) - - [Bikeshare Example Database](bikeshare-example-database.md) -+ TiDB User Guide - + TiDB Server Administration - - [The TiDB Server](sql/tidb-server.md) - - [The TiDB Command Options](sql/server-command-option.md) - - [The TiDB Data Directory](sql/tidb-server.md#tidb-data-directory) - - [The TiDB System Database](sql/system-database.md) - - [Information Schema](sql/information-schema.md) - - [The TiDB System Variables](sql/variable.md) - - [The TiDB Specific System Variables](sql/tidb-specific.md) - - [The TiDB Server Logs](sql/tidb-server.md#tidb-server-logs) - + Security ++ [Quick Start](QUICKSTART.md) ++ Concepts + - [Architecture](architecture.md) + + [Key Features](overview.md) + - [Horizontal Scalability](overview.md#horizontal-scalability) + - [MySQL Compatible Syntax](overview.md#mysql-compatible-syntax) + - [Replicate from and to MySQL](overview.md#replicate-from-and-to-mysql) + - [Distributed Transactions with Strong Consistency](overview.md#distributed-transactions-with-strong-consistency) + - [Cloud Native Architecture](overview.md#cloud-native-architecture) + - [Minimize ETL with HTAP](overview.md#minimize-etl-with-htap) + - [Fault Tolerance & Recovery with Raft](overview.md#fault-tolerance--recovery-with-raft) + - [Automatic Rebalancing](overview.md#automatic-rebalancing) + - [Deployment and Orchestration with Ansible, Kubernetes, Docker](overview.md#deployment-and-orchestration-with-ansible-kubernetes-docker) + - [JSON Support](overview.md#json-support) + - [Spark Integration](overview.md#spark-integration) + - [Read Historical Data without Restoring from Backup](overview.md#read-historical-data-without-restoring-from-backup) + - [Fast Import and Restore of Data](overview.md#fast-import-and-restore-of-data) + - [Hybrid of Column and Row Storage](overview.md#hybrid-of-column-and-row-storage) + - [SQL Plan Management](overview.md#sql-plan-management) + - [Open Source](overview.md#open-source) + - [Online Schema Changes](overview.md#online-schema-changes) ++ How-to + + Get Started + + Start a Local Cluster + - [From Binary](op-guide/binary-deployment.md) + - [In Kubernetes](op-guide/kubernetes.md) + - [In Docker Compose](op-guide/docker-compose.md) + - [Explore SQL with TiDB](try-tidb.md) + - [Import Sample Database](bikeshare-example-database.md) + - [Read Historical Data without Restoring from Backup](op-guide/history-read.md) + - Deploy + - [Hardware Recommendations](op-guide/recommendation.md) + - [Manual Deployment](op-guide/binary-deployment.md) + - Orchestrated Deployment + - [Ansible Deployment (Recommended)](op-guide/ansible-deployment.md) + - [Ansible Offline Deployment](op-guide/offline-ansible-deployment.md) + - [Docker Deployment](op-guide/docker-deployment.md) + - [Kubernetes Deployment](op-guide/kubernetes.md) + - Security - [MySQL Compatibility](sql/security-compatibility.md) - [The TiDB Access Privilege System](sql/privilege.md) - [TiDB User Account Management](sql/user-account-management.md) - - [Use Encrypted Connections](sql/encrypted-connections.md) - + SQL Optimization and Execution - - [SQL Optimization Process](sql/sql-optimizer-overview.md) - - [Understand the Query Execution Plan](sql/understanding-the-query-execution-plan.md) - - [Introduction to Statistics](sql/statistics.md) - + Language Structure - - [Literal Values](sql/literal-values.md) - - [Schema Object Names](sql/schema-object-names.md) - - [Keywords and Reserved Words](sql/keywords-and-reserved-words.md) - - [User-Defined Variables](sql/user-defined-variables.md) - - [Expression Syntax](sql/expression-syntax.md) - - [Comment Syntax](sql/comment-syntax.md) - + Globalization - - [Character Set Support](sql/character-set-support.md) - - [Time Zone Support](sql/time-zone.md) - + Data Types - - [Numeric Types](sql/datatype.md#numeric-types) - - [Date and Time Types](sql/datatype.md#date-and-time-types) - - [String Types](sql/datatype.md#string-types) - - [JSON Types](sql/datatype.md#json-types) - - [The ENUM data type](sql/datatype.md#the-enum-data-type) - - [The SET Type](sql/datatype.md#the-set-type) - - [Data Type Default Values](sql/datatype.md#data-type-default-values) - + Functions and Operators - - [Function and Operator Reference](sql/functions-and-operators-reference.md) - - [Type Conversion in Expression Evaluation](sql/type-conversion-in-expression-evaluation.md) - - [Operators](sql/operators.md) - - [Control Flow Functions](sql/control-flow-functions.md) - - [String Functions](sql/string-functions.md) - - [Numeric Functions and Operators](sql/numeric-functions-and-operators.md) - - [Date and Time Functions](sql/date-and-time-functions.md) - - [Bit Functions and Operators](sql/bit-functions-and-operators.md) - - [Cast Functions and Operators](sql/cast-functions-and-operators.md) - - [Encryption and Compression Functions](sql/encryption-and-compression-functions.md) - - [Information Functions](sql/information-functions.md) - - [JSON Functions](sql/json-functions.md) - - [Aggregate (GROUP BY) Functions](sql/aggregate-group-by-functions.md) - - [Miscellaneous Functions](sql/miscellaneous-functions.md) - - [Precision Math](sql/precision-math.md) - + SQL Statement Syntax - - [Data Definition Statements](sql/ddl.md) - - [Data Manipulation Statements](sql/dml.md) - - [Transactions](sql/transaction.md) - - [Database Administration Statements](sql/admin.md) - - [Prepared SQL Statement Syntax](sql/prepare.md) - - [Utility Statements](sql/util.md) - - [TiDB SQL Syntax Diagram](https://pingcap.github.io/sqlgram/) - + Transactions - - [MySQL Compatibility](sql/transaction-compatibility.md) - - [Isolation Levels](sql/transaction-isolation.md) - - [Constraints](sql/constraints.md) - - [Generated Columns](sql/generated-columns.md) - - [Connectors and APIs](sql/connection-and-APIs.md) - - [Error Codes and Troubleshooting](sql/error.md) - - [Compatibility with MySQL](sql/mysql-compatibility.md) - - [TiDB Memory Control](sql/tidb-memory-control.md) - - [Slow Query Log](sql/slow-query.md) - + Advanced Usage - - [Read Data From History Versions](op-guide/history-read.md) - - [Garbage Collection (GC)](op-guide/gc.md) -+ TiDB Operations Guide - - [Hardware and Software Requirements](op-guide/recommendation.md) - + Deploy - - [Ansible Deployment (Recommended)](op-guide/ansible-deployment.md) - - [Offline Deployment Using Ansible](op-guide/offline-ansible-deployment.md) - - [Binary Deployment](op-guide/binary-deployment.md) - - [Docker Deployment](op-guide/docker-deployment.md) - - [Docker Compose Deployment](op-guide/docker-compose.md) - - [Cross-DC Deployment Solutions](op-guide/cross-dc-deployment.md) - - [Kubernetes Deployment](op-guide/kubernetes.md) - + Configure - + By Component - - [tidb-server](op-guide/configuration.md) - - [pd-server](op-guide/pd-configuration.md) - - [tikv-server](op-guide/tikv-configuration.md) - - [Configuration File Description](op-guide/tidb-config-file.md) - - [Modify Component Configuration Using Ansible](op-guide/ansible-deployment-rolling-update.md#modify-component-configuration) - - [Enable TLS Authentication](op-guide/security.md) - - [Generate Self-signed Certificates](op-guide/generate-self-signed-certificates.md) - - [Cluster Topology Configuration](op-guide/location-awareness.md) - + Monitor - - [Monitoring Framework Overview](op-guide/monitor-overview.md) - - [Monitor a TiDB Cluster](op-guide/monitor.md) - + Key Monitoring Metrics - - [Overview](op-guide/dashboard-overview-info.md) - - [TiDB](op-guide/tidb-dashboard-info.md) - - [PD](op-guide/dashboard-pd-info.md) - - [TiKV](op-guide/dashboard-tikv-info.md) - + Scale - - [Scale a TiDB Cluster](op-guide/horizontal-scale.md) - - [Scale Using Ansible](op-guide/ansible-deployment-scale.md) - + Upgrade - - [Upgrade the Component Version](op-guide/ansible-deployment-rolling-update.md#upgrade-the-component-version) - - [TiDB 2.0 Upgrade Guide](op-guide/tidb-v2.0-upgrade-guide.md) - - [TiDB 2.1 Upgrade Guide](op-guide/tidb-v2.1-upgrade-guide.md) - - [FAQs After Upgrade](op-guide/upgrade-faq.md) - - [Tune Performance](op-guide/tune-tikv.md) - + Backup and Migrate + + Transport Layer Security (TLS) + - [Enable TLS For MySQL Clients](sql/encrypted-connections.md) + - [Enable TLS Between TiDB Components](op-guide/security.md) + - [Generate Self-signed Certificates](op-guide/generate-self-signed-certificates.md) + - Monitoring and Alerting + - [Overview](op-guide/monitor-overview.md) + - [Monitor a TiDB Cluster](op-guide/monitor.md) + + Key Monitoring Metrics + - [Overview](op-guide/dashboard-overview-info.md) + - [TiDB](op-guide/tidb-dashboard-info.md) + - [PD](op-guide/dashboard-pd-info.md) + - [TiKV](op-guide/dashboard-tikv-info.md) + - Geographic Redundancy + - [Overview](op-guide/cross-dc-deployment.md) + - [Configure Location Awareness](op-guide/location-awareness.md) + - [Migrate](tools/dm/overview.md) + - Maintain + - [Upgrading from TiDB 2.1](op-guide/tidb-v2.1-upgrade-guide.md) + - [Identifying slow queries](sql/slow-query.md) - [Backup and Restore](op-guide/backup-restore.md) - + Migrate - - [Migration Overview](op-guide/migration-overview.md) - - [Migrate All the Data](op-guide/migration.md#use-the-mydumper--loader-tool-to-export-and-import-all-the-data) - - [Migrate the Data Incrementally](op-guide/migration.md#use-the-syncer-tool-to-import-data-incrementally-optional) - - [TiDB-Ansible Common Operations](op-guide/ansible-operation.md) - - [Troubleshoot](trouble-shooting.md) -+ TiDB Enterprise Tools - - [Syncer](tools/syncer.md) - - [mydumper](tools/mydumper.md) - - [Loader](tools/loader.md) - + Data Migration - - [Overview](tools/dm/overview.md) - - [Restrictions](tools/dm/overview.md#usage-restrictions) - + Features - - [Table Routing](tools/dm/data-synchronization-features.md#table-routing) - - [Black and White Lists](tools/dm/data-synchronization-features.md#black-and-white-table-lists) - - [Binlog Event Filtering](tools/dm/data-synchronization-features.md#binlog-event-filtering) - - [Column Mapping](tools/dm/data-synchronization-features.md#column-mapping) - - [Synchronization Delay Monitoring](tools/dm/data-synchronization-features.md#synchronization-delay-monitoring) - + Sharding Support - - [Introduction](tools/dm/shard-merge.md) - - [Restrictions](tools/dm/shard-merge.md#restrictions) - - [Handle Sharding DDL Locks Manually](tools/dm/manually-handling-sharding-ddl-locks.md) - + Usage Scenarios - - [Simple Scenario](tools/dm/simple-synchronization-scenario.md) - - [Shard Merge Scenario](tools/dm/shard-merge-scenario.md) - - [Deploy a DM Cluster](tools/dm/deployment.md) - - [Migrate Data Using DM](tools/dm/practice.md) - + Configure - - [Overview](tools/dm/dm-configuration-file-overview.md) - - [Task Configuration](tools/dm/task-configuration-file-intro.md) - - [Monitor](tools/dm/monitor.md) - - [Manage the Task](tools/dm/manage-task.md) - - [Cluster Operations](tools/dm/cluster-operations.md) - - [Troubleshoot](tools/dm/troubleshooting.md) - + TiDB-Lightning - - [Overview](tools/lightning/overview-architecture.md) - - [Deployment](tools/lightning/deployment.md) - - [Checkpoints](tools/lightning/checkpoints.md) - - [Table Filter](tools/lightning/filter.md) - - [CSV Support](tools/lightning/csv.md) - - [Monitor](tools/lightning/monitor.md) - - [Troubleshooting](tools/lightning/errors.md) - - [FAQs](tools/lightning/faq.md) - - [TiDB-Binlog](tools/tidb-binlog-cluster.md) - - [PD Control](tools/pd-control.md) - - [PD Recover](tools/pd-recover.md) - - [TiKV Control](https://github.com/tikv/tikv/blob/master/docs/tools/tikv-control.md) - - [TiDB Controller](tools/tidb-controller.md) - - [Download](tools/download.md) -+ [TiKV Documentation](https://github.com/tikv/tikv/wiki) -+ TiSpark Documentation - - [Quick Start Guide](tispark/tispark-quick-start-guide.md) - - [User Guide](tispark/tispark-user-guide.md) -- [Frequently Asked Questions (FAQ)](FAQ.md) -- [TiDB Best Practices](https://pingcap.com/blog/2017-07-24-tidbbestpractice/) + + Scale + - [Scale a TiDB Cluster](op-guide/horizontal-scale.md) + + Common Ansible Operations + - [Overview](op-guide/ansible-operation.md) + - [Scale](op-guide/ansible-deployment-scale.md) + - [Modify Component Configuration](op-guide/ansible-deployment-rolling-update.md#modify-component-configuration) + - [Upgrade Component Version](op-guide/ansible-deployment-rolling-update.md#upgrade-the-component-version) + - Troubleshoot + - [Common Errors](sql/error.md) + - [Troubleshoot Cluster Setup](trouble-shooting.md) + - [Troubleshoot Migrations](tools/dm/troubleshooting.md) + - [Troubleshooting Lightning Imports](tools/lightning/errors.md) + - [Support Resources](support.md) + - [Report an Issue](report-issue.md) + - [Contribute](contribute.md) + - [Contribute to TiDB](contribute.md#contribute-to-tidb) + - [Improve the Docs](contribute.md#improve-the-docs) ++ Reference + - SQL + - [Supported Client Drivers](sql/connection-and-APIs.md) + - [MySQL Compatibility](sql/mysql-compatibility.md) + + SQL Statements + - [Data Definition Statements](sql/ddl.md) + - [Data Manipulation Statements](sql/dml.md) + - [Transactions](sql/transaction.md) + - [Database Administration Statements](sql/admin.md) + - [Prepared SQL Statement Syntax](sql/prepare.md) + - [Utility Statements](sql/util.md) + - [TiDB SQL Syntax Diagram](https://pingcap.github.io/sqlgram/) + + Data Types + - [Numeric Types](sql/datatype.md#numeric-types) + - [Date and Time Types](sql/datatype.md#date-and-time-types) + - [String Types](sql/datatype.md#string-types) + - [JSON Types](sql/datatype.md#json-types) + - [The ENUM data type](sql/datatype.md#the-enum-data-type) + - [The SET Type](sql/datatype.md#the-set-type) + - [Data Type Default Values](sql/datatype.md#data-type-default-values) + - [Constraints](sql/constraints.md) + + Functions and Operators + - [Function and Operator Reference](sql/functions-and-operators-reference.md) + - [Type Conversion in Expression Evaluation](sql/type-conversion-in-expression-evaluation.md) + - [Operators](sql/operators.md) + - [Control Flow Functions](sql/control-flow-functions.md) + - [String Functions](sql/string-functions.md) + - [Numeric Functions and Operators](sql/numeric-functions-and-operators.md) + - [Date and Time Functions](sql/date-and-time-functions.md) + - [Bit Functions and Operators](sql/bit-functions-and-operators.md) + - [Cast Functions and Operators](sql/cast-functions-and-operators.md) + - [Encryption and Compression Functions](sql/encryption-and-compression-functions.md) + - [Information Functions](sql/information-functions.md) + - [JSON Functions](sql/json-functions.md) + - [Aggregate (GROUP BY) Functions](sql/aggregate-group-by-functions.md) + - [Miscellaneous Functions](sql/miscellaneous-functions.md) + - [Precision Math](sql/precision-math.md) + + SQL Language Structure + - [Literal Values](sql/literal-values.md) + - [Schema Object Names](sql/schema-object-names.md) + - [Keywords and Reserved Words](sql/keywords-and-reserved-words.md) + - [User-Defined Variables](sql/user-defined-variables.md) + - [Expression Syntax](sql/expression-syntax.md) + - [Comment Syntax](sql/comment-syntax.md) + - [Generated Columns](sql/generated-columns.md) + + Transactions + - [Isolation Levels](sql/transaction-isolation.md) + + Performance + - [Overview](sql/sql-optimizer-overview.md) + - [Cost-based Optimizer](sql/understanding-the-query-execution-plan.md) + - [Introduction to Statistics](sql/statistics.md) + - Optimizer Hints + - [Tune TiKV](op-guide/tune-tikv.md) + - [TiDB Best Practices](https://pingcap.com/blog/2017-07-24-tidbbestpractice/) + - [The mysql System Database](sql/system-database.md) + - [Information Schema](sql/information-schema.md) + + TiSpark + - [Quick Start Guide](tispark/tispark-quick-start-guide.md) + - [User Guide](tispark/tispark-user-guide.md) + - Configuration + + tidb-server + - [MySQL Compatibility](sql/variable.md) + - [Time Zone](sql/time-zone.md) + - [Character Set](sql/character-set-support.md) + - [Extensions to MySQL](sql/tidb-specific.md) + - [Memory Control](sql/tidb-memory-control.md) + - [Garbage Collection (GC)](op-guide/gc.md) + - [Configuration Flags](op-guide/configuration.md) + + pd-server + - [Configuration Flags](op-guide/pd-configuration.md) + + tikv-server + - [Configuration Flags](op-guide/tikv-configuration.md) + - TiDB Status Port + + Tools + - [Syncer](tools/syncer.md) + - [mydumper](tools/mydumper.md) + - [Loader](tools/loader.md) + + Data Migration + - [Overview](tools/dm/overview.md) + - [Restrictions](tools/dm/overview.md#usage-restrictions) + - [Deploy](tools/dm/practice.md) + + Features + - [Table Routing](tools/dm/data-synchronization-features.md#table-routing) + - [Black and White Lists](tools/dm/data-synchronization-features.md#black-and-white-table-lists) + - [Binlog Event Filtering](tools/dm/data-synchronization-features.md#binlog-event-filtering) + - [Column Mapping](tools/dm/data-synchronization-features.md#column-mapping) + - [Synchronization Delay Monitoring](tools/dm/data-synchronization-features.md#synchronization-delay-monitoring) + + Sharding Support + - [Introduction](tools/dm/shard-merge.md) + - [Restrictions](tools/dm/shard-merge.md#restrictions) + - [Handle Sharding DDL Locks Manually](tools/dm/manually-handling-sharding-ddl-locks.md) + + Usage Scenarios + - [Simple Scenario](tools/dm/simple-synchronization-scenario.md) + - [Shard Merge Scenario](tools/dm/shard-merge-scenario.md) + + Configure + - [Overview](tools/dm/dm-configuration-file-overview.md) + - [Task Configuration](tools/dm/task-configuration-file-intro.md) + - [Monitor](tools/dm/monitor.md) + - [Manage the Task](tools/dm/manage-task.md) + - [Cluster Operations](tools/dm/cluster-operations.md) + + TiDB-Lightning + - [Overview](tools/lightning/overview-architecture.md) + - [Deployment](tools/lightning/deployment.md) + - [Checkpoints](tools/lightning/checkpoints.md) + - [Table Filter](tools/lightning/filter.md) + - [CSV Support](tools/lightning/csv.md) + - [Monitor](tools/lightning/monitor.md) + - [TiDB-Binlog](tools/tidb-binlog-cluster.md) (Enterprise) + - [PD Control](tools/pd-control.md) + - [PD Recover](tools/pd-recover.md) + - [TiKV Control](https://github.com/tikv/tikv/blob/master/docs/tools/tikv-control.md) + - [TiDB Controller](tools/tidb-controller.md) + - [Download](tools/download.md) + - [Roadmap](ROADMAP.md) + - [Adopters](adopters.md) ++ FAQs + - [TiDB Server FAQs](FAQ.md) + - [Lightning FAQs](tools/lightning/faq.md) + - [Upgrade FAQs](op-guide/upgrade-faq.md) + [Releases](releases/rn.md) + v3.0 - [3.0.0 Beta.1](releases/3.0.0-beta.1.md) @@ -231,9 +253,3 @@ - [RC3](releases/rc3.md) - [RC2](releases/rc2.md) - [RC1](releases/rc1.md) -- [TiDB Adopters](adopters.md) -- [TiDB Roadmap](ROADMAP.md) -- [Connect with us](community.md) -+ More Resources - - [PingCAP Blog](https://pingcap.com/blog/) - - [Weekly Update](https://pingcap.com/weekly/) From 1c8f3eca8ecee58736f768df826d3a4c3f393254 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Fri, 29 Mar 2019 11:41:46 -0600 Subject: [PATCH 02/28] Add optimizer hints --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 9ce3779945c45..94a286fe3a0d4 100644 --- a/TOC.md +++ b/TOC.md @@ -132,7 +132,7 @@ - [Overview](sql/sql-optimizer-overview.md) - [Cost-based Optimizer](sql/understanding-the-query-execution-plan.md) - [Introduction to Statistics](sql/statistics.md) - - Optimizer Hints + - [Optimizer Hints](sql/optimizer-hints.md) - [Tune TiKV](op-guide/tune-tikv.md) - [TiDB Best Practices](https://pingcap.com/blog/2017-07-24-tidbbestpractice/) - [The mysql System Database](sql/system-database.md) From 933da1f0c74ebe71765a7f5a4f43809c603502fa Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Mon, 1 Apr 2019 08:42:30 -0600 Subject: [PATCH 03/28] Address Feedback, Fix Lightning Name --- TOC.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TOC.md b/TOC.md index 94a286fe3a0d4..63c572ffa0fc3 100644 --- a/TOC.md +++ b/TOC.md @@ -75,7 +75,7 @@ - [Common Errors](sql/error.md) - [Troubleshoot Cluster Setup](trouble-shooting.md) - [Troubleshoot Migrations](tools/dm/troubleshooting.md) - - [Troubleshooting Lightning Imports](tools/lightning/errors.md) + - [Troubleshooting TiDB-Lightning Imports](tools/lightning/errors.md) - [Support Resources](support.md) - [Report an Issue](report-issue.md) - [Contribute](contribute.md) @@ -198,7 +198,7 @@ - [Adopters](adopters.md) + FAQs - [TiDB Server FAQs](FAQ.md) - - [Lightning FAQs](tools/lightning/faq.md) + - [TiDB-Lightning FAQs](tools/lightning/faq.md) - [Upgrade FAQs](op-guide/upgrade-faq.md) + [Releases](releases/rn.md) + v3.0 From 06d2c31d16560ac5538bd7fa7e424d04fd382a36 Mon Sep 17 00:00:00 2001 From: Calvin Weng Date: Sun, 7 Apr 2019 23:57:31 -0600 Subject: [PATCH 04/28] Update TOC.md Co-Authored-By: morgo --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 9db11d7fba189..7cb956d11f990 100644 --- a/TOC.md +++ b/TOC.md @@ -2,7 +2,7 @@ ## Documentation List -+ [Quick Start](QUICKSTART.md) ++ [Introduction](QUICKSTART.md) + Concepts - [Architecture](architecture.md) + [Key Features](overview.md) From ded433a100d6c8aa6adfc7c10d6d2f27d75e95d7 Mon Sep 17 00:00:00 2001 From: Calvin Weng Date: Sun, 7 Apr 2019 23:57:45 -0600 Subject: [PATCH 05/28] Update TOC.md Co-Authored-By: morgo --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 7cb956d11f990..cc3e0ada513d8 100644 --- a/TOC.md +++ b/TOC.md @@ -61,7 +61,7 @@ - [Configure Location Awareness](op-guide/location-awareness.md) - [Migrate](tools/dm/overview.md) - Maintain - - [Upgrading from TiDB 2.1](op-guide/tidb-v2.1-upgrade-guide.md) + - [Upgrade from TiDB 2.1](op-guide/tidb-v2.1-upgrade-guide.md) - [Identifying slow queries](sql/slow-query.md) - [Backup and Restore](op-guide/backup-restore.md) + Scale From 8746b6ad87e2e5300896cdff4165c3049aa67255 Mon Sep 17 00:00:00 2001 From: Calvin Weng Date: Sun, 7 Apr 2019 23:57:54 -0600 Subject: [PATCH 06/28] Update TOC.md Co-Authored-By: morgo --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index cc3e0ada513d8..176828adf3fff 100644 --- a/TOC.md +++ b/TOC.md @@ -62,7 +62,7 @@ - [Migrate](tools/dm/overview.md) - Maintain - [Upgrade from TiDB 2.1](op-guide/tidb-v2.1-upgrade-guide.md) - - [Identifying slow queries](sql/slow-query.md) + - [Identify slow queries](sql/slow-query.md) - [Backup and Restore](op-guide/backup-restore.md) + Scale - [Scale a TiDB Cluster](op-guide/horizontal-scale.md) From e3605dd23d2baee75ff0098b0d478ceba23bdabf Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Sun, 7 Apr 2019 23:59:43 -0600 Subject: [PATCH 07/28] Update TOC.md --- TOC.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/TOC.md b/TOC.md index 176828adf3fff..5ca2000e275b8 100644 --- a/TOC.md +++ b/TOC.md @@ -141,7 +141,7 @@ + TiSpark - [Quick Start Guide](tispark/tispark-quick-start-guide.md) - [User Guide](tispark/tispark-user-guide.md) - - Configuration + + Configuration + tidb-server - [MySQL Compatibility](sql/variable.md) - [Time Zone](sql/time-zone.md) @@ -151,10 +151,9 @@ - [Garbage Collection (GC)](op-guide/gc.md) - [Configuration Flags](op-guide/configuration.md) + pd-server - - [Configuration Flags](op-guide/pd-configuration.md) + - [Configuration Flags](op-guide/pd-configuration.md) + tikv-server - - [Configuration Flags](op-guide/tikv-configuration.md) - - TiDB Status Port + - [Configuration Flags](op-guide/tikv-configuration.md) + Tools - [Syncer](tools/syncer.md) - [mydumper](tools/mydumper.md) From 590078cd1d5239c464dbbeb814ca71923477ef65 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Mon, 8 Apr 2019 00:03:05 -0600 Subject: [PATCH 08/28] Update TOC.md --- TOC.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/TOC.md b/TOC.md index 5ca2000e275b8..54c0fb9d9cceb 100644 --- a/TOC.md +++ b/TOC.md @@ -35,12 +35,12 @@ - Deploy - [Hardware Recommendations](op-guide/recommendation.md) - [Manual Deployment](op-guide/binary-deployment.md) - - Orchestrated Deployment + + Orchestrated Deployment - [Ansible Deployment (Recommended)](op-guide/ansible-deployment.md) - [Ansible Offline Deployment](op-guide/offline-ansible-deployment.md) - [Docker Deployment](op-guide/docker-deployment.md) - [Kubernetes Deployment](op-guide/kubernetes.md) - - Security + + Security - [Security Compatibility with MySQL](sql/security-compatibility.md) - [The TiDB Access Privilege System](sql/privilege.md) - [TiDB User Account Management](sql/user-account-management.md) @@ -48,17 +48,17 @@ - [Enable TLS For MySQL Clients](sql/encrypted-connections.md) - [Enable TLS Between TiDB Components](op-guide/security.md) - [Generate Self-signed Certificates](op-guide/generate-self-signed-certificates.md) - - Monitoring and Alerting - - [Overview](op-guide/monitor-overview.md) - - [Monitor a TiDB Cluster](op-guide/monitor.md) - + Key Monitoring Metrics - - [Overview](op-guide/dashboard-overview-info.md) - - [TiDB](op-guide/tidb-dashboard-info.md) - - [PD](op-guide/dashboard-pd-info.md) - - [TiKV](op-guide/dashboard-tikv-info.md) - - Geographic Redundancy + + Geographic Redundancy - [Overview](op-guide/cross-dc-deployment.md) - [Configure Location Awareness](op-guide/location-awareness.md) + + Monitoring and Alerting + - [Overview](op-guide/monitor-overview.md) + - [Monitor a TiDB Cluster](op-guide/monitor.md) + + Key Monitoring Metrics + - [Overview](op-guide/dashboard-overview-info.md) + - [TiDB](op-guide/tidb-dashboard-info.md) + - [PD](op-guide/dashboard-pd-info.md) + - [TiKV](op-guide/dashboard-tikv-info.md) - [Migrate](tools/dm/overview.md) - Maintain - [Upgrade from TiDB 2.1](op-guide/tidb-v2.1-upgrade-guide.md) @@ -78,11 +78,11 @@ - [Troubleshooting TiDB-Lightning Imports](tools/lightning/errors.md) - [Support Resources](support.md) - [Report an Issue](report-issue.md) - - [Contribute](contribute.md) + + [Contribute](contribute.md) - [Contribute to TiDB](contribute.md#contribute-to-tidb) - [Improve the Docs](contribute.md#improve-the-docs) + Reference - - SQL + + SQL - [Supported Client Drivers](sql/connection-and-APIs.md) - [MySQL Compatibility](sql/mysql-compatibility.md) + SQL Statements From 0b7b9fc6aa43a36e44149da14c0bae7b102f725e Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Mon, 8 Apr 2019 00:06:19 -0600 Subject: [PATCH 09/28] Update TOC.md --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 54c0fb9d9cceb..9a6da4efa38d3 100644 --- a/TOC.md +++ b/TOC.md @@ -51,7 +51,7 @@ + Geographic Redundancy - [Overview](op-guide/cross-dc-deployment.md) - [Configure Location Awareness](op-guide/location-awareness.md) - + Monitoring and Alerting + + Monitor and Alert - [Overview](op-guide/monitor-overview.md) - [Monitor a TiDB Cluster](op-guide/monitor.md) + Key Monitoring Metrics From 85fdfa6ce6645dc03ee2ea116b1bd22c479d9eb6 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Mon, 8 Apr 2019 10:58:40 -0600 Subject: [PATCH 10/28] Update TOC.md --- TOC.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/TOC.md b/TOC.md index 9a6da4efa38d3..5149182534498 100644 --- a/TOC.md +++ b/TOC.md @@ -40,18 +40,18 @@ - [Ansible Offline Deployment](op-guide/offline-ansible-deployment.md) - [Docker Deployment](op-guide/docker-deployment.md) - [Kubernetes Deployment](op-guide/kubernetes.md) - + Security - - [Security Compatibility with MySQL](sql/security-compatibility.md) - - [The TiDB Access Privilege System](sql/privilege.md) - - [TiDB User Account Management](sql/user-account-management.md) - + Transport Layer Security (TLS) - - [Enable TLS For MySQL Clients](sql/encrypted-connections.md) - - [Enable TLS Between TiDB Components](op-guide/security.md) - - [Generate Self-signed Certificates](op-guide/generate-self-signed-certificates.md) + Geographic Redundancy - [Overview](op-guide/cross-dc-deployment.md) - [Configure Location Awareness](op-guide/location-awareness.md) - + Monitor and Alert + + Secure + - [Security Compatibility with MySQL](sql/security-compatibility.md) + - [The TiDB Access Privilege System](sql/privilege.md) + - [TiDB User Account Management](sql/user-account-management.md) + + Transport Layer Security (TLS) + - [Enable TLS For MySQL Clients](sql/encrypted-connections.md) + - [Enable TLS Between TiDB Components](op-guide/security.md) + - [Generate Self-signed Certificates](op-guide/generate-self-signed-certificates.md) + + Monitor - [Overview](op-guide/monitor-overview.md) - [Monitor a TiDB Cluster](op-guide/monitor.md) + Key Monitoring Metrics From 098fefa758c7d9737458777fc7a5929c06f09a6c Mon Sep 17 00:00:00 2001 From: Calvin Weng Date: Mon, 8 Apr 2019 19:34:56 -0600 Subject: [PATCH 11/28] Update TOC.md Co-Authored-By: morgo --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index f32984442951c..1f3c813c5d4de 100644 --- a/TOC.md +++ b/TOC.md @@ -31,7 +31,7 @@ - [In Docker Compose](op-guide/docker-compose.md) - [Explore SQL with TiDB](try-tidb.md) - [Import Sample Database](bikeshare-example-database.md) - - [Read Historical Data without Restoring from Backup](op-guide/history-read.md) + - [Read Historical Data](op-guide/history-read.md) - Deploy - [Hardware Recommendations](op-guide/recommendation.md) - [Manual Deployment](op-guide/binary-deployment.md) From ebfe6c23fb862e2de6e82d2af3d062815920b0a0 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Mon, 8 Apr 2019 21:33:08 -0600 Subject: [PATCH 12/28] Update TOC.md --- TOC.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/TOC.md b/TOC.md index 1f3c813c5d4de..ad0f71ec9d405 100644 --- a/TOC.md +++ b/TOC.md @@ -59,9 +59,10 @@ - [TiDB](op-guide/tidb-dashboard-info.md) - [PD](op-guide/dashboard-pd-info.md) - [TiKV](op-guide/dashboard-tikv-info.md) - - [Migrate](tools/dm/overview.md) - - Maintain + + Migrate - [Upgrade from TiDB 2.1](op-guide/tidb-v2.1-upgrade-guide.md) + - [Data Migration Overview](tools/dm/overview.md) + + Maintain - [Identify slow queries](sql/slow-query.md) - [Backup and Restore](op-guide/backup-restore.md) + Scale From 17711506572fb76c3515e4e74b5dc355a08d0300 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Mon, 8 Apr 2019 21:39:07 -0600 Subject: [PATCH 13/28] Restore previous change --- TOC.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/TOC.md b/TOC.md index ad0f71ec9d405..b8562e8e71dd0 100644 --- a/TOC.md +++ b/TOC.md @@ -59,10 +59,9 @@ - [TiDB](op-guide/tidb-dashboard-info.md) - [PD](op-guide/dashboard-pd-info.md) - [TiKV](op-guide/dashboard-tikv-info.md) - + Migrate - - [Upgrade from TiDB 2.1](op-guide/tidb-v2.1-upgrade-guide.md) - - [Data Migration Overview](tools/dm/overview.md) + - [Migrate](tools/dm/overview.md) + Maintain + - [Upgrade from TiDB 2.1](op-guide/tidb-v2.1-upgrade-guide.md) - [Identify slow queries](sql/slow-query.md) - [Backup and Restore](op-guide/backup-restore.md) + Scale From 09f0649aaa19e1cdb6fdd1a27db53e96a51ddc13 Mon Sep 17 00:00:00 2001 From: Lilian Lee Date: Tue, 9 Apr 2019 08:25:28 -0600 Subject: [PATCH 14/28] Update TOC.md Co-Authored-By: morgo --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index b8562e8e71dd0..39e56b384c12d 100644 --- a/TOC.md +++ b/TOC.md @@ -197,7 +197,7 @@ - [Roadmap](ROADMAP.md) - [Adopters](adopters.md) + FAQs - - [TiDB Server FAQs](FAQ.md) + - [TiDB FAQs](FAQ.md) - [TiDB-Lightning FAQs](tools/lightning/faq.md) - [Upgrade FAQs](op-guide/upgrade-faq.md) + [Releases](releases/rn.md) From 040ac56cdb27e533493d71070f13fb2d8a3ff350 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Tue, 9 Apr 2019 08:26:26 -0600 Subject: [PATCH 15/28] Update TOC.md --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 39e56b384c12d..19107f57e1c08 100644 --- a/TOC.md +++ b/TOC.md @@ -74,7 +74,7 @@ - Troubleshoot - [Common Errors](sql/error.md) - [Troubleshoot Cluster Setup](trouble-shooting.md) - - [Troubleshoot Migrations](tools/dm/troubleshooting.md) + - [Troubleshoot Data Migrations](tools/dm/troubleshooting.md) - [Troubleshooting TiDB-Lightning Imports](tools/lightning/errors.md) - [Support Resources](support.md) - [Report an Issue](report-issue.md) From d7915a9f3bb3d3c4d30cb8a8de9f5b0c7335670b Mon Sep 17 00:00:00 2001 From: Lilian Lee Date: Tue, 9 Apr 2019 08:26:46 -0600 Subject: [PATCH 16/28] Update TOC.md Co-Authored-By: morgo --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 19107f57e1c08..45d371fce8f2b 100644 --- a/TOC.md +++ b/TOC.md @@ -75,7 +75,7 @@ - [Common Errors](sql/error.md) - [Troubleshoot Cluster Setup](trouble-shooting.md) - [Troubleshoot Data Migrations](tools/dm/troubleshooting.md) - - [Troubleshooting TiDB-Lightning Imports](tools/lightning/errors.md) + - [Troubleshoot TiDB-Lightning](tools/lightning/errors.md) - [Support Resources](support.md) - [Report an Issue](report-issue.md) + [Contribute](contribute.md) From 6047bff97afb6019f79fd634d493d867a7cea5c0 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Tue, 9 Apr 2019 08:31:28 -0600 Subject: [PATCH 17/28] Integrate tispark --- TOC.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/TOC.md b/TOC.md index 45d371fce8f2b..4f2623c7c09e2 100644 --- a/TOC.md +++ b/TOC.md @@ -43,6 +43,7 @@ + Geographic Redundancy - [Overview](op-guide/cross-dc-deployment.md) - [Configure Location Awareness](op-guide/location-awareness.md) + - [TiSpark](tispark/tispark-quick-start-guide.md) + Secure - [Security Compatibility with MySQL](sql/security-compatibility.md) - [The TiDB Access Privilege System](sql/privilege.md) @@ -138,9 +139,7 @@ - [TiDB Best Practices](https://pingcap.com/blog/2017-07-24-tidbbestpractice/) - [The mysql System Database](sql/system-database.md) - [Information Schema](sql/information-schema.md) - + TiSpark - - [Quick Start Guide](tispark/tispark-quick-start-guide.md) - - [User Guide](tispark/tispark-user-guide.md) + - [TiSpark](tispark/tispark-user-guide.md) + Configuration + tidb-server - [MySQL Compatibility](sql/variable.md) From a4ba95fdb32d7a9fdc7fafde4115c500b32ed98f Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Tue, 9 Apr 2019 08:39:45 -0600 Subject: [PATCH 18/28] Update TOC.md --- TOC.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TOC.md b/TOC.md index 4f2623c7c09e2..ca93b7d3de3f0 100644 --- a/TOC.md +++ b/TOC.md @@ -142,10 +142,10 @@ - [TiSpark](tispark/tispark-user-guide.md) + Configuration + tidb-server - - [MySQL Compatibility](sql/variable.md) + - [MySQL System Variables](sql/variable.md) + - [TiDB Specific System Variables](sql/tidb-specific.md) - [Time Zone](sql/time-zone.md) - [Character Set](sql/character-set-support.md) - - [Extensions to MySQL](sql/tidb-specific.md) - [Memory Control](sql/tidb-memory-control.md) - [Garbage Collection (GC)](op-guide/gc.md) - [Configuration Flags](op-guide/configuration.md) From a2d9617b139c64cda36be001b0c90fe2b4b12325 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Tue, 9 Apr 2019 14:11:03 -0600 Subject: [PATCH 19/28] Integrate Ansible content to main TOC --- TOC.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/TOC.md b/TOC.md index ca93b7d3de3f0..516fa23cdd927 100644 --- a/TOC.md +++ b/TOC.md @@ -40,6 +40,7 @@ - [Ansible Offline Deployment](op-guide/offline-ansible-deployment.md) - [Docker Deployment](op-guide/docker-deployment.md) - [Kubernetes Deployment](op-guide/kubernetes.md) + - [Overview of Ansible Operations](op-guide/ansible-operation.md) + Geographic Redundancy - [Overview](op-guide/cross-dc-deployment.md) - [Configure Location Awareness](op-guide/location-awareness.md) @@ -62,16 +63,14 @@ - [TiKV](op-guide/dashboard-tikv-info.md) - [Migrate](tools/dm/overview.md) + Maintain - - [Upgrade from TiDB 2.1](op-guide/tidb-v2.1-upgrade-guide.md) - - [Identify slow queries](sql/slow-query.md) - [Backup and Restore](op-guide/backup-restore.md) + Scale - [Scale a TiDB Cluster](op-guide/horizontal-scale.md) - + Common Ansible Operations - - [Overview](op-guide/ansible-operation.md) - - [Scale](op-guide/ansible-deployment-scale.md) - - [Modify Component Configuration](op-guide/ansible-deployment-rolling-update.md#modify-component-configuration) - - [Upgrade Component Version](op-guide/ansible-deployment-rolling-update.md#upgrade-the-component-version) + - [Scale using Ansible](op-guide/ansible-deployment-scale.md) + - [Identify slow queries](sql/slow-query.md) + + Upgrade + - [Upgrade from TiDB 2.1](op-guide/tidb-v2.1-upgrade-guide.md) + - [Rolling updates with Ansible](op-guide/ansible-deployment-rolling-update.md) - Troubleshoot - [Common Errors](sql/error.md) - [Troubleshoot Cluster Setup](trouble-shooting.md) From 56bd8459dd53aa6b52862adc01f7bedb69b5d2c9 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Tue, 9 Apr 2019 17:10:46 -0600 Subject: [PATCH 20/28] Add missing links. --- TOC.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 516fa23cdd927..2a24c045dc59e 100644 --- a/TOC.md +++ b/TOC.md @@ -45,6 +45,7 @@ - [Overview](op-guide/cross-dc-deployment.md) - [Configure Location Awareness](op-guide/location-awareness.md) - [TiSpark](tispark/tispark-quick-start-guide.md) + - [Data Migration with Ansible](tools/dm/deployment.md) + Secure - [Security Compatibility with MySQL](sql/security-compatibility.md) - [The TiDB Access Privilege System](sql/privilege.md) @@ -61,7 +62,10 @@ - [TiDB](op-guide/tidb-dashboard-info.md) - [PD](op-guide/dashboard-pd-info.md) - [TiKV](op-guide/dashboard-tikv-info.md) - - [Migrate](tools/dm/overview.md) + + Migrate + - [Overview](op-guide/migration-overview.md) + - [From MySQL](op-guide/migration.md) + - [Using Data Migration](tools/dm/overview.md) + Maintain - [Backup and Restore](op-guide/backup-restore.md) + Scale @@ -70,6 +74,7 @@ - [Identify slow queries](sql/slow-query.md) + Upgrade - [Upgrade from TiDB 2.1](op-guide/tidb-v2.1-upgrade-guide.md) + - [Upgrade Data Migration](tools/dm/dm-upgrade.md) - [Rolling updates with Ansible](op-guide/ansible-deployment-rolling-update.md) - Troubleshoot - [Common Errors](sql/error.md) From e30c0945653b3cb93bc57fd2b41b1b5c0e87cd41 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Tue, 9 Apr 2019 17:16:01 -0600 Subject: [PATCH 21/28] Update TOC.md --- TOC.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 2a24c045dc59e..1be0d48df67a4 100644 --- a/TOC.md +++ b/TOC.md @@ -34,7 +34,9 @@ - [Read Historical Data](op-guide/history-read.md) - Deploy - [Hardware Recommendations](op-guide/recommendation.md) - - [Manual Deployment](op-guide/binary-deployment.md) + + From Binary Tarball + - [For testing environments](op-guide/binary-testing-deployment.md) + - [For production environments](op-guide/binary-deployment.md) + Orchestrated Deployment - [Ansible Deployment (Recommended)](op-guide/ansible-deployment.md) - [Ansible Offline Deployment](op-guide/offline-ansible-deployment.md) From fa939fb4bba6e75b91e48a6e65c060797e370d13 Mon Sep 17 00:00:00 2001 From: Calvin Weng Date: Thu, 11 Apr 2019 08:32:27 -0600 Subject: [PATCH 22/28] Update TOC.md Co-Authored-By: morgo --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 1be0d48df67a4..2e508e4aab8cd 100644 --- a/TOC.md +++ b/TOC.md @@ -143,7 +143,7 @@ - [Optimizer Hints](sql/optimizer-hints.md) - [Tune TiKV](op-guide/tune-tikv.md) - [TiDB Best Practices](https://pingcap.com/blog/2017-07-24-tidbbestpractice/) - - [The mysql System Database](sql/system-database.md) + - [TiDB System Database](sql/system-database.md) - [Information Schema](sql/information-schema.md) - [TiSpark](tispark/tispark-user-guide.md) + Configuration From 54adeccea89607839d3df5477d763f93cc55cee9 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Thu, 11 Apr 2019 10:15:06 -0600 Subject: [PATCH 23/28] Address calvins feedback --- TOC.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 2e508e4aab8cd..9588e381136c3 100644 --- a/TOC.md +++ b/TOC.md @@ -66,7 +66,8 @@ - [TiKV](op-guide/dashboard-tikv-info.md) + Migrate - [Overview](op-guide/migration-overview.md) - - [From MySQL](op-guide/migration.md) + - [Full import using mydumper/loader](op-guide/migration.md) + - [Incremental import using syncer](op-guide/migration-incremental.md) - [Using Data Migration](tools/dm/overview.md) + Maintain - [Backup and Restore](op-guide/backup-restore.md) From 49a5d350e4d59fbe51b1b00606fb3b2b1797cfc0 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Thu, 11 Apr 2019 20:20:31 -0600 Subject: [PATCH 24/28] Update TOC.md --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 9588e381136c3..91b13633c8103 100644 --- a/TOC.md +++ b/TOC.md @@ -66,7 +66,7 @@ - [TiKV](op-guide/dashboard-tikv-info.md) + Migrate - [Overview](op-guide/migration-overview.md) - - [Full import using mydumper/loader](op-guide/migration.md) + - [Migrate from MySQL](op-guide/migration.md) - [Incremental import using syncer](op-guide/migration-incremental.md) - [Using Data Migration](tools/dm/overview.md) + Maintain From 36ea2e501d9c72f69416365daa4655f6edb43154 Mon Sep 17 00:00:00 2001 From: Lilian Lee Date: Fri, 12 Apr 2019 10:19:51 -0600 Subject: [PATCH 25/28] Update TOC.md Co-Authored-By: morgo --- TOC.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 91b13633c8103..dc681ae956536 100644 --- a/TOC.md +++ b/TOC.md @@ -66,7 +66,8 @@ - [TiKV](op-guide/dashboard-tikv-info.md) + Migrate - [Overview](op-guide/migration-overview.md) - - [Migrate from MySQL](op-guide/migration.md) + + Migrate from MySQL + - [Migrate the Full Data](op-guide/migration.md) - [Incremental import using syncer](op-guide/migration-incremental.md) - [Using Data Migration](tools/dm/overview.md) + Maintain From 9ce670db4df12a349fadffce48aa435fadf43d74 Mon Sep 17 00:00:00 2001 From: Lilian Lee Date: Fri, 12 Apr 2019 10:19:59 -0600 Subject: [PATCH 26/28] Update TOC.md Co-Authored-By: morgo --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index dc681ae956536..9e1ce3412a9bf 100644 --- a/TOC.md +++ b/TOC.md @@ -68,7 +68,7 @@ - [Overview](op-guide/migration-overview.md) + Migrate from MySQL - [Migrate the Full Data](op-guide/migration.md) - - [Incremental import using syncer](op-guide/migration-incremental.md) + - [Migrate the Incremental Data](op-guide/migration-incremental.md) - [Using Data Migration](tools/dm/overview.md) + Maintain - [Backup and Restore](op-guide/backup-restore.md) From 659c0c8412a3753b22beeaf624bc9940daa2acaf Mon Sep 17 00:00:00 2001 From: Lilian Lee Date: Fri, 12 Apr 2019 10:20:10 -0600 Subject: [PATCH 27/28] Update TOC.md Co-Authored-By: morgo --- TOC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TOC.md b/TOC.md index 9e1ce3412a9bf..3346a5a05b44b 100644 --- a/TOC.md +++ b/TOC.md @@ -69,7 +69,7 @@ + Migrate from MySQL - [Migrate the Full Data](op-guide/migration.md) - [Migrate the Incremental Data](op-guide/migration-incremental.md) - - [Using Data Migration](tools/dm/overview.md) + - [Migrate from CSV](tools/lightning/csv.md) + Maintain - [Backup and Restore](op-guide/backup-restore.md) + Scale From cdc3a524444730fadac50932f0384a972c6cc3b1 Mon Sep 17 00:00:00 2001 From: Morgan Tocker Date: Sat, 13 Apr 2019 10:58:54 -0600 Subject: [PATCH 28/28] Add 2.1 release notes --- TOC.md | 1 + 1 file changed, 1 insertion(+) diff --git a/TOC.md b/TOC.md index 3346a5a05b44b..bd8b27377bf9f 100644 --- a/TOC.md +++ b/TOC.md @@ -212,6 +212,7 @@ - [3.0.0 Beta.1](releases/3.0.0-beta.1.md) - [3.0 Beta](releases/3.0beta.md) + v2.1 + - [2.1.8](releases/2.1.8.md) - [2.1.7](releases/2.1.7.md) - [2.1.6](releases/2.1.6.md) - [2.1.5](releases/2.1.5.md)