为提高效率,提问时请提供以下信息,问题描述清晰可优先响应。
- 【TiDB 版本】:3.0.5
- 【问题描述】:
1.使用mysql客户端执行insert into select ,很快报错事务太大(30w)
2.使用tispark向tidb写入数据(30w),运行一个小时没有结束
如何诊断?
spark写入代码“
dataset.write()
.mode(saveMode)
.format("jdbc")
.option("driver", tidbDatabaseBean.getDriver())
.option("url", tidbDatabaseBean.getUrl())
.option("useSSL", tidbDatabaseBean.getUseSSL())
.option("dbtable", table)
.option("isolationLevel", tidbDatabaseBean.getIsolationLevel())
.option("user", tidbDatabaseBean.getUser())
.option("password", tidbDatabaseBean.getPassword())
.save();