├── .gitignore ├── Analyze.py ├── Cluster_Region.py ├── Cluster_check.py ├── README.md ├── SplitTable.py ├── Stats_dump.py ├── TiDB_Kill.py ├── TiDB_Outfile.py ├── adminCheck.sh ├── analyze.sh ├── dumpling.sh ├── failoverByCDC.md ├── failoverByCDC.sh ├── out_user.py ├── report_ccsv ├── query.lst ├── report.py └── time.lst ├── requirements.txt ├── restart_tidb_tiflash.py ├── split_hot_region.py ├── split_table_region.py ├── sync_diff.py ├── sync_diff_T2T.py ├── tidb_status.py └── time_to_tso.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/.gitignore -------------------------------------------------------------------------------- /Analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/Analyze.py -------------------------------------------------------------------------------- /Cluster_Region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/Cluster_Region.py -------------------------------------------------------------------------------- /Cluster_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/Cluster_check.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/README.md -------------------------------------------------------------------------------- /SplitTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/SplitTable.py -------------------------------------------------------------------------------- /Stats_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/Stats_dump.py -------------------------------------------------------------------------------- /TiDB_Kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/TiDB_Kill.py -------------------------------------------------------------------------------- /TiDB_Outfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/TiDB_Outfile.py -------------------------------------------------------------------------------- /adminCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/adminCheck.sh -------------------------------------------------------------------------------- /analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/analyze.sh -------------------------------------------------------------------------------- /dumpling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/dumpling.sh -------------------------------------------------------------------------------- /failoverByCDC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/failoverByCDC.md -------------------------------------------------------------------------------- /failoverByCDC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/failoverByCDC.sh -------------------------------------------------------------------------------- /out_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/out_user.py -------------------------------------------------------------------------------- /report_ccsv/query.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/report_ccsv/query.lst -------------------------------------------------------------------------------- /report_ccsv/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/report_ccsv/report.py -------------------------------------------------------------------------------- /report_ccsv/time.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/report_ccsv/time.lst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mysql_connector_repackaged==0.3.1 2 | PyMySQL==1.0.2 3 | requests==2.27.1 4 | -------------------------------------------------------------------------------- /restart_tidb_tiflash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/restart_tidb_tiflash.py -------------------------------------------------------------------------------- /split_hot_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/split_hot_region.py -------------------------------------------------------------------------------- /split_table_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/split_table_region.py -------------------------------------------------------------------------------- /sync_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/sync_diff.py -------------------------------------------------------------------------------- /sync_diff_T2T.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/sync_diff_T2T.py -------------------------------------------------------------------------------- /tidb_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/tidb_status.py -------------------------------------------------------------------------------- /time_to_tso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WalterWj/PingCAP/HEAD/time_to_tso.py --------------------------------------------------------------------------------