I have a situation where MySQL was installed in Linux with a ext3 file system. One table (InnoDB) reached the maximum size allowed for ext3 (2 TB) , insert statement gave "The table 'foo' is full". I have changed the file system from ext3 to ext4 and rebuilt the table again. Yet it has the same issue once its reach 2 TB.
Is there something that I'm missing, that is not allowing the table from extpanding more than 2TB ?
MySQL version is 5.6.19.
innodb_data_file_path variable value is "ibdata1:12M:autoextend"