I have a table with a longblob where I am storing documents inside. Since my hoster changed MySql to MariaDB Version 10.0.27 I got problems with loading data into the blob greater than 5 MB. Then I wanted to add a new column to the database to handle this programmatically by storing bigger files into the file system. But when adding the new column I get the following error:
Error 1030: Got error 66 "Object is remote" from storage engine InnoDB SQL Code: ALTER TABLE
asbest
.dokumente
ADD COLUMNextfile
INT(11) NOT NULL DEFAULT 0 COMMENT 'Die Datei ist extern gespeichert (uber 5 MB) im Verteichnis /doks' AFTERsize
I found on Stack Overflow that a Bug in MySql and MariaDB causes several problems related to blobs with large data.
Is this behaviour related th this? Could it be solved by changing the Storage Engine to Barracuda?