MySQL Forums
Forum List  »  NDB clusters

Re: NDB Cluster: MaxNoOfConcurrentTransactions
Posted by: Mauritz Sundell
Date: June 11, 2021 07:28AM

Hi Deepak

Thanks for feedback.
It is good to get examples of what documentation we need to improve.

One can also inspect the configuration using mysql.

We have the ndbinfo schema which have several tables for inspecting a cluster.

Copy pasted the following query (and added ndbinfo. prefix) from
https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-ndbinfo-config-values.html

SELECT v.node_id AS 'Node Id',
p.param_name AS 'Parameter',
v.config_value AS 'Value'
FROM ndbinfo.config_values v
JOIN ndbinfo.config_params p
ON v.config_param=p.param_number
WHERE p.param_name NOT LIKE '\_\_%'
ORDER BY v.node_id, p.param_name;


Regards,
Mauritz

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: NDB Cluster: MaxNoOfConcurrentTransactions
396
June 11, 2021 07:28AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.