mysql>delete from userdata where userid=23;
ERROR 1297 (HY000): Got temporary error 233 'Out of operation records in transaction coordinator (increase MaxNoOfConcurrentOperations)' from ndbcluster=====================================================================
当记录少时删除成功
记录多时比如一下子删除2W条就出现上面的错误了,怎么解决呢?

解决方案 »

  1.   

    MaxNoOfConcurrentOperations中的值是多少?试试
    MaxNoOfConcurrentOperations=200000
    MaxNoOfLocalOperations = 1.1 x MaxNoOfConcurrentOperations
      

  2.   

    increase MaxNoOfConcurrentOperations
    按系统的提示,增加MaxNoOfConcurrentOperations的大小。
      

  3.   

    increase MaxNoOfConcurrentOperations:错误提示都叫你加大这个值了..