Hi,
I've started getting the following error when trying to run a program which loads data into NDB tables:
My problem is that MaxNoOfConcurrentOperations is set to 1,000,000 already and the program which I'm running should be the only one doing any kind of operation on this database, and it only makes 4 database calls every time it runs.
How can I check what other programs/processes are accessing the database and causing this error?
Also, am I on the right track in thinking that it must be another process causing the MaxNoOfConcurrentOperations to be exceeded? The program has crashed in the middle of queries before, could it be possible that these previous queries are still holding on to their operations lock?
Thank you
I've started getting the following error when trying to run a program which loads data into NDB tables:
Unable to execute query: Got temporary error 233 'Out of operation records in transaction coordinator (increase MaxNoOfConcurrentOperations)' from NDBCLUSTER. ERROR: Got temporary error 233 'Out of operation records in transaction coordinator (increase MaxNoOfConcurrentOperations)' from NDBCLUSTER
My problem is that MaxNoOfConcurrentOperations is set to 1,000,000 already and the program which I'm running should be the only one doing any kind of operation on this database, and it only makes 4 database calls every time it runs.
How can I check what other programs/processes are accessing the database and causing this error?
Also, am I on the right track in thinking that it must be another process causing the MaxNoOfConcurrentOperations to be exceeded? The program has crashed in the middle of queries before, could it be possible that these previous queries are still holding on to their operations lock?
Thank you