<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - NDB clusters</title>
        <description>Forum for NDB clusters.</description>
        <link>https://forums.mysql.com/list.php?25</link>
        <lastBuildDate>Sat, 18 Jul 2026 12:28:24 +0000</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forums.mysql.com/read.php?25,741349,741349#msg-741349</guid>
            <title>MySQL NDB IP Bind Issues (1 reply)</title>
            <link>https://forums.mysql.com/read.php?25,741349,741349#msg-741349</link>
            <description><![CDATA[ Hi there,<br />
<br />
I&#039;m trying to set up a new MySQL NDB cluster in a cloud environment on Debian 13, and I&#039;m getting the following error when starting my data node using ndbmtd: (IP addresses changed for privacy)<br />
<br />
2025-11-04 18:32:43 [ndbd] INFO -- Angel connected to &#039;1.2.3.4:1186&#039;<br />
2025-11-04 18:32:48 [ndbd] INFO -- Angel allocated nodeid: 3<br />
2025-11-04 18:32:48 [ndbd] ERROR -- Could not fetch configuration/invalid configuration, error: &#039;The hostname this node should have according to the configuration does not match a local interface. Attempt to bind &#039;4.5.6.7&#039; failed with error: 99 &#039;Cannot assign requested address&#039;&#039;<br />
<br />
My data node has a public (4.5.6.7) and private (10.0.0.1) IP address. I&#039;ve tried everything I can think of with bind-address =10.0.0.1 parameter but I can&#039;t get past this error.<br />
<br />
How do I tell ndbmtd to bind to the private address 10.0.0.1 to get past this error?<br />
<br />
If I run ndbmtd --help it even reports bind-address 10.0.0.1 but seems to ignore it completely.<br />
<br />
HELP!]]></description>
            <dc:creator>Chris Walker</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Tue, 16 Dec 2025 12:55:33 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,741316,741316#msg-741316</guid>
            <title>NDB Cluster docker IP addresses (no replies)</title>
            <link>https://forums.mysql.com/read.php?25,741316,741316#msg-741316</link>
            <description><![CDATA[ I am setting up a 5 node cluster 1 mgmt 1 sql and 3 data nodes  I am having issues with the ip address <br />
I have not been able to get docker to bring up the cluster without using the 192.168.0.0/24 network <br />
any suggestions?<br />
<br />
this is my docker-compose on the mgmt<br />
<br />
<br />
<br />
Networks:<br />
  cluster_lan:<br />
    driver: macvlan<br />
    driver_opts:<br />
      parent: ens19          # your LAN NIC<br />
    ipam:<br />
      config:<br />
        - subnet: 192.168.0.0/24<br />
          gateway: 192.168.0.1<br />
<br />
volumes:<br />
  mgmd-data: {}<br />
<br />
services:<br />
  management1:<br />
    image: container-registry.oracle.com/mysql/community-cluster:8.4<br />
    container_name: management1<br />
    command: [&quot;ndb_mgmd&quot;, &quot;--config-file=/etc/mysql-cluster/config.ini&quot;, &quot;--ndb-nodeid=1&quot;, &quot;--initial&quot;]<br />
    restart: unless-stopped<br />
    networks:<br />
      cluster_lan:<br />
        ipv4_address: 192.168.0.2<br />
    volumes:<br />
      - ./mysql-cluster/config.ini:/etc/mysql-cluster.cnf:ro<br />
        #      - ./mysql-cluster/config.ini:/etc/mysql-cluster/config.ini:ro<br />
      - mgmd-data:/var/lib/mysql-cluster<br />
<br />
  # Host-facing proxy: listens on the VM host&#039;s :1186 and forwards to 192.168.0.2:1186<br />
  mgmd-proxy:<br />
    image: alpine/socat<br />
    container_name: mgmd-proxy<br />
    network_mode: host<br />
    restart: unless-stopped<br />
    depends_on: [management1]<br />
    command: [&quot;TCP-LISTEN:1186,reuseaddr,fork&quot;,&quot;TCP:192.168.0.2:1186&quot;]<br />
<br />
~]]></description>
            <dc:creator>Jason Prouty</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Thu, 23 Oct 2025 13:20:22 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,740249,740249#msg-740249</guid>
            <title>MySQL 8.4 replication issues (3 replies)</title>
            <link>https://forums.mysql.com/read.php?25,740249,740249#msg-740249</link>
            <description><![CDATA[ Hi , <br />
I want to setup replication between 2 NDB Clusters V8,4 . <br />
Primary Cluster <br />
2 VMS are having data nodes and management nodes<br />
2 VMs are having mysql API nodes<br />
<br />
my.cnf:<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
<br />
log-error=/var/log/mysql/mysqld.log<br />
pid-file=/var/lib/mysql/mysqld.pid<br />
log-bin = /var/lib/mysql/mysql-bin.log<br />
max-binlog-size  = 500M<br />
server-id        = 2<br />
port = 3306<br />
ndbcluster<br />
ndb-nodeid = 51<br />
max_connections=10000<br />
table_open_cache=2000<br />
relay_log = /var/log/mysql/mysql-relay-bin<br />
relay_log_index = /var/log/mysql/mysql-relay-bin.index<br />
ndb-connectstring=****,****<br />
binlog_expire_logs_seconds = 2592000<br />
binlog-format=ROW<br />
replicate-do-db=&lt;db name&gt;<br />
binlog-do-db=&lt;db name&gt;<br />
<br />
[client]<br />
socket=/var/lib/mysql/mysql.sock<br />
<br />
Secondary Cluster<br />
1 vm containing data node, management node and API node. <br />
<br />
my.cnf is same as above . <br />
<br />
But while doing the replication, the bulk data replication is not happening properly , may be some of the data is getting replicated. While doing small data set, the replication is happening. Can anybody help us to know , what is the issue]]></description>
            <dc:creator>Kallol Chakraborty</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Thu, 13 Feb 2025 12:52:42 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,740014,740014#msg-740014</guid>
            <title>How to shorten the time after data node switchover (3 replies)</title>
            <link>https://forums.mysql.com/read.php?25,740014,740014#msg-740014</link>
            <description><![CDATA[ Host A, a management node, data node and SQL node. The main data node.<br />
Host B, a management node, data node and SQL node.<br />
<br />
Reboot host A.<br />
Host B accessing mysql reports error ERROR 1296 (HY000): Got error 4009 &#039;Cluster Failure&#039; from NDBCLUSTER<br />
Wait about 40s for normal access.<br />
<br />
<br />
/usr/local/app/mysql-cluster/config.ini<br />
[tcp default]<br />
SendBufferMemory=2M<br />
ReceiveBufferMemory=2M<br />
<br />
[ndbd default]<br />
NoOfReplicas=2  ## data num<br />
DataMemory=2048M<br />
IndexMemory=640M<br />
<br />
LockPagesInMainMemory=1<br />
NoOfFragmentLogFiles=300<br />
SchedulerSpinTimer=400<br />
SchedulerExecutionTimer=100<br />
RealTimeScheduler=1<br />
TimeBetweenGlobalCheckpoints=1000<br />
TimeBetweenEpochs=200<br />
RedoBuffer=32M<br />
TimeBetweenLocalCheckpoints=6<br />
<br />
MaxNoOfOrderedIndexes=512<br />
MaxNoOfConcurrentOperations=100000<br />
<br />
## mng<br />
[ndb_mgmd]<br />
NodeId=1<br />
hostname=10.188.68.45<br />
datadir=/usr/local/app/mysql-cluster/<br />
<br />
[ndb_mgmd]<br />
NodeId=2<br />
hostname=10.188.68.46<br />
datadir=/usr/local/app/mysql-cluster/<br />
<br />
<br />
## data<br />
[ndbd]<br />
NodeId=11<br />
hostname=10.188.68.45<br />
datadir=/usr/local/app/mysql/data<br />
StopOnError=0<br />
StartPartialTimeout=1000<br />
StartPartitionedTimeout=1000<br />
TransactionDeadLockDetectionTimeOut=60000<br />
[ndbd]<br />
NodeId=12<br />
hostname=10.188.68.46<br />
datadir=/usr/local/app/mysql/data<br />
StopOnError=0<br />
StartPartialTimeout=1000<br />
StartPartitionedTimeout=1000<br />
TransactionDeadLockDetectionTimeOut=60000<br />
 <br />
## sql<br />
[mysqld]<br />
NodeId=21<br />
hostname=10.188.68.45<br />
[mysqld]<br />
NodeId=22<br />
hostname=10.188.68.46<br />
[mysqld]<br />
<br />
[mysqld]]]></description>
            <dc:creator>XIELEI YANG</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Thu, 16 Jan 2025 10:28:12 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,730450,730450#msg-730450</guid>
            <title>MySQL NDB Cluster 8.4 - What&#039;s new (no replies)</title>
            <link>https://forums.mysql.com/read.php?25,730450,730450#msg-730450</link>
            <description><![CDATA[ MySQL NDB Cluster 8.4 - What&#039;s new<br />
- <a href="https://blogs.oracle.com/mysql/post/mysql-ndb-cluster-84-whats-new"  rel="nofollow">https://blogs.oracle.com/mysql/post/mysql-ndb-cluster-84-whats-new</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Wed, 30 Oct 2024 23:28:32 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,728063,728063#msg-728063</guid>
            <title>MySQL NDB Cluster and MCM:  TLS (no replies)</title>
            <link>https://forums.mysql.com/read.php?25,728063,728063#msg-728063</link>
            <description><![CDATA[ MySQL NDB Cluster and MCM:  TLS<br />
- <a href="https://blogs.oracle.com/mysql/post/ndb-tls-with-mcm"  rel="nofollow">https://blogs.oracle.com/mysql/post/ndb-tls-with-mcm</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Tue, 22 Oct 2024 15:21:52 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,724783,724783#msg-724783</guid>
            <title>MySQL NDB Cluster:  Replication (no replies)</title>
            <link>https://forums.mysql.com/read.php?25,724783,724783#msg-724783</link>
            <description><![CDATA[ MySQL NDB Cluster:  Replication<br />
- <a href="https://blogs.oracle.com/mysql/post/introduction-to-mysql-ndb-cluster-replication"  rel="nofollow">https://blogs.oracle.com/mysql/post/introduction-to-mysql-ndb-cluster-replication</a><br />
- <a href="https://blogs.oracle.com/mysql/post/mysql-ndb-cluster-replication-singlechannel-replication"  rel="nofollow">https://blogs.oracle.com/mysql/post/mysql-ndb-cluster-replication-singlechannel-replication</a><br />
- <a href="https://blogs.oracle.com/mysql/post/mysql-ndb-cluster-replication-dualchannel-replication-for-redundancy"  rel="nofollow">https://blogs.oracle.com/mysql/post/mysql-ndb-cluster-replication-dualchannel-replication-for-redundancy</a><br />
- <a href="https://blogs.oracle.com/mysql/post/mysql-ndb-cluster-replication-circular-replication-for-activeactive"  rel="nofollow">https://blogs.oracle.com/mysql/post/mysql-ndb-cluster-replication-circular-replication-for-activeactive</a><br />
- <a href="https://blogs.oracle.com/mysql/post/mysql-ndb-cluster-replication-circular-replication-for-activeactive-clusters"  rel="nofollow">https://blogs.oracle.com/mysql/post/mysql-ndb-cluster-replication-circular-replication-for-activeactive-clusters</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Wed, 12 Jun 2024 23:36:45 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,724591,724591#msg-724591</guid>
            <title>A question about epoch boundary in system-wide recovery (2 replies)</title>
            <link>https://forums.mysql.com/read.php?25,724591,724591#msg-724591</link>
            <description><![CDATA[ Hey guys,<br />
<br />
I have been reading this article of Frazer Clement&#039;s lately: <a href="https://messagepassing.blogspot.com/2011/12/eventual-consistency-in-mysql-cluster.html"  rel="nofollow">https://messagepassing.blogspot.com/2011/12/eventual-consistency-in-mysql-cluster.html</a>. It got an excellent description of &#039;epoch&#039;. But there is one sentence I am not sure I understand: Epoch boundaries act as markers in the flow of row events generated by each node, which are then used as consistent points to recover to.<br />
<br />
I use the following scenario to explain my confusion: suppose at some point the NDB kernel requests all the nodes to persist last second of data changes to disk; and before that request, all data changes &lt;= epoch 100 have been persisted to disk. After the request, some nodes do the job and eventually changes in epoch 101-110 are flushed to the REDO log; but some don&#039;t, for example, because of a busy disk sub-system. Then a system-wide crash strikes.<br />
<br />
My question is: in the following system-wide recovery, are all the nodes recovered to epoch 100 uniformly, or each node is recovered to the largest epoch in its REDO log so that some nodes are recovered to epoch 100 but others are recovered to epoch 110?<br />
<br />
It seems Frazer Clement&#039;s statement implies the first case to me. But I need to make sure about this.]]></description>
            <dc:creator>Alex Ou</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Sat, 01 Jun 2024 07:41:35 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,724590,724590#msg-724590</guid>
            <title>Need help to review a serializability implementation for MySQL Cluster (8 replies)</title>
            <link>https://forums.mysql.com/read.php?25,724590,724590#msg-724590</link>
            <description><![CDATA[ Hey guys,<br />
<br />
I&#039;ve recently made some progress in the field of consistency(C in ACID). Among other things, I&#039;ve developed a serializability implementation for MySQL Cluster(NDB Cluster) to test my ideas and you are invited to peer-review it for me. I believe it is the fifth one in commercial database systems after: MySQL InnoDB&#039;s 2PL, PostgreSQL&#039;s Serializable Snapshot Isolation, Google&#039;s Spanner&#039;s isolation level(I gave a proof in Appendix D of my article, the google guys<br />
may not have known this), CockroachDB&#039;s timestamp-based serializability implementation. The aim is to solve consistent, large(usually implies<br />
a distributed architecture) and performance-boosted OLTP application problems, which could be daunting for those who care about consistency and<br />
serializability. This solution to the serializability problem is a 2nd-tier one, which means it doesn&#039;t require any coding. So as long as you can<br />
manage a MySQL Cluster, you can readily deploy and test your application with it. <br />
<br />
This on-going project is hosted @ <a href="https://github.com/creamyfish/conflict_serializability"  rel="nofollow">https://github.com/creamyfish/conflict_serializability</a><br />
<br />
Current evaluation(mainly in Example 16 and Theorem 4‘ in my article) indicates it should be able to provide both consistency and performance to a fairly complex(comparing with TPCC, the warehouse like benchmark) OLTP application if it is deployed in a MySQL Cluster. However I believe testing it in other applications is necessary to come to the conclusion that whether it is able to provide both consistency and performance to many, if not most OLTP applications. So you are also invited to test your application with it to help me assess it. I will try to provide service for that.<br />
<br />
Come check it out if you are interested in consistency and serializability. Your help is highly appreciated!]]></description>
            <dc:creator>Alex Ou</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Fri, 02 Jan 2026 03:03:36 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,715390,715390#msg-715390</guid>
            <title>Error 1064 Duplicate entry &#039;ndbcluster-96&#039; for key &#039;tables.engine&#039; (7 replies)</title>
            <link>https://forums.mysql.com/read.php?25,715390,715390#msg-715390</link>
            <description><![CDATA[ I have a production 8.0.33-cluster MySQL Cluster Community Server.<br />
it works fine in the last 6 months until today.<br />
There are 28 working databases in it.<br />
<br />
Since today I can&#039;t create any table in any dbase because it show always this error:<br />
Error 1064 Duplicate entry &#039;ndbcluster-96&#039; for key &#039;tables.engine&#039;<br />
<br />
doesn&#039;t matter the db name or table name, the errori is always the same.<br />
For sure there is no duplicate vlues cause i used a new empty database with no tables into it.<br />
<br />
Any help please cause online i tried anything in the last 12 hrs but nothing works.<br />
I suppose cluster is not sync or an engine problem.<br />
I can not reinstall all by 0 it&#039;s a production server.<br />
Waiting your help.<br />
Willing to pay if someone wants to assist me through my share screen or anydesk.<br />
Thanks]]></description>
            <dc:creator>Tony Soprano</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Wed, 24 Jan 2024 13:34:02 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,713312,713312#msg-713312</guid>
            <title>Error 4009 (3 replies)</title>
            <link>https://forums.mysql.com/read.php?25,713312,713312#msg-713312</link>
            <description><![CDATA[ Hello,<br />
<br />
I am making a project using 8 data nodes, and 47 sql nodes. Here&#039;s the config.ini setting in ndb management server:<br />
<br />
[MGM]<br />
DataDir=/usr/clustergo<br />
HostName=192.168.1.1<br />
<br />
[DB default]<br />
DataDir=/usr/local/mysql/cluster<br />
NoOfReplicas=2<br />
<br />
## MEMORY MANAGEMENT<br />
DataMemory=200G<br />
StringMemory=25<br />
<br />
## TRANSACTION<br />
MaxNoOfConcurrentTransactions=4000000<br />
MaxNoOfConcurrentOperations=8000000<br />
<br />
## TRANSACTION RESOURCE ALLOCATION<br />
TransactionMemory=20G<br />
<br />
## LOGGING AND CHECK POINTS<br />
FragmentLogFileSize=32M<br />
NoOfFragmentLogFiles=600<br />
EnableRedoControl=1<br />
<br />
## METADATA OBJECTS: it defines pool sizes for metadata objects.<br />
MaxNoOfTables=10240<br />
MaxNoOfOrderedIndexes=2560<br />
MaxNoOfUniqueHashIndexes=2560<br />
MaxNoOfAttributes=1200000<br />
MaxNoOfTriggers=2560<br />
MaxNoOfConcurrentSubOperations=1024<br />
<br />
## BOOLEAN PARAMETERS<br />
CompressedLCP=1<br />
LockPagesInMainMemory=1<br />
ODirect=1<br />
<br />
## CONTROLLING TIMEOUT, INTERVALS AND DISK PAGING<br />
TimeBetweenInactiveTransactionAbortCheck=4000<br />
TransactionDeadlockDetectionTimeout=12000<br />
<br />
## Buffering and logging<br />
RedoBuffer=128M<br />
<br />
## CONTROLLING LOG MESSAGE<br />
LogLevelStartup=1<br />
LogLevelShutdown=1<br />
LogLevelCheckpoint=8<br />
LogLevelNodeRestart=15<br />
LogLevelConnection=8<br />
LogLevelError=8<br />
LogLevelCongestion=1<br />
MemReportFrequency=30<br />
<br />
## BACKUP CONFIG<br />
BackupMaxWriteSize=10M<br />
BackupDataBufferSize=26M<br />
BackupLogBufferSize=32M<br />
BackupReportFrequency=10<br />
<br />
## MULTITHREADING CONFIG<br />
AutomaticThreadConfig=1<br />
<br />
## PARAMETER FOR SEND BUFFER MEMORY ALLOCATION<br />
<br />
TotalSendBufferMemory=128M<br />
<br />
##DISK DATA BUFFERING PARAMETER<br />
DiskPageBufferEntries=100<br />
DiskPageBufferMemory=1024M<br />
SharedGlobalMemory=160M<br />
<br />
<br />
## NDB CLUSTER REALTIME PERFORMANCE<br />
SpinMethod=DatabaseMachineSpinning<br />
SchedulerExecutionTimer=100<br />
<br />
[DB]<br />
HostName=192.168.1.2<br />
LockExecuteThreadToCPU=1<br />
LockMaintThreadsToCPU=0<br />
<br />
[DB]<br />
HostName=192.168.1.3<br />
LockExecuteThreadToCPU=1<br />
LockMaintThreadsToCPU=0<br />
.<br />
. ## and so on<br />
.<br />
[API]<br />
NodeId=46<br />
<br />
[API]<br />
NodeId=47<br />
HostName=192.168.1.30<br />
<br />
###<br />
<br />
And whenever there is a large request. It got error 4009, like API (sqlnode) suddenly cannot connected to DB (datanode).<br />
<br />
Here&#039;s log from ndb_1_cluster.log (ndb management):<br />
2024-01-05 16:50:16 [MgmtSrvr] INFO     -- Node 4: Index usage is 0%(20523 32K pages of total 5735985)<br />
2024-01-05 16:50:19 [MgmtSrvr] INFO     -- Node 3: Data usage is 12%(816695 32K pages of total 6533144)<br />
2024-01-05 16:50:19 [MgmtSrvr] INFO     -- Node 3: Index usage is 0%(20456 32K pages of total 5736905)<br />
2024-01-05 16:50:30 [MgmtSrvr] ALERT    -- Node 9: Node 47 Disconnected<br />
2024-01-05 16:50:30 [MgmtSrvr] INFO     -- Node 9: Communication to Node 47 closed<br />
2024-01-05 16:50:30 [MgmtSrvr] INFO     -- Node 7: Communication to Node 47 closed<br />
2024-01-05 16:50:30 [MgmtSrvr] INFO     -- Node 3: Communication to Node 47 closed<br />
2024-01-05 16:50:30 [MgmtSrvr] INFO     -- Node 6: Communication to Node 47 closed<br />
2024-01-05 16:50:30 [MgmtSrvr] INFO     -- Node 4: Communication to Node 47 closed<br />
2024-01-05 16:50:30 [MgmtSrvr] INFO     -- Node 5: Communication to Node 47 closed<br />
2024-01-05 16:50:30 [MgmtSrvr] INFO     -- Node 2: Communication to Node 47 closed<br />
2024-01-05 16:50:30 [MgmtSrvr] ALERT    -- Node 2: Node 47 Disconnected<br />
2024-01-05 16:50:30 [MgmtSrvr] INFO     -- Node 8: Communication to Node 47 closed<br />
2024-01-05 16:50:30 [MgmtSrvr] ALERT    -- Node 6: Node 47 Disconnected<br />
2024-01-05 16:50:30 [MgmtSrvr] ALERT    -- Node 7: Node 47 Disconnected<br />
2024-01-05 16:50:30 [MgmtSrvr] ALERT    -- Node 4: Node 47 Disconnected<br />
2024-01-05 16:50:30 [MgmtSrvr] ALERT    -- Node 5: Node 47 Disconnected<br />
2024-01-05 16:50:30 [MgmtSrvr] ALERT    -- Node 8: Node 47 Disconnected<br />
2024-01-05 16:50:30 [MgmtSrvr] ALERT    -- Node 3: Node 47 Disconnected<br />
2024-01-05 16:50:31 [MgmtSrvr] INFO     -- Node 6: Data usage is 12%(821829 32K pages of total 6532706)<br />
2024-01-05 16:50:31 [MgmtSrvr] INFO     -- Node 6: Index usage is 0%(20894 32K pages of total 5731771)<br />
2024-01-05 16:50:33 [MgmtSrvr] INFO     -- Node 6: Communication to Node 47 opened<br />
2024-01-05 16:50:33 [MgmtSrvr] INFO     -- Node 3: Communication to Node 47 opened<br />
2024-01-05 16:50:33 [MgmtSrvr] INFO     -- Node 8: Communication to Node 47 opened<br />
2024-01-05 16:50:33 [MgmtSrvr] INFO     -- Node 5: Communication to Node 47 opened<br />
2024-01-05 16:50:33 [MgmtSrvr] INFO     -- Node 9: Communication to Node 47 opened<br />
2024-01-05 16:50:33 [MgmtSrvr] INFO     -- Node 7: Communication to Node 47 opened<br />
2024-01-05 16:50:33 [MgmtSrvr] INFO     -- Node 2: Communication to Node 47 opened<br />
2024-01-05 16:50:34 [MgmtSrvr] INFO     -- Node 4: Communication to Node 47 opened<br />
2024-01-05 16:50:34 [MgmtSrvr] INFO     -- Node 9: Node 47 Connected<br />
2024-01-05 16:50:34 [MgmtSrvr] INFO     -- Node 6: Node 47 Connected<br />
2024-01-05 16:50:34 [MgmtSrvr] INFO     -- Node 8: Node 47 Connected<br />
2024-01-05 16:50:34 [MgmtSrvr] INFO     -- Node 9: Node 47: API mysql-8.0.35 ndb-8.0.35<br />
2024-01-05 16:50:34 [MgmtSrvr] INFO     -- Node 8: Node 47: API mysql-8.0.35 ndb-8.0.35<br />
2024-01-05 16:50:34 [MgmtSrvr] INFO     -- Node 6: Node 47: API mysql-8.0.35 ndb-8.0.35<br />
2024-01-05 16:50:34 [MgmtSrvr] INFO     -- Node 2: Node 47 Connected<br />
2024-01-05 16:50:34 [MgmtSrvr] INFO     -- Node 7: Node 47 Connected<br />
2024-01-05 16:50:34 [MgmtSrvr] INFO     -- Node 7: Node 47: API mysql-8.0.35 ndb-8.0.35<br />
2024-01-05 16:50:34 [MgmtSrvr] INFO     -- Node 2: Node 47: API mysql-8.0.35 ndb-8.0.35<br />
2024-01-05 16:50:35 [MgmtSrvr] INFO     -- Node 3: Node 47 Connected<br />
2024-01-05 16:50:35 [MgmtSrvr] INFO     -- Node 4: Node 47 Connected<br />
2024-01-05 16:50:35 [MgmtSrvr] INFO     -- Node 5: Node 47 Connected<br />
2024-01-05 16:50:35 [MgmtSrvr] INFO     -- Node 4: Node 47: API mysql-8.0.35 ndb-8.0.35<br />
2024-01-05 16:50:35 [MgmtSrvr] INFO     -- Node 3: Node 47: API mysql-8.0.35 ndb-8.0.35<br />
2024-01-05 16:50:35 [MgmtSrvr] INFO     -- Node 5: Node 47: API mysql-8.0.35 ndb-8.0.35<br />
<br />
<br />
So my guess there is something wrong with the connection between api and db. <br />
Although they are in the same block IP, and there is no firewall set-up in between. <br />
I have checked that Ubuntu 20 do not have SELinux, and UFW status is inactive. I also do not set-up any IP tables. <br />
<br />
and for the apps, we are using web application, which although in different block IP (192.168.2.xx), It able to ping under 1ms. there is no firewall, SElinux, ufw, or iptables as well.<br />
<br />
but still for a long query it can takes 4 sec to 4 minutes to complete if the traffic is not that much crowded.<br />
 <br />
If it is in high time access, users often found error 4009, which makes another error code 1296, 1297, or even mysql has gone away.<br />
I have been working on this for 2 days, and I can&#039;t find the cause.<br />
please help, thank you.]]></description>
            <dc:creator>Nisa Apriliyanti</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Wed, 10 Jan 2024 12:34:29 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,711923,711923#msg-711923</guid>
            <title>MySQL Cluster (NDB) spread data (rows) to 4 data-nodes servers (1 reply)</title>
            <link>https://forums.mysql.com/read.php?25,711923,711923#msg-711923</link>
            <description><![CDATA[ I want to spread my MySQL rows to 4 servers (Horizontal sharding). I searched, and I found that I have to use NDB cluster (MySQL cluster). I made a MySQL server/client with NDB manager server and 4 data nodes servers and this is my manager configuration :<br />
<br />
[ndbd default]<br />
NoOfReplicas=1<br />
<br />
[ndb_mgmd]<br />
NodeId=1<br />
hostname=192.168.159.133<br />
datadir=/var/lib/mysql-cluster<br />
<br />
[ndbd]<br />
NodeId=2<br />
hostname=192.168.159.131<br />
datadir=/home/db<br />
<br />
[ndbd]<br />
NodeId=3<br />
hostname=192.168.159.132<br />
datadir=/home/db<br />
<br />
[ndbd]<br />
NodeId=4<br />
hostname=192.168.159.137<br />
datadir=/home/db<br />
<br />
[mysqld]<br />
NodeId=20<br />
hostname=192.168.159.133<br />
<br />
I know replication means make a backup of each row to another server and I don&#039;t want it (I just want to spread my data (rows) to 4 servers, not making backup) so I set NoOfReplicas to 1 to have 4 nodegroups ...<br />
<br />
Am I right ? Does my data (rows) spread on that 4 data-node servers ?<br />
<br />
If I right, what is different between doing this, or just using Innodb and make foreign partitions (on remote servers) ? Because it&#039;s a lot easier to make partition (key) by my own and attach each partition to remote servers !!!<br />
<br />
Is using NDB has more advantage (about what I want to do (spread data, not replication (making backup))) ?<br />
<br />
And final question, is it right to have NDBCLUSTER table with also own partitions ???!!! What is that mean, anyway ? For example, I have 4 data-nodes and for a NDBCLUSTER table, I create 8 partitions too (key partition) ! How that&#039;s work? Does it create 8 partitions on each data-node ? Or just split those partitions on those 4 data-nodes server (for example, each data-node holds 2 partitions) ?]]></description>
            <dc:creator>Ali Saeidi</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Tue, 05 Dec 2023 19:19:08 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,711314,711314#msg-711314</guid>
            <title>Error while trying ndb_restore (6 replies)</title>
            <link>https://forums.mysql.com/read.php?25,711314,711314#msg-711314</link>
            <description><![CDATA[ Hello,<br />
I am a student and still unfamilliar with mysql cluster. I am trying to do backup and restore.<br />
<br />
1. I have config in config.ini for back up as followed:<br />
<br />
## BackUp setting<br />
## BackupDataDir automatically follow DataDir /home/user/BACKUP<br />
BackupLogBufferSize=16M<br />
BackupReportFrequency=10<br />
<br />
2. This is the cluster that has been configured.<br />
<br />
ndb_mgm&gt; show<br />
Cluster Configuration<br />
---------------------<br />
[ndbd(NDB)]     2 node(s)<br />
id=2    @192.168.1.236  (mysql-8.0.35 ndb-8.0.35, Nodegroup: 0, *)<br />
id=3    @192.168.1.237  (mysql-8.0.35 ndb-8.0.35, Nodegroup: 0)<br />
<br />
[ndb_mgmd(MGM)] 1 node(s)<br />
id=1    @192.168.1.238  (mysql-8.0.35 ndb-8.0.35)<br />
<br />
[mysqld(API)]   3 node(s)<br />
id=10   @192.168.1.239  (mysql-8.0.35 ndb-8.0.35)<br />
id=11   @192.168.1.240  (mysql-8.0.35 ndb-8.0.35)<br />
id=12   @192.168.1.243  (mysql-8.0.35 ndb-8.0.35)<br />
<br />
<br />
3. I have done backup at ndb_mgm<br />
<br />
ndb_mgm &gt; start backup<br />
Connected to Management Server at: localhost:1186<br />
Waiting for completed, this may take several minutes<br />
Node 3: Backup 1 started from node 1<br />
Node 2: Local backup status: backup 1 started from node 1<br />
 #Records: 14001933 #LogRecords: 243288<br />
 Data: 832059592 bytes Log: 21435756 bytes<br />
.<br />
.<br />
.<br />
Node 3: Backup 1 started from node 1 completed<br />
 StartGCP: 201318 StopGCP: 201401<br />
 #Records: 28027692 #LogRecords: 656042<br />
 Data: 1665876984 bytes Log: 55078372 bytes<br />
<br />
4. then, I try deleting some tables.<br />
<br />
5. after that, I want to try restoring it. However there are some error, that I can&#039;t find the solution. <br />
<br />
######First error when I shutdown ndb cluster, then only activate ndb_mgmd.<br />
<br />
datanode236:/home/user/# ndb_restore -n 2 -b 1 -m --ndb-connectstring=192.168.1.238:1186 --ndb-nodeid=1 --backup-path=BACKUP/BACKUP-1<br />
Nodeid = 2<br />
Backup Id = 1<br />
backup path = BACKUP/BACKUP-1<br />
2023-11-28 08:37:48 [NdbApi] INFO     -- Configuration error: Error: Could not alloc node id at 192.168.1.238:1186: Id 1 configured as ndb_mgmd(MGM), connect attempted as mysqld(API).<br />
Could not connect to cluster: &#039;1 - Configuration error: Error: Could not alloc node id at 192.168.1.238:1186: Id 1 configured as ndb_mgmd(MGM), connect attempted as mysqld(API).&#039;<br />
<br />
<br />
########Second Error when ndb cluster all running. At datanode 192.168.1.236:<br />
<br />
datanode236:/home/user/#ndb_restore -n 2 -b 1 -m --ndb-connectstring=192.168.1.238:1186 --backup-path=BACKUP/BACKUP-1<br />
Nodeid = 2<br />
Backup Id = 1<br />
backup path = BACKUP/BACKUP-1<br />
2023-11-28 08:38:06 [NdbApi] INFO     -- Configuration error: Error: Could not alloc node id at 192.168.1.238:1186: Connection done from wrong host ip 192.168.1.236.<br />
Could not connect to cluster: &#039;1 - Configuration error: Error: Could not alloc node id at 192.168.1.238:1186: Connection done from wrong host ip 192.168.1.236.&#039;<br />
<br />
Please help if you know what I miss.<br />
Thank you.]]></description>
            <dc:creator>Nisa Apriliyanti</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Wed, 29 Nov 2023 08:57:37 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,709969,709969#msg-709969</guid>
            <title>NBBCluster not sync autoincrement values between mysql server nodes (2 replies)</title>
            <link>https://forums.mysql.com/read.php?25,709969,709969#msg-709969</link>
            <description><![CDATA[ I have a NDBcluster on 2 physical servers with this layout:<br />
vm1 ndb manager + mysql server #1<br />
vm2 mysql server #2<br />
vm3 data node #1<br />
vm4 data node #2<br />
<br />
i import many dbase on vm1 using mysql commnand line.<br />
i can see and access all data from both vm1 and vm2.<br />
but after 2 months of perfect usage,<br />
vm2 mysql server if i insert data in any table of any dbase start to use<br />
weird and not syncronized value for autoincrement of any id primary key.<br />
<br />
example:<br />
on vm1: insert into user (name,email) values (&quot;tony&quot;,&quot;t@t.com&quot;)<br />
insert into user (name,email) values (&quot;john&quot;,&quot;f@f.com&quot;)<br />
result on both vm1 and vm2:<br />
id=8 , name=tony, email=t@t.com<br />
id=9 , name=john, email=f@f.com<br />
<br />
then i do on vm2:<br />
insert into user (name,email) values (&quot;kris&quot;,&quot;k@k.com&quot;)<br />
result on both vm1 and vm2:<br />
id=8 , name=tony, email=t@t.com<br />
id=9 , name=john, email=f@f.com<br />
id=521 , name=kris, email=k@k.com<br />
<br />
Can someone explain me why this happen? why after 2 months and how to fix this please!]]></description>
            <dc:creator>Tony Soprano</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Sun, 17 Sep 2023 14:24:55 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,709787,709787#msg-709787</guid>
            <title>XA transaction causes Mysql crash in 8.0.34 (no replies)</title>
            <link>https://forums.mysql.com/read.php?25,709787,709787#msg-709787</link>
            <description><![CDATA[ I have the following snippet:<br />
<br />
# cat xacrash.sql<br />
drop database if exists newdb;<br />
create database newdb;<br />
use newdb;<br />
create table innodbtable(id int) engine=innodb;<br />
xa begin &#039;innodbtx&#039;;<br />
insert into innodbtable values(3);<br />
xa end &#039;innodbtx&#039;;<br />
xa prepare &#039;innodbtx&#039;;<br />
xa commit &#039;innodbtx&#039;;<br />
create table ndbtable(id int) engine=ndbcluster;<br />
xa begin &#039;ndbtx&#039;;<br />
insert into ndbtable values(3);<br />
xa end &#039;ndbtx&#039;;<br />
xa prepare &#039;ndbtx&#039;;<br />
xa commit &#039;ndbtx&#039;;<br />
<br />
When running against 8.0.28 works without problems, but crashes connection in 8.0.34<br />
<br />
--------------<br />
xa prepare &#039;ndbtx&#039;<br />
--------------<br />
<br />
ERROR 2013 (HY000) at line 14: Lost connection to MySQL server during query<br />
<br />
And writes a crash report<br />
<br />
Aug 16 10:08:54 hostname mysqld[606104]: 2023-08-16T08:08:54Z UTC - mysqld got signal 11 ;<br />
Aug 16 10:08:54 hostname mysqld[606104]: Most likely, you have hit a bug, but this error can also be caused by malfunctioning hardware.<br />
Aug 16 10:08:54 hostname mysqld[606104]: BuildID[sha1]=a570f2d544031bf853200e0bb758215b0b317fb1<br />
Aug 16 10:08:54 hostname mysqld[606104]: Thread pointer: 0x7fa758000fe0<br />
Aug 16 10:08:54 hostname mysqld[606104]: Attempting backtrace. You can use the following information to find out<br />
Aug 16 10:08:54 hostname mysqld[606104]: where mysqld died. If you see no messages after this, something went<br />
Aug 16 10:08:54 hostname mysqld[606104]: terribly wrong...<br />
Aug 16 10:08:54 hostname mysqld[606104]: stack_bottom = 7fa7b42edc10 thread_stack 0x100000<br />
Aug 16 10:08:54 hostname mysqld[606104]: /usr/sbin/mysqld(my_print_stacktrace(unsigned char const*, unsigned long)+0x41) [0x2131091]<br />
Aug 16 10:08:54 hostname mysqld[606104]: /usr/sbin/mysqld(print_fatal_signal(int)+0x2a2) [0xfee7d2]<br />
Aug 16 10:08:54 hostname mysqld[606104]: /usr/sbin/mysqld(handle_fatal_signal+0xa5) [0xfee985]<br />
Aug 16 10:08:54 hostname mysqld[606104]: /lib64/libpthread.so.0(+0x12cf0) [0x7fa7dcabbcf0]<br />
Aug 16 10:08:54 hostname mysqld[606104]: Trying to get some variables.<br />
Aug 16 10:08:54 hostname mysqld[606104]: Some pointers may be invalid and cause the dump to abort.<br />
Aug 16 10:08:54 hostname mysqld[606104]: Query (7fa7581af9c0): xa prepare &#039;ndbtx&#039;<br />
Aug 16 10:08:54 hostname mysqld[606104]: Connection ID (thread ID): 14<br />
Aug 16 10:08:54 hostname mysqld[606104]: Status: NOT_KILLED<br />
Aug 16 10:08:54 hostname mysqld[606104]: The manual page at <a href="http://dev.mysql.com/doc/mysql/en/crashing.html"  rel="nofollow">http://dev.mysql.com/doc/mysql/en/crashing.html</a> contains<br />
Aug 16 10:08:54 hostname mysqld[606104]: information that should help you find out what is causing the crash.<br />
<br />
<br />
# rpm -qi mysql-cluster-community-server<br />
Name        : mysql-cluster-community-server<br />
Version     : 8.0.34<br />
Release     : 1.el8<br />
Architecture: x86_64]]></description>
            <dc:creator>Raul Andres</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Wed, 16 Aug 2023 08:14:50 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,708937,708937#msg-708937</guid>
            <title>Mysql NDB Cluster error while restoration of data &quot;ERROR 1114 (HY000) at line 25: The table &#039;table1&#039; is full&quot; (1 reply)</title>
            <link>https://forums.mysql.com/read.php?25,708937,708937#msg-708937</link>
            <description><![CDATA[ I have created mysql NDB Cluster with two data nodes and two mysql servers.<br />
below is the configuration of ndb_mgmd.<br />
<br />
$cat /usr/mysql-cluster/config.ini<br />
[ndbd default]<br />
NoOfReplicas=2<br />
DataMemory=1024M<br />
IndexMemory=54M<br />
MaxNoOfConcurrentOperations=100000<br />
MaxNoOfLocalOperations=110000<br />
MaxNoOfTables=4096<br />
MaxNoOfTriggers=3500<br />
MaxNoOfAttributes=25000 <br />
<br />
[ndb_mgmd]<br />
hostname=172.31.16.19<br />
datadir=/usr/mysql-cluster<br />
NodeId=1<br />
<br />
[ndbd]<br />
hostname=172.31.20.59	<br />
NodeId=11<br />
datadir=/usr/local/mysql/data<br />
<br />
[ndbd]<br />
hostname=172.31.16.136<br />
NodeId=12<br />
datadir=/usr/local/mysql/data<br />
<br />
[mysqld]<br />
hostname=172.31.16.136<br />
NodeId=21<br />
<br />
[mysqld]<br />
hostname=172.31.20.59<br />
NodeId=22<br />
<br />
<br />
When i am trying to restore the databackup .sql file. which is around 2.2 GB in size at that time i am getting error of table is full.<br />
i have checked the disk storage but it is showing available.<br />
Please suggest, i am stuck with the issue from last two days.]]></description>
            <dc:creator>purval patel</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Tue, 02 May 2023 13:48:06 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,707783,707783#msg-707783</guid>
            <title>need to add new ndb data node to my cluster (1 reply)</title>
            <link>https://forums.mysql.com/read.php?25,707783,707783#msg-707783</link>
            <description><![CDATA[ Dear,<br />
we have ndb cluster 7.4.10 with mysql version is 5.6.28 ndb-7.4.10<br />
we have 2 data nodes with replica 2.<br />
can we add another third node to this cluster?<br />
<br />
why when we start the two nodes the commands hungs. for example when i try to use use DB1 it hangs <br />
why it is hungging? <br />
<br />
please, advise.]]></description>
            <dc:creator>Tony Tawk</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Fri, 10 Mar 2023 10:53:37 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,707570,707570#msg-707570</guid>
            <title>Error with Indexes (1 reply)</title>
            <link>https://forums.mysql.com/read.php?25,707570,707570#msg-707570</link>
            <description><![CDATA[ I added to more nodes to my cluster. I put them in a separate node group and everything ran fine for a week. Then I noticed that the new nodes didn&#039;t have much data so I ran the alter table command to redistribute the data. During that, the cluster crashed. I could not restart it and was forced to restore from backup. Now, however, I get this error:<br />
<br />
| xxxx | analyze | Error    | Got error 4721 &#039;Mysqld: index stats thread not open for requests&#039; from NDB |<br />
| xxxx | analyze | Warning  | index stats (RPK) for key vote_id: unexpected error 4721                   |<br />
| xxxx | analyze | Warning  | index stats (RPK) for key vote_id: unexpected error 4721                   |<br />
| xxxx | analyze | status   | Operation failed     <br />
<br />
Everything is working very slowly so I assume that indexes are not being used. I did not import indexes the data restoration, but did run the rebuild command separately. Does anyone have any idea what to do about this problem?]]></description>
            <dc:creator>Jeff Steele</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Sat, 25 Feb 2023 20:04:04 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,707474,707474#msg-707474</guid>
            <title>How to restart or recover data when all data nodes crash and then fail to complete start up due to frag log error in phase 4 (1 reply)</title>
            <link>https://forums.mysql.com/read.php?25,707474,707474#msg-707474</link>
            <description><![CDATA[ We&#039;ve been running an older version of MySQL Cluster 7.4.7 for many years with minimum configuration, containing 2 data nodes, 2 sql nodes, and 1 management node.<br />
After running an Alter Table statement to add 2 big integer columns to a table with 1,000,000 rows. the query failed and crashed the 1st data node. Upon running the query again it crashed the 2nd data node, bringing down the whole cluster.<br />
When trying to restart either data node, they both fail during start up calling  in phase 4 when reaching a frag file. see error below in logs.<br />
<br />
So the question is, is it possible to repair or have the data nodes ignore the frag file(s) that&#039;s stopping the start up process from completing? Or how do you get around this &quot;File has already been opened&quot; error? We tried moving the problematic S11.FragLog file but then errors get reported that a file is missing.<br />
If there is no way to fix these broken frag files, is there a way to recover the table data from a data node (such as using a separate tool to read/export the node&#039;s data stored on disk)?<br />
A more general question is how do you recover data when all data nodes in a cluster cannot start (say due a single corrupt file) and there&#039;s no separate backups available?<br />
<br />
<br />
$./ndbmtd<br />
...<br />
2023-02-11 06:05:13 [ndbd] INFO     -- LDM instance 0: Restored T1474F1 LCP 0 rows, 1 millis, 0 rows/s)<br />
2023-02-11 06:05:13 [ndbd] INFO     -- LDM instance 0: Restored T1477F0 LCP 161953 rows, 622 millis, 260374 rows/s)<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM instance 0: Restored T1477F1 LCP 163565 rows, 630 millis, 259626 rows/s)<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM instance 0: Restored T1482F0 LCP 1 rows, 1 millis, 1000 rows/s)<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM instance 0: Restored T1482F1 LCP 3 rows, 1 millis, 3000 rows/s)<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM instance 0: Restored LCP : 1114 fragments, 47359940 rows, 160001 millis, 295997 rows/s<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Completed fuzzy restore 1118 fragments (1118 from LCP, 0 by non-trans copy)<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Starting DD Undo log application<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Completed DD Undo log application<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Starting REDO log execution phase 0<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Node 3 ready to execute REDO log<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): All starting nodes ready to execute REDO log.  Phases completed = 0<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0):Ready to start execute REDO log phase, collect REDO log execution info phase completed<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Log part 0 will execute REDO log records from GCI 85012871 -&gt; 85013314 and last log file is number 11 and last MByte in this file is 13<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Log part 1 will execute REDO log records from GCI 85012871 -&gt; 85013314 and last log file is number 2 and last MByte in this file is 12<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Log part 2 will execute REDO log records from GCI 85012871 -&gt; 85013314 and last log file is number 6 and last MByte in this file is 6<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Log part 3 will execute REDO log records from GCI 85012871 -&gt; 85013314 and last log file is number 11 and last MByte in this file is 14<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Start executing REDO log for part 0<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Start executing REDO log for part 1<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Start executing REDO log for part 2<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Start executing REDO log for part 3<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Completed REDO log execution on part 1, ops executed = 0, bytes executed = 0,<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Log part 1 stats: ops skipped = 735, ops prepared 735, pages read = 8, GCIs executed = 444<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Completed REDO log execution on part 0, ops executed = 388, bytes executed = 7212,<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Log part 0 stats: ops skipped = 639, ops prepared 1027, pages read = 8, GCIs executed = 1283<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Completed REDO log execution on part 2, ops executed = 249, bytes executed = 49328,<br />
2023-02-11 06:05:14 [ndbd] INFO     -- LDM(0): Log part 2 stats: ops skipped = 7320, ops prepared 7569, pages read = 48, GCIs executed = 2080<br />
2023-02-11 06:05:15 [ndbd] INFO     -- open: &gt;/var/lib/mysql-cluster/data/ndb_3_fs/D11/DBLQH/S11.FragLog&lt; existing: &gt;/var/lib/mysql-cluster/data/ndb_3_fs/D11/DBLQH/S11.FragLog&lt;<br />
2023-02-11 06:05:15 [ndbd] INFO     -- OpenFiles::insert()<br />
2023-02-11 06:05:15 [ndbd] INFO     -- Error handler shutting down system<br />
2023-02-11 06:05:15 [ndbd] INFO     -- Error handler shutdown completed - exiting<br />
2023-02-11 06:05:18 [ndbd] ALERT    -- Node 3: Forced node shutdown completed. Occured during startphase 4. Caused by error 2807: &#039;File has already been opened(Internal error, programming error or missing error message, please report a bug). Temporary error, restart node&#039;.]]></description>
            <dc:creator>Rowan Drew</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Sat, 18 Feb 2023 07:20:33 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,707098,707098#msg-707098</guid>
            <title>NDB: stored grants: not intialized. (1 reply)</title>
            <link>https://forums.mysql.com/read.php?25,707098,707098#msg-707098</link>
            <description><![CDATA[ Attempting to get my first cluster going and adding users ran into this message.<br />
<br />
NDB: stored grants: not intialized.<br />
<br />
I followed these instructions: <br />
<a href="https://dev.mysql.com/doc/mysql-cluster-excerpt/8.0/en/mysql-cluster-privilege-synchronization.html"  rel="nofollow">https://dev.mysql.com/doc/mysql-cluster-excerpt/8.0/en/mysql-cluster-privilege-synchronization.html</a><br />
<br />
This is in a kubernetes environment and deployed with a bash script on boot. I have &quot;sleep 5&quot; after the server starts and forks away, This is in a file: <br />
<br />
<br />
GRANT NDB_STORED_USER ON *.* TO `root`@`localhost`       <br />
<br />
FLUSH PRIVILEGES;<br />
<br />
CREATE USER IF NOT EXISTS &#039;ndb_demo&#039;@&#039;%&#039; IDENTIFIED BY &#039;suuuuperseeeecret&#039;;<br />
<br />
Then I get the error and I&#039;m not finding any documentation that explains it.<br />
<br />
Should I sleep longer to let the sql server join the cluster?]]></description>
            <dc:creator>Ricky Bobby</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Wed, 04 Jan 2023 15:55:10 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,707080,707080#msg-707080</guid>
            <title>NDB 8.0 Example Doesn&#039;t Work (1 reply)</title>
            <link>https://forums.mysql.com/read.php?25,707080,707080#msg-707080</link>
            <description><![CDATA[ I&#039;m trying to follow this tutorial:  <a href="https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-config-starting.html"  rel="nofollow">https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-config-starting.html</a><br />
<br />
Attempting to start the second management node always dies.  The first node rejects the second.<br />
<br />
#First node started logs this: Refusing other node, it has different checksum: 0x24d61568, expected: 0x25d62474<br />
<br />
#Second node started logs this:-- Got CONFIG_CHECK_REF from node 1, error: 3, message: &#039;Wrong checksum&#039;, generation: 0, expected generation: 0, state: 1, expected state: 1 own-state: 1<br />
<br />
I copy and pasted the config and ONLY changed the host names and NodeId.<br />
<br />
It doesn&#039;t help if I start with --initial on one or both nodes.  Thoughts?]]></description>
            <dc:creator>Ricky Bobby</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Wed, 04 Jan 2023 15:13:05 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,707078,707078#msg-707078</guid>
            <title>MySQL NDB Cluster 8.0.31 Transparent Data Encryption (no replies)</title>
            <link>https://forums.mysql.com/read.php?25,707078,707078#msg-707078</link>
            <description><![CDATA[ MySQL NDB Cluster 8.0.31 Transparent Data Encryption<br />
- <a href="https://blogs.oracle.com/mysql/post/mysql-cluster-8031-transparent-data-encryption"  rel="nofollow">https://blogs.oracle.com/mysql/post/mysql-cluster-8031-transparent-data-encryption</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Thu, 22 Dec 2022 21:39:24 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,706885,706885#msg-706885</guid>
            <title>RH/Oracle Linux 9 Yum Repo Empty (2 replies)</title>
            <link>https://forums.mysql.com/read.php?25,706885,706885#msg-706885</link>
            <description><![CDATA[ I am going to add two more data nodes to my cluster and am in the process of setting up new servers. I am planning to use Oracle Linux 9. However, the yum repository for that version doesn&#039;t have any RPMs in it:<br />
<br />
<a href="http://repo.mysql.com/yum/mysql-cluster-8.0-community/el/9/x86_64/"  rel="nofollow">http://repo.mysql.com/yum/mysql-cluster-8.0-community/el/9/x86_64/</a><br />
<br />
Does anyone know if this is only temporary or will RPMs eventually be there? I normally use yum to keep my systems up to date.<br />
<br />
Thanks!]]></description>
            <dc:creator>Jeff Steele</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Fri, 02 Dec 2022 23:57:09 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,706794,706794#msg-706794</guid>
            <title>About High availability (2 replies)</title>
            <link>https://forums.mysql.com/read.php?25,706794,706794#msg-706794</link>
            <description><![CDATA[ Hi all, i&#039;ve installed mysql cluster via deb and apt.<br />
i followed this guide: <a href="https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/#repo-qg-apt-cluster-install"  rel="nofollow">https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/#repo-qg-apt-cluster-install</a><br />
-----------------------------------------------------<br />
i want to have 2 VM running management and SQL together <br />
and 2 VM for data node on.<br />
<br />
So it&#039;s possible to have mysqld and ndb_mgmd running on same VM x 2?<br />
i&#039;ve tried but it&#039;s not working.<br />
----------------------------------------------------------<br />
here my /etc/my.cnf on VM1 and VM2:<br />
[mysqld]<br />
ndbcluster<br />
<br />
[mysql_cluster]<br />
ndb-connectstring=dbmng1,dbmng2<br />
-----------------------------------------------------------<br />
here my config.ini on VM1 and VM2:<br />
[ndbd default]<br />
NoOfReplicas=2<br />
DataMemory=98M<br />
<br />
[ndb_mgmd]<br />
NodeId=1<br />
HostName=dbmng1<br />
DataDir=/var/lib/mysql-cluster<br />
<br />
[ndb_mgmd]<br />
NodeId=2<br />
HostName=dbmng2<br />
DataDir=/var/lib/mysql-cluster<br />
<br />
[ndbd]<br />
NodeId=3<br />
HostName=dbdata1<br />
DataDir=/usr/local/mysql/data<br />
<br />
[ndbd]<br />
NodeId=4<br />
HostName=dbdata2<br />
DataDir=/usr/local/mysql/data<br />
<br />
[mysqld]<br />
HostName=dbmng1<br />
<br />
[mysqld]<br />
HostName=dbmng2<br />
--------------------------------------------------]]></description>
            <dc:creator>domenico pandolfino</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Tue, 29 Nov 2022 09:56:20 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,706663,706663#msg-706663</guid>
            <title>Node2 &amp; Node3 Cluster requires this node to be started  with --initial (2 replies)</title>
            <link>https://forums.mysql.com/read.php?25,706663,706663#msg-706663</link>
            <description><![CDATA[ Hi all newbie here (well less than a newbie, idiot).<br />
<br />
I have a 3 node MySQL cluster that was installed via Docker (MySQL Docker Image 7.5.10-1.1.5), which this deployment was created by someone that isn&#039;t available to me anymore.  The DB is used for Grafana and each of the Grafana&#039;s are operational and the 3 Nodes Grafana DBs are in sync.<br />
<br />
The problem is on Node2 (Zoo2) and Node3 (Zoo3) the NDBD keeps restarting.  I am pretty sure the logging is telling me what do to with the &quot;Cluster requires this node to be started  with --initial&quot; log entry.  Though I can figure out what that really means or how to start the docker cluster node with &quot;--initial&quot;... because I am to stupid to figure it out with all the reading I have found on the internet about Docker/MySQL.<br />
<br />
I do a apologize for coming in here with &quot;Hat in Hand&quot; and not being able to understand this MySQL Cluster setup myself.  I hope not to be flamed to hard and someone will have pity on me.<br />
<br />
<br />
{&quot;log&quot;:&quot;2022-11-05 13:41:43 [ndbd] INFO     -- NDB start phase 1 completed\n&quot;,&quot;stream&quot;:&quot;stdout&quot;,&quot;time&quot;:&quot;2022-11-05T13:41:43.252099351Z&quot;}<br />
{&quot;log&quot;:&quot;2022-11-05 13:41:43 [ndbd] INFO     -- Start phase 2 completed\n&quot;,&quot;stream&quot;:&quot;stdout&quot;,&quot;time&quot;:&quot;2022-11-05T13:41:43.252102151Z&quot;}<br />
{&quot;log&quot;:&quot;2022-11-05 13:41:43 [ndbd] INFO     -- Phase 2 did more initialisations, master accepted our start, we started REDO log initialisations\n&quot;,&quot;stream&quot;:&quot;stdout&quot;,&quot;time&quot;:&quot;2022-11-05T13:41:43.252104554Z&quot;}<br />
{&quot;log&quot;:&quot;2022-11-05 13:41:43 [ndbd] INFO     -- Start NDB start phase 2\n&quot;,&quot;stream&quot;:&quot;stdout&quot;,&quot;time&quot;:&quot;2022-11-05T13:41:43.252108664Z&quot;}<br />
{&quot;log&quot;:&quot;2022-11-05 13:41:43 [ndbd] INFO     -- Request permission to start our node from master Starting\n&quot;,&quot;stream&quot;:&quot;stdout&quot;,&quot;time&quot;:&quot;2022-11-05T13:41:43.275526623Z&quot;}<br />
{&quot;log&quot;:&quot;2022-11-05 13:41:43 [ndbd] INFO     -- Cluster requires this node to be started  with --initial as partial start has been performed and this filesystem is unusable\n&quot;,&quot;stream&quot;:&quot;stdout&quot;,&quot;time&quot;:&quot;2022-11-05T13:41:43.282072895Z&quot;}<br />
{&quot;log&quot;:&quot;2022-11-05 13:41:43 [ndbd] INFO     -- DBDIH (Line: 2267) 0x00000002\n&quot;,&quot;stream&quot;:&quot;stdout&quot;,&quot;time&quot;:&quot;2022-11-05T13:41:43.282083458Z&quot;}<br />
{&quot;log&quot;:&quot;2022-11-05 13:41:43 [ndbd] INFO     -- Error handler shutting down system\n&quot;,&quot;stream&quot;:&quot;stdout&quot;,&quot;time&quot;:&quot;2022-11-05T13:41:43.282094445Z&quot;}<br />
{&quot;log&quot;:&quot;2022-11-05 13:41:43 [ndbd] INFO     -- Error handler shutdown completed - exiting\n&quot;,&quot;stream&quot;:&quot;stdout&quot;,&quot;time&quot;:&quot;2022-11-05T13:41:43.320431813Z&quot;}<br />
{&quot;log&quot;:&quot;2022-11-05 13:41:43 [ndbd] ALERT    -- Node 5: Forced node shutdown completed. Occured during startphase 3. Caused by error 2311: &#039;Conflict when selecting restart type(Internal error, programming error or missing error message, please report a bug). Temporary error, restart node&#039;.\n&quot;,&quot;stream&quot;:&quot;stdout&quot;,&quot;time&quot;:&quot;2022-11-05T13:41:43.375021266Z&quot;}<br />
<br />
f13e0be154f557317a34c6267b0a0847247aa4073775e7f3d46a3720da4b2043   10.46.133.180:5000/mysql/mysql-cluster                 &quot;/entrypoint.sh mysqld --ndb-nodeid=8&quot;                                      2 months ago        Up 2 hours (healthy)                                                                                                                                                                                                                                        mysqlcluster_mysql2_1<br />
d80a9e1a859d01e3812c40d7802edeba62842906eed91c858c74f95a6d55bca3   10.46.133.180:5000/mysql/mysql-cluster                 &quot;/entrypoint.sh ndbd --ndb-nodeid=5 --nowait-nodes=5,6&quot;                     2 months ago        Up 40 seconds (health: starting)                                                                                                                                                                                                                            mysqlcluster_ndb2_1<br />
724caf3849d69a72c135065c424a06813cff8e565f3dbe7054a91febe7dc08a7   10.46.133.180:5000/mysql/mysql-cluster                 &quot;/entrypoint.sh ndb_mgmd --ndb-nodeid=2&quot;                                    2 months ago        Up 2 hours (unhealthy)                                                                                                                                                                                                                                      mysqlcluster_management2_1]]></description>
            <dc:creator>Richard InTx</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Sat, 05 Nov 2022 17:26:56 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,706646,706646#msg-706646</guid>
            <title>Insert large longtest failed on NDB (3 replies)</title>
            <link>https://forums.mysql.com/read.php?25,706646,706646#msg-706646</link>
            <description><![CDATA[ Hello Everyone,<br />
<br />
We want to use longtext column to save big data for an application. I got the error below when trying to insert a 500M string into a longtext column on a NDB. The same insert can be done on a SQL node as a standalone InnoDB.<br />
<br />
I checked the documents, default value of MaxDMLOperationsPerTransaction is already maximum 4294967295. The NDB is isolated and should not have concurrent operations. I don&#039;t know what we can do.<br />
<br />
Anyone please help.<br />
<br />
Error:<br />
Error Code: 1296. Got error 261 &#039;DML count in transaction exceeds config parameter MaxDMLOperationsPerTransaction/MaxNoOfConcurrentOp&#039; from NDBCLUSTER<br />
<br />
Table:<br />
CREATE TABLE `big_data_test` (<br />
  `id` int NOT NULL AUTO_INCREMENT,<br />
  `val` longtext,<br />
  `record_id` int DEFAULT NULL,<br />
  PRIMARY KEY (`id`)<br />
) ENGINE=ndbcluster AUTO_INCREMENT=5 DEFAULT CHARSET=ascii;<br />
<br />
SQL:<br />
INSERT INTO big_data_test (val, record_id) <br />
VALUES (REPEAT(&#039;x&#039;,1024*1024*500),3);<br />
<br />
NDB:<br />
1 management node 2G RAM<br />
2 data nodes 6G RAM<br />
1 SQL node 4G RAM<br />
<br />
[ndbd default]<br />
NoOfReplicas=1<br />
DataMemory=1G <br />
SharedGlobalMemory=1G<br />
FragmentLogFileSize=64M<br />
TimeBetweenLocalCheckpoints=12]]></description>
            <dc:creator>Eric Poon</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Fri, 04 Nov 2022 22:18:46 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,705934,705934#msg-705934</guid>
            <title>How to build NDB clusters from source code in arm ubuntu (1 reply)</title>
            <link>https://forums.mysql.com/read.php?25,705934,705934#msg-705934</link>
            <description><![CDATA[ How to build NDB clusters from source code in arm ubuntu, or how to get arm  NDB clusters]]></description>
            <dc:creator>wei wu</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Mon, 22 Aug 2022 08:01:30 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,705400,705400#msg-705400</guid>
            <title>MySQL Cluster 8 - 4 nodes (1 reply)</title>
            <link>https://forums.mysql.com/read.php?25,705400,705400#msg-705400</link>
            <description><![CDATA[ Hello.<br />
<br />
So we are running 4 nodes and 2 masters<br />
<br />
the same exact as this<br />
<br />
<a href="https://www.mysql.com/products/cluster/availability.html"  rel="nofollow">https://www.mysql.com/products/cluster/availability.html</a><br />
<br />
<br />
But if 2 of my nodes lose connection or go down they wont auto reconnect i have tried a few different things, and if i just restart them manually they crash the entire cluster.<br />
<br />
and if i restart the remaing 2 nodes they wont start because it says not enough nodes to start...<br />
<br />
note: im saying if an A from group 0 and B from group 1 goes down so its still actually running so that the partitions are still accessable<br />
<br />
<br />
I am not sure in what world this is HA.<br />
<br />
Is there a fix for this?]]></description>
            <dc:creator>Chris Murrell</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Wed, 04 Jan 2023 13:32:49 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,705009,705009#msg-705009</guid>
            <title>- (no replies)</title>
            <link>https://forums.mysql.com/read.php?25,705009,705009#msg-705009</link>
            <description><![CDATA[ -]]></description>
            <dc:creator>Thomas Spray</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Tue, 21 Jun 2022 12:36:12 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?25,704651,704651#msg-704651</guid>
            <title>Mysql NDB cluster - Big import fail (11 replies)</title>
            <link>https://forums.mysql.com/read.php?25,704651,704651#msg-704651</link>
            <description><![CDATA[ Hi<br />
<br />
I&#039;m having some issues trying to import a big (12 GB) mysql dump. The dump is from an internal mysql database (no ndb) and I&#039;m trying to insert it to a new mysql ndb cluster  (changed all sentences ENGINE=INNODB to ENGINE=NDBCLUSTER). <br />
<br />
I&#039;ve had different issues, some of the errors trying to import were fixed changing configuration parameters, but some others don&#039;t. In fact, almost the configuration parameters have been changed as a consequence of an error fired.<br />
For example, the last one that (randomly) appears is:<br />
<br />
ERROR 1297 (HY000) at line 9831: Got temporary error 4010 &#039;Node failure caused abort of transaction&#039; from NDBCLUSTER<br />
Warning (Code 1297): Got temporary error 4010 &#039;Node failure caused abort of transaction&#039; from NDB<br />
Error (Code 1297): Got temporary error 4010 &#039;Node failure caused abort of transaction&#039; from NDBCLUSTER<br />
Error (Code 1180): Got error 4010 - &#039;Unknown error 4010&#039; during COMMIT<br />
<br />
Every time an error is fired seems is not related to out of ram, out of disk, or other operating system related issues.<br />
<br />
It seems to my that this ndb cluster is too hard to configure, compared to a simple mysql database (no configuration at all and it simply works).<br />
<br />
Is there any standard configuration that may fit for this &quot;big&quot; environments? (and I said &quot;big&quot; because my database dump is 12 GB which is not too big).<br />
Or is there any configuration parameters related to these mysql import problems?<br />
<br />
This dump can be inserted without issues on a mysql database (no cluster) <br />
<br />
<br />
My environment is:<br />
<br />
- one management node (16 GB RAM)<br />
<br />
- two ndb nodes (32 GB RAM each)<br />
<br />
- one mysql server node (16 GB RAM)<br />
<br />
All mysql cluster versions software are 8.0.29.<br />
<br />
config.ini:<br />
<br />
<br />
[ndbd default]<br />
# Options affecting ndbd processes on all data nodes:<br />
NoOfReplicas=2<br />
<br />
#MaxNoOfConcurrentOperations must be greater than MaxNoOfConcurrentTransactions<br />
MaxNoOfConcurrentOperations   =  1629496<br />
MaxNoOfConcurrentTransactions =  1629496<br />
MaxDMLOperationsPerTransaction = 1629400<br />
#MaxNoOfConcurrentOperations   =  4294967039<br />
#MaxNoOfConcurrentTransactions =  4294900000<br />
#MaxDMLOperationsPerTransaction = 4294967295<br />
<br />
DataMemory = 16000M # Memory allocate for data storage<br />
IndexMemory = 2048M # Memory allocate for index storage<br />
<br />
#temporal para import inicial<br />
NoOfFragmentLogFiles = 1000<br />
<br />
SharedGlobalMemory = 10G<br />
<br />
MaxNoOfOrderedIndexes = 1000<br />
MaxNoOfAttributes = 100000<br />
<br />
TransactionDeadlockDetectionTimeout = 10000<br />
<br />
#para evitar REDO log files overloaded error<br />
TimeBetweenLocalCheckpoints = 2<br />
<br />
FragmentLogFileSize = 32M<br />
<br />
[tcp default]<br />
#hay un error de Out of SendBufferMemory in sendSignal <br />
SendBufferMemory=16M<br />
ReceiveBufferMemory=16M<br />
<br />
<br />
<br />
[ndb_mgmd]<br />
# Management process options:<br />
hostname=wocu-ha-mysqlcluster-dev-1 # Hostname of the manager<br />
datadir=/var/lib/mysql-cluster 	# Directory for the log files<br />
<br />
<br />
[ndbd]<br />
hostname=wocu-ha-mysqlcluster-dev-2 # Hostname/IP of the first data node<br />
NodeId=2			# Node ID for this data node<br />
datadir=/var/lib/mysql-cluster/data	# Remote directory for the data files<br />
<br />
<br />
[ndbd]<br />
hostname=wocu-ha-mysqlcluster-dev-3 # Hostname/IP of the second data node<br />
NodeId=3			# Node ID for this data node<br />
datadir=/var/lib/mysql-cluster/data	# Remote directory for the data files<br />
<br />
<br />
[mysqld]<br />
# SQL node options:<br />
hostname=wocu-ha-mysqlcluster-dev-4 <br />
<br />
<br />
<br />
Thanks]]></description>
            <dc:creator>Cesar Hernandez</dc:creator>
            <category>NDB clusters</category>
            <pubDate>Wed, 08 Jun 2022 06:29:05 +0000</pubDate>
        </item>
    </channel>
</rss>
