We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
From time to time this error will occur (with MySQL < 5.7), mostly because the POI table uses MyISAM as storage engine.
Mysql2::Error: Incorrect key file for table './wheelmap_production/pois.MYI'; try to repair it
To fix this, you have to run follow these steps:
$ mysqldump -u <username> -p <database> > ~/dump.sql
$ sudo /etc/init.d/unicorn_production stop
$ mysqlcheck -u <username> -p --repair --databases db_name