Page MenuHomePhabricator

Table 'kawiktionary.echo_event' doesn't exist
Closed, ResolvedPublic

Description

When visiting wikt:ka: the following is shown:

A database query error has occurred. This may indicate a bug in the software.

ფუნქცია: MWDbEchoBackend::createEvent
შეცდომა: 1146 Table 'kawiktionary.echo_event' doesn't exist (10.64.16.18)

Please check all wikis to avoid the same error on small wikis. Thanks.


Version: wmf-deployment
Severity: major
See Also:
https://bugzilla.wikimedia.org/show_bug.cgi?id=56222

Details

Reference
bz56211

Event Timeline

bzimport raised the priority of this task from to High.Nov 22 2014, 2:39 AM
bzimport set Reference to bz56211.
bzimport added a subscriber: Unknown Object (MLST).

Sigh. I fixed test2wiki earlier this week when I noticed the errors in the logs...

mysql:wikiadmin@10.64.16.18 [test2wiki]> show tables;
+---------------------+

Tables_in_test2wiki

+---------------------+

echo_email_batch
echo_event
echo_notification

+---------------------+
3 rows in set (0.00 sec)

mysql:wikiadmin@10.64.16.18 [test2wiki]> use kawiktionary
Database changed
mysql:wikiadmin@10.64.16.18 [kawiktionary]> create table echo_notification like test2wiki.echo_notification;
Query OK, 0 rows affected (0.01 sec)

mysql:wikiadmin@10.64.16.18 [kawiktionary]> create table echo_event like test2wiki.echo_event;
Query OK, 0 rows affected (0.00 sec)

mysql:wikiadmin@10.64.16.18 [kawiktionary]> create table echo_email_batch like test2wiki.echo_email_batch;
Query OK, 0 rows affected (0.00 sec)

mysql:wikiadmin@10.64.16.18 [kawiktionary]> show tables;
+------------------------+

Tables_in_kawiktionary

+------------------------+

echo_email_batch
echo_event
echo_notification

+------------------------+
3 rows in set (0.00 sec)

mysql:wikiadmin@10.64.16.18 [kawiktionary]> use ndswiktionary;
Database changed
mysql:wikiadmin@10.64.16.18 [ndswiktionary]> create table echo_notification like test2wiki.echo_notification;
Query OK, 0 rows affected (0.01 sec)

mysql:wikiadmin@10.64.16.18 [ndswiktionary]> create table echo_event like test2wiki.echo_event;
Query OK, 0 rows affected (0.01 sec)

mysql:wikiadmin@10.64.16.18 [ndswiktionary]> create table echo_email_batch like test2wiki.echo_email_batch;
Query OK, 0 rows affected (0.00 sec)