目前我正在研究一个大型的mysql数据库(200mio + rows~40gb)。现在我需要创建一个主索引并索引一些行。但是如果我这样做,一切看起来都很好,但过了一会儿db会抛出大量的:[错误] InnoDB:文件写入偏移量> 4 GB。
sql查询是:
ALTER TABLE mytbl ADD id bigint PRIMARY KEY AUTO_INCREMENT;
ALTER TABLE mytbl ADD INDEX (existing_row);
我在Windows 10上使用mysql 5.7.9。我的配置如下所示:
[mysqld]
ft_min_word_len = 3
#GENERAL
port = 3306
default_storage_engine = InnoDB
socket = F:/mysql/mysql.sock
pid_file = F:/mysql/mysql.pid
# DATA STORAGE #
datadir = F:/mysql/data
tmpdir = F:/mysql/temp
#INNODB
innodb_buffer_pool_size = 2G
innodb_log_file_size = 64M
#innodb_flush_method = async_unbuffered
#MyISAM
key_buffer_size = 128M
#Logging
log_error = F:/mysql/mysql-error.log
slow_query_log = 1
slow_query_log_file = F:/mysql/mysql-slow.log
#OTHER
tmp_table_size = 32M
max_heap_table_size = 32M
query_cache_type = 0
query_cache_size = 00
max_connections = 500
thread_cache_size = 50
table_open_cache = 800
F:的文件系统是NTFS。
有什么建议吗?
格尔茨 scotty86