七叶笔记 » Java » Tidb异常解决:IN items count 10000 exceeds the threshold 10000

Tidb异常解决:IN items count 10000 exceeds the threshold 10000

使用Tidb遇到一个异常,in的入参超过了阈值10000,这个入参也太多了。

具体异常信息如下:

 Error querying database.  Cause: java.sql.SQLException: [9001, 2021091223145801003000415503151369992] : IN items count 10000 exceeds the threshold 10000\\n### The error may exist in URL

解决方案:

1、修改阈值,还未找到在哪里修改

2、10000以内分批查询

3、根据业务逻辑看是否能够联表查询

相关文章