当我使用 1.6.0_20 回滚到以前的版本时,我的应用程序会在 60 秒内启动。鉴于以下事实,我该如何调试和解决问题?
- 我的应用程序正在使用 Play 1.2.5
- 在日志中,我看到应用程序连接到 PostgreSQL 数据库。这通常是 R10 错误之前的最后一个日志。
--UPDATE 我创建了一个插件并发出了一个假端口绑定,它将在 10 秒后关闭。这解决了绑定问题,但现在我遇到了内存问题。在高负载下可能应用程序正在使用 600M 的内存。但现在我看到~1500M,而且还在不断增加。
@Override
public void onConfigurationRead() {
final int port = Integer.parseInt(Play.configuration.getProperty("http.port"));
try {
// Create a new server socket and set to non blocking mode
final ServerSocketChannel ssc = ServerSocketChannel.open();
ssc.configureBlocking(false);
InetSocketAddress isa = new InetSocketAddress(port);
ssc.socket().bind(isa);
Logger.info("Fake bind to port %d", port);
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
try {
ssc.socket().close();
Logger.info("Fake port closed");
} catch (IOException ioe) {
Logger.error(ioe, "Cannot close fake port");
}
}
}, 10000);
} catch (IOException ioe) {
Logger.error(ioe, "Cannot open fake port");
}
Cache.forcedCacheImpl = RedisCacheImpl.getInstance();
}