0

When I am trying to create a table using NDB storage engine I get the following error:

"Got error 904 'Out of fragment records (increase MaxNoOfOrderedIndexes)' from NDB"

How to change the size of this variable? I can't figure out where this is stored or set.

Charles Sprayberry
  • 7,741
  • 3
  • 41
  • 50
MySQL DBA
  • 5,692
  • 21
  • 54
  • 71

1 Answers1

0

It's a configuration option set in MySQL's config.ini file.

Amber
  • 507,862
  • 82
  • 626
  • 550
  • Well, I did not get any such option in my Config.ini file. is there any other file which mysql read on startup..... – MySQL DBA Aug 01 '09 at 07:45
  • If it's anywhere, it should be in the [NDBD] section of the config. If it's not specified there, try adding it (change the number to whatever you wish): MaxNoOfOrderedIndexes=1024 – Amber Aug 01 '09 at 08:29
  • Do i need to restart the ndb and mysql data nodes – MySQL DBA Aug 01 '09 at 10:38