We have set up a cluster 7.3.5 environment with 4 data nodes, each with 64 g of RAM.
We are trying import a large sql dump file from an innodb into it. the dump file is 18 gb.
The first thing we are doing is trying to create an empty schema of the tables, all of which have the ENGINE=InnoDB attribute changed to ENGINE=NDB. After that, we plan to load the dump file with the insert statements only.
The problem is, we can't even load the empty structure .sql dump file without it crashing on the third table with an 'ERROR 1114, table is full error'. And this is with no data!! Any ideas as to what to look into would be very much appreciated. Thank you.
Our config.ini is as follows.
DataMemory=20480MB # How much memory to allocate for data storage
IndexMemory=1024MB # How much memory to allocate for index storage
BackupMemory = 512MB
MaxNoOfTables = 4096
MaxNoOfConcurrentOperations=10000000
MaxNoOfAttributes=4096
MaxNoOfOrderedIndexes = 5000
MaxNoOfUniqueHashIndexes = 5000
NoOfFragmentLogFiles=300
FragmentLogFileSize=256MB
We are trying import a large sql dump file from an innodb into it. the dump file is 18 gb.
The first thing we are doing is trying to create an empty schema of the tables, all of which have the ENGINE=InnoDB attribute changed to ENGINE=NDB. After that, we plan to load the dump file with the insert statements only.
The problem is, we can't even load the empty structure .sql dump file without it crashing on the third table with an 'ERROR 1114, table is full error'. And this is with no data!! Any ideas as to what to look into would be very much appreciated. Thank you.
Our config.ini is as follows.
DataMemory=20480MB # How much memory to allocate for data storage
IndexMemory=1024MB # How much memory to allocate for index storage
BackupMemory = 512MB
MaxNoOfTables = 4096
MaxNoOfConcurrentOperations=10000000
MaxNoOfAttributes=4096
MaxNoOfOrderedIndexes = 5000
MaxNoOfUniqueHashIndexes = 5000
NoOfFragmentLogFiles=300
FragmentLogFileSize=256MB