
TDSQL
TDSQL技术分享
袋鼠mysql
中国分布式数据库领导者
展开
-
tidb使用坑记录
1、对硬盘要求很高,没上SSD硬盘的不建议使用 2、不支持分区,删除数据是个大坑。 解决方案:set @@session.tidb_batch_delete=1; 3、插入数据太大也会报错 解决方案:set @@session.tidb_batch_insert=1; 4、删除表数据时不支持别名 delete from 表名 表别名 where 表别名.col = ‘1’ 会报错 5、内存使用...原创 2018-09-19 16:13:29 · 8841 阅读 · 3 评论 -
tiDB 单机版安装
1.下载压缩包 wget http://download.pingcap.org/tidb-latest-linux-amd64.tar.gz wget http://download.pingcap.org/tidb-latest-linux-amd64.sha256 2.检查文件完整性 [root@localhost tools]# sha256sum -c tidb-latest-linux...原创 2019-07-04 15:09:52 · 936 阅读 · 0 评论