菜鸟笔记
提升您的技术认知

MongoDB 报错 Command failed with error 251 (NoSuchTransaction)

最近遇到一个线上bug,访问某特定接口会偶发异常。排查日志发现是在操作MongoDB时报错,错误信息如下:

error message: Command failed with error 251 (NoSuchTransaction): 'Given transaction number 115 does not match any in-progress transactions. The active transaction number is 114' on server xx.xx.xx.xx:xxxx. The full response is {"errorLabels": ["TransientTransactionError"], "ok": 0.0, "errmsg": "Given transaction number 115 does not match any in-progress transactions. The active transaction number is 114", "code": 251, "codeName": "NoSuchTransaction"}

通过检索和排查,定位到问题是由于处理MongoDB操作时,同一事务中的两个请求被同时发送至DB,有概率产生如下情况:

  1. 请求1和请求2同时发送至Mongo并开始执行
  2. 请求1尚在执行中,请求2已完成
  3. 由于此时请求1尚未完成,该事务在DB层面并未真正开始,所以请求2无法正常结束(也就是为什么报错指出找不到transaction id 115,因为这条事务在DB中还未注册),导致事务回滚并抛出异常
  4. 请求1执行完成,但此时事务已回滚,操作无效

回顾代码,发现两个请求被同时发送至DB的原因是使用了zipWith()方法进行数据合并。此方法的特性是会同时向数据库请求待合并的两个数据,在操作Mongo时就会触发前述问题。

解决办法也非常简单,使用zipWhen()方法来替代即可,zipWhen会阻塞并等待请求的第一个数据到达后再请求第二个数据,完美规避了这个问题。