4

使用 Oracle UCP v 12.1.0.2.0 时出现随机“连接已关闭:连接已关闭”错误。看起来连接在 oracle.ucp.jdbc.proxy.JDBCConnectionProxyFactory#invoke 中被标记为关闭:

if(Clock.isBefore(this.creationTS, this.m_jdbcPooledConnection.getAvailableStartTime()) || Clock.isBefore(this.creationTS, this.m_jdbcPooledConnection.getBorrowedStartTime())) {
      this.m_closed = Boolean.valueOf(true);
}

Clock.isBefore(this.creationTS, this.m_jdbcPooledConnection.getAvailableStartTime()) 返回真。

有人可以解释一下这张支票的用途吗?

getAvailableStartTime 在连接返回池时设置,creationTS - 在创建 JDBCConnectionProxyFactory 时设置,并且在放弃连接时创建。

isBefore 看起来像这样:

public static boolean isBefore(long time1, long time2) {
        return time1 < time2 - 1000L;
}

那么,在不到一秒前返回连接的情况是否是条件?

ps:尝试验证查询“从双重选择1” - 没有效果

4

1 回答 1

1

如果Clock.isBefore(this.creationTS, this.m_jdbcPooledConnection.getAvailableStartTime())返回true,则表示 UCP 已重新收集连接并使其再次可用。如果您在 UCP 中打开连接收集,通常会发生这种情况。UCP 检测何时借用连接但未使用时间过长(设计不佳的应用程序),并为避免连接泄漏,它将抢回连接并使其在池中可用。如果原始线程随后唤醒并尝试使用连接,则会出现connection is closed错误。

于 2016-01-04T11:11:40.137 回答