Hi
Below are the settings in the config,ini file for my cluster
DataMemory=6G
IndexMemory=2G
MaxNoOfAttributes=3500
MaxNoOfOrderedIndexes=4G
MaxNoOfUniqueHashIndexes=3000
NoOfFragmentLogFiles=90
MaxNoOfTables=1500
MaxNoOfConcurrentOperations=1000000
MaxNoOfLocalOperations=1100000
when executing the query
CREATE TABLE `data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`key` varchar(100) NOT NULL,
`value` varchar(128) DEFAULT NULL,
`updatedtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedby` varchar(128) DEFAULT NULL COMMENT 'System adminId',
PRIMARY KEY (`key`),
UNIQUE KEY `id` (`id`)
) ENGINE=ndb DEFAULT CHARSET=latin1;
i get the error
ERROR 1005 (HY000): Can't create table 'mydatabase.data' (errno: 136)
i get the following message from show warnings command
+-------+------+----------------------------------------------------------------
-------------------+
| Level | Code | Message
|
+-------+------+----------------------------------------------------------------
-------------------+
| Error | 1296 | Got error 904 'Out of fragment records (increase MaxNoOfOrdered
Indexes)' from NDB |
| Error | 1005 | Can't create table 'mydatabase.data' (errno: 136)
|
+-------+------+----------------------------------------------------------------
-------------------+
for select version() i get
+-----------------------------------+
| version() |
+-----------------------------------+
| 5.1.56-ndb-7.1.18-cluster-gpl-log |
+-----------------------------------+
Please advice.
Below are the settings in the config,ini file for my cluster
DataMemory=6G
IndexMemory=2G
MaxNoOfAttributes=3500
MaxNoOfOrderedIndexes=4G
MaxNoOfUniqueHashIndexes=3000
NoOfFragmentLogFiles=90
MaxNoOfTables=1500
MaxNoOfConcurrentOperations=1000000
MaxNoOfLocalOperations=1100000
when executing the query
CREATE TABLE `data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`key` varchar(100) NOT NULL,
`value` varchar(128) DEFAULT NULL,
`updatedtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updatedby` varchar(128) DEFAULT NULL COMMENT 'System adminId',
PRIMARY KEY (`key`),
UNIQUE KEY `id` (`id`)
) ENGINE=ndb DEFAULT CHARSET=latin1;
i get the error
ERROR 1005 (HY000): Can't create table 'mydatabase.data' (errno: 136)
i get the following message from show warnings command
+-------+------+----------------------------------------------------------------
-------------------+
| Level | Code | Message
|
+-------+------+----------------------------------------------------------------
-------------------+
| Error | 1296 | Got error 904 'Out of fragment records (increase MaxNoOfOrdered
Indexes)' from NDB |
| Error | 1005 | Can't create table 'mydatabase.data' (errno: 136)
|
+-------+------+----------------------------------------------------------------
-------------------+
for select version() i get
+-----------------------------------+
| version() |
+-----------------------------------+
| 5.1.56-ndb-7.1.18-cluster-gpl-log |
+-----------------------------------+
Please advice.