1

我是 node、postgresql 和整个 Web 开发业务的新手。我目前正在编写一个简单的应用程序,它连接到 postgres 数据库并在 Web 视图中显示表的内容。该应用程序将托管在 OpenShift 中。

我的主要条目是server.js

var pg = require('pg');
pg.connect(connection_string, function(err, client) {
    // handle error
    // save client: app.client = client;
});

现在,处理GET /请求:

function handle_request(req, res){
    app.client.query('...', function(err, result){
        if (err) throw err; // Will handle error later, crash for now
        res.render( ... );  // Render the web view with the result
    });
}

我的应用程序似乎可以工作:表格在 Web 视图中正确呈现,并且适用于多个连接(来自不同设备的不同 Web 客户端)。但是,如果几分钟内没有请求,则后续请求将导致应用程序崩溃并显示超时信息。这是堆栈信息:

/home/hai/myapp/server.js:98
            if (err) throw err;
                           ^
Error: This socket is closed.
    at Socket._write (net.js:474:19)
    at Socket.write (net.js:466:15)
    at [object Object].query (/home/hai/myapp/node_modules/pg/lib/connection.js:109:15)
    at [object Object].submit (/home/hai/myapp/node_modules/pg/lib/query.js:99:16)
    at [object Object]._pulseQueryQueue (/home/hai/myapp/node_modules/pg/lib/client.js:166:24)
    at [object Object].query (/home/hai/myapp/node_modules/pg/lib/client.js:193:8)
    at /home/hai/myapp/server.js:97:17
    at callbacks (/home/hai/myapp/node_modules/express/lib/router/index.js:160:37)
    at param (/home/hai/myapp/node_modules/express/lib/router/index.js:134:11)
    at pass (/home/hai/myapp/node_modules/express/lib/router/index.js:141:5)

有没有办法防止连接超时(更好)?还是按需重新连接(最好)?我试图重新设计我的应用程序,一开始不连接到数据库,而是根据GET /请求。此解决方案仅适用于第一个请求,然后在第二个请求中崩溃。任何见解都值得赞赏。

4

3 回答 3

2

您是否查看过 postgres keepalive 设置值?它发送数据包以防止空闲连接超时。 http://www.postgresql.org/docs/9.1/static/runtime-config-connection.html

我还发现了这个类似的问题: 如何在 Postgresql 中使用 tcp_keepalives 设置?

您还可以按设定的时间间隔从数据库执行非常小的查询。但是,这种方法肯定更受黑客攻击。

编辑:您也可以尝试像这样启动客户端:

var client = new pg.Client(conString);

在进行查询之前,您可以检查客户端是否仍处于连接状态。我相信你可以使用:

if(client.connection._events != null)
    client.connect();
于 2012-12-30T02:00:37.050 回答
2

面临同样的问题..告诉客户端在结束事件时关闭连接

query.on('end', function() { 
  client.end();
});

为我做了伎俩...

于 2013-04-24T13:07:16.443 回答
0

您还可以将 30 秒的默认空闲超时更改为您需要的任何值。例如

pg.defaults.poolIdleTimeout = 600000; // 10 mins
于 2015-06-29T09:11:40.937 回答