MySql Index Fill Factor?
Asked Answered
K

2

5

How do you specify the Fill Factor when creating an index in MySql?

Kasi answered 1/12, 2008 at 15:6 Comment(0)
I
6

You don't.

http://dev.mysql.com/doc/refman/5.0/en/create-index.html

However, it is an 'accepted' feature request for version 6.x: http://bugs.mysql.com/bug.php?id=18178

So, don't hold your breath on seeing it any time soon.

Inexperienced answered 1/12, 2008 at 15:12 Comment(1)
Well that sucks... but oh well!Kasi
V
1

Assuming that you are using InnoDB, it seems like this is only supported at database level, not index level.

The setting is called innodb_fill_factor and defaults to 100 see https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_fill_factor for more details.

Verily answered 17/5, 2017 at 10:30 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.