Postgres突然说“关系不存在”(肯定存在)

时间:2019-04-27 13:42:31

标签: postgresql

我在生产服务器(DigitalOcean)上的Postgres遇到了一个奇怪的问题。

突然,我的Django项目开始出现此错误。我有两个月没有更改服务器上的任何内容了,所以它不是由任何代码更改等引起的。

relation "mainapp_price" does not exist
LINE 1: ...rom_3", "mainapp_price"."stelinka_12kg_pack" FROM "mainapp_p... 

我检查了/var/log/postgres/...,上面写着类似的内容:

2019-04-27 13:40:26 UTC [13288-11] postgres@brennholzdb ERROR:  relation "mainapp_availability" does not exist at character 179
2019-04-27 13:40:26 UTC [13288-12] postgres@brennholzdb STATEMENT:  SELECT "mainapp_availability"."id", "mainapp_availability"."dry_wood", "mainapp_availability"."wet_wood", "mainapp_availability"."briquettes", "mainapp_availability"."area" FROM "mainapp_availability" WHERE "mainapp_availability"."area" = 'ar' LIMIT 21

我不知道问题出在哪里。正如我所说的,所有内容都已迁移,并且代码中没有新的更改。

你知道该怎么办吗?

编辑

postgres进程几乎消耗了100%的CPU。

PID USER      PR  NI    VIRT    RES    SHR S %CPU %MEM     TIME+ COMMAND                                                                                                                                                                                     
13277 postgres  20   0  385212   4916   2740 S 98.0  1.0 352:44.85 postgres                                                                                                                                                                                    
14096 django    20   0   40388   3524   2996 R  0.3  0.7   0:00.02 top                                                                                                                                                                                         
    1 root      20   0  119992   5124   2996 S  0.0  1.0   0:03.54 systemd                                                                                                                                                                                     
    2 root      20   0       0      0      0 S  0.0  0.0   0:00.00 kthreadd                                                                                                                                                                                    
    3 root      20   0       0      0      0 S  0.0  0.0   0:02.45 ksoftirqd/0                                                                                                                                                                                 
    5 root       0 -20       0      0      0 S  0.0  0.0   0:00.00 kworker/0:0H                                                                                                                                                                                
    6 root      20   0       0      0      0 S  0.0  0.0   0:01.25 kworker/u2:0                                                                                                                                                                                
    7 root      20   0       0      0      0 S  0.0  0.0   0:03.56 rcu_sched 

0 个答案:

没有答案