3

All my table in the db are created after I enabled the option "innodb_file_per_table", so I don't understand why ibdata1 is still growing from time to time, even with a very slow speed.

Howard
  • 2,005
  • 11
  • 47
  • 70

2 Answers2

2

When you use file_per_table, it doesn't mean that ibdata* isn't used at all. There will still be stored "meta-data" for all your InnoDB tables ... Only the data itself goes to the other files

m.sr
  • 1,060
  • 1
  • 8
  • 19