我在16.04 Linux机器上为PostgreSQL(v9.6)安装了timescaledb
扩展名(v.5.0),并观察到Postgres进程占用了100%的CPU:
这是top
命令的结果:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
19885 postgres 20 0 192684 3916 1420 S 98.3 0.1 5689:04 x3606027128
我运行查询SELECT pid, datname, usename, query FROM pg_stat_activity
并找到两个奇怪的查询
pid datname username query
19882 postgres postgres select Fun013301 ('./x3606027128 &')
19901 postgres postgres select Fun013301 ('./ps3597605779 &')
postgres数据库中不存在函数Fun013301
。我无法弄清楚./x3606027128
命令是什么!?