Created
August 22, 2012 04:11
-
-
Save conmame/3422225 to your computer and use it in GitHub Desktop.
Add UserID Partition (MySQL 5.5=<)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# userバーティションを拡張 | |
HOST='127.0.0.1' | |
USER='hoge' | |
PASS='fuga' | |
DBNAME='piyo' | |
TABLENAME='oreo' | |
NUMPERPARTITION=50000 #インクリメントする値 | |
PREVIOUSNUM=`mysql -u$USER -p$PASS -e 'SHOW CREATE TABLE '$DBNAME'.'$TABLENAME'\G' | | |
tail -n 2 | | |
head -n 1 | | |
perl -wnl -e '/LESS\sTHAN\s\((\d*)\)/ and print $1;'` | |
PARTITIONUM=`echo $((PREVIOUSNUM+NUMPERPARTITION))` | |
SQL="ALTER TABLE $DBNAME.$TABLENAME REORGANIZE PARTITION pmax INTO( | |
PARTITION p$PARTITIONNUM VALUES LESS THAN ('$PARTITIONUM') ENGINE=InnoDB, | |
PARTITION pmax VALUES LESS THAN MAXVALUE ENGINE = InnoDB);" | |
mysql -u$USER -p$PASS -e "$SQL" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
MySQLで、こんな感じでID毎にパーティショニングしている場合にパーテションを追加。
cronで一定のIDまでインクリメントされてたら追加するようにするといい。
ただし、pmaxにデータがしこたま入ってたりすると、リパーティショニングの際に時間がかかり詰まってしまう恐れがあるので注意。