So I have a mariadb on a InnoDB engine with some tables
MariaDB [nextcloud]> SELECT TABLE_NAME, ENGINE FROM
INFORMATION_SCHEMA.TABLES WHERE table_schema = 'nextcloud' and
table_name LIKE 'oc_file%';
+-----------------------+--------+
| TABLE_NAME | ENGINE |
+-----------------------+--------+
| oc_filecache_extended | InnoDB |
| oc_filecache | InnoDB |
| oc_file_locks | InnoDB |
| oc_files_trash | InnoDB |
+-----------------------+--------+
the selects on all tables are workin fine however when I try to select from oc_filecache
I get the following error message
MariaDB [nextcloud]> select * from oc_filecache;
ERROR 1030 (HY000): Got error 1877 "Unknown error 1877" from storage engine InnoDB
Do you have any Idea what this error could mean, how I could fix it or how I could get something like an extended log to pin down the problem?
The odd thing is that after I restart the container running the db, everything works fine again for some time.