Guest User

Untitled

a guest
Jul 19th, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. MaxNoOfConcurrentOperations=150000
  2. MaxNoOfConcurrentTransactions=150000
  3. MaxNoOfLocalOperations=150000
  4.  
  5. mysql> delete from radacct where acctinputoctets=0 and acctoutputoctets=0;
  6. ERROR 1297 (HY000): Got temporary error 1217 'Out of operation records in local data manager (increase MaxNoOfLocalOperations)' from NDBCLUSTER.
  7.  
  8. mysql> explain delete from radacct where acctinputoctets=0 and acctoutputoctets=0;
  9. +----+-------------+---------+------+---------------+------+---------+------+---------+-------------+
  10. | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
  11. +----+-------------+---------+------+---------------+------+---------+------+---------+-------------+
  12. | 1 | SIMPLE | radacct | ALL | NULL | NULL | NULL | NULL | 1209607 | Using where |
  13. +----+-------------+---------+------+---------------+------+---------+------+---------+-------------+
Add Comment
Please, Sign In to add comment