API Manager Gateway 1.8传入连接定时

时间:2017-04-16 15:53:32

标签: amazon-web-services centos wso2 wso2-am

我正在运行API Manager Gateway 1.8版。服务器运行带有Java(TM)SE运行时环境(版本1.7.0_67-b01)的CentOS 8。我正在测试和生产服务器上进行测试。为了排除服务器之间的差异,生产服务器从测试服务器克隆并更新为指向单独的数据库,密钥管理器& LDAP服务器。此外,它与Gateway Management节点同步。

我启动了两个网关服务器。每台服务器上都部署了数十个API。为了测试,我在test和prod上部署了一个相同的API,指向相同的后端服务。 API不需要身份验证,因此没有令牌调用。我在prod和test中直接向网关工作人员执行API的wget。

调用在测试中成功执行,在大约1秒内返回响应。

然而,对生产的调用会持续一分钟,然后重试。最终在几次重试后,呼叫成功。

我已经在生产网关节点上直接从命令提示符对服务进行了数百次调用,并且每次都成功。

我正在跳过负载均衡器,因此测试中的所有流量都是通过http到网关服务器和我的后端服务。

在生产中,我在日志中看到以下内容。在http-incoming-1超时之前,对/ csmjk的请求后跟1分钟的延迟。

TID: [0] [AM] [2017-04-16 07:38:31,472] DEBUG {org.apache.synapse.transport.passthru.SourceHandler} -  http-incoming-1: GET /csmjk/1.0/iscontentavailable/publisher/ISE.json?publisherdocumentid=10.1504/WRSTSD.2013.050791 HTTP/1.0 {org.apache.synapse.transport.passthru.SourceHandler}
TID: [0] [AM] [2017-04-16 07:38:31,479] DEBUG {org.apache.synapse.transport.nhttp.access} -  - 10.40.1.161 - - [16/Apr/2017:07:38:31 -0500] "GET /csmjk/1.0/iscontentavailable/publisher/ISE.json?publisherdocumentid=10.1504/WRSTSD.2013.050791 HTTP/1.0" - - "-" "Wget/1.12 (linux-gnu)" {org.apache.synapse.transport.nhttp.access}
TID: [0] [AM] [2017-04-16 07:38:31,481] DEBUG {org.apache.synapse.transport.passthru.ServerWorker} -  Starting a new Server Worker instance {org.apache.synapse.transport.passthru.ServerWorker}
TID: [0] [AM] [2017-04-16 07:39:31,547] DEBUG {org.apache.synapse.transport.passthru.SourceHandler} -  http-incoming-1: Timeout {org.apache.synapse.transport.passthru.SourceHandler}
TID: [0] [AM] [2017-04-16 07:39:31,547]  WARN {org.apache.synapse.transport.passthru.SourceHandler} -  Connection time out after request is read: http-incoming-1 {org.apache.synapse.transport.passthru.SourceHandler}

在测试中,我看到请求后紧接着调用我们的后端服务:

TID: [0] [AM] [2017-04-16 07:42:08,281] DEBUG {org.apache.synapse.transport.passthru.SourceHandler} -  http-incoming-10: GET /csmjk/1.0/iscontentavailable/publisher/ISE.json?publisherdocumentid=10.1504/WRSTSD.2013.050791 HTTP/1.0 {org.apache.synapse.transport.passthru.SourceHandler}
TID: [0] [AM] [2017-04-16 07:42:08,286] DEBUG {org.apache.synapse.transport.nhttp.access} -  - 10.40.1.161 - - [16/Apr/2017:07:42:08 -0500] "GET /csmjk/1.0/iscontentavailable/publisher/ISE.json?publisherdocumentid=10.1504/WRSTSD.2013.050791 HTTP/1.0" - - "-" "Wget/1.12 (linux-gnu)" {org.apache.synapse.transport.nhttp.access}
TID: [0] [AM] [2017-04-16 07:42:08,304] DEBUG {org.apache.synapse.transport.passthru.ServerWorker} -  Starting a new Server Worker instance {org.apache.synapse.transport.passthru.ServerWorker}
TID: [0] [AM] [2017-04-16 07:42:08,394]  INFO {org.wso2.carbon.databridge.agent.thrift.AsyncDataPublisher} -  Flushing the events from the queue 1 {org.wso2.carbon.databridge.agent.thrift.AsyncDataPublisher}
TID: [0] [AM] [2017-04-16 07:42:08,426]  INFO {org.wso2.carbon.apimgt.gateway.handlers.security.CCCAPIAuthenticationHandler} -  Headers : {Accept=*/*, Connection=Keep-Alive, Host=TEST:8281, User-Agent=Wget/1.12 (linux-gnu), X-JWT-Assertion=null} {org.wso2.carbon.apimgt.gateway.handlers.security.CCCAPIAuthenticationHandler}
TID: [0] [AM] [2017-04-16 07:42:08,426]  INFO {org.wso2.carbon.apimgt.gateway.handlers.security.CCCAPIAuthenticationHandler} -  Message context:[MessageContext: logID=57478a056938f45377e3a24e79fae0781cbfcc13f4af60aa] {org.wso2.carbon.apimgt.gateway.handlers.security.CCCAPIAuthenticationHandler}
TID: [0] [AM] [2017-04-16 07:42:08,585]  INFO {org.wso2.carbon.apimgt.gateway.handlers.security.CCCAPIAuthenticationHandler} -  End user: null, API user: null {org.wso2.carbon.apimgt.gateway.handlers.security.CCCAPIAuthenticationHandler}
TID: [0] [AM] [2017-04-16 07:42:08,601]  INFO {org.apache.synapse.core.axis2.TimeoutHandler} -  This engine will expire all callbacks after : 120 seconds, irrespective of the timeout action, after the specified or optional timeout {org.apache.synapse.core.axis2.TimeoutHandler}
TID: [0] [AM] [2017-04-16 07:42:08,617] DEBUG {org.apache.synapse.transport.passthru.connections.TargetConnections} -  Trying to get a connection {}->http://SERVICE:1111 {org.apache.synapse.transport.passthru.connections.TargetConnections}

这种情况在生产中运行了好几个月,两天前突然停止工作。

非常感谢任何帮助。 感谢

1 个答案:

答案 0 :(得分:0)

我已经连续工作了3天。启用其他调试后,我确定在超时之前完成的最后一件事是调用Google Analytics。我停用了Google Analytics跟踪功能,现在一切恢复正常。这也在我的测试实例中配置。更多的调试来了,但至少我回来回应请求。 感谢