我们在一个非常简单的案例中使用LinkedIn API:
今天我们注意到服务严重退化。简单的配置文件调用响应时间在500毫秒到12000毫秒的范围内,有时它返回500.
使用开发人员指南中的REST控制台可以轻松复制慢响应:
https://apigee.com/console/linkedin 超过一半的请求需要10秒以上才能响应。
我们也注意到有时请求从LinkedIn返回500:
<-- 500 https://api.linkedin.com/v1/people/~:(id,first-name,last-name,email-address,formatted-name,headline,location,industry,num-connections,num-connections-capped,summary,specialties,positions,phone-numbers,public-profile-url,picture-url,picture-urls::(original))?format=json (17808ms)
{
"errorCode": 0,
"message": "Internal API server error",
"requestId": "3FXP4W2HD2",
"status": 500,
"timestamp": 1519643223202
}
<-- END HTTP (138-byte body)
这看起来像服务器端的超时可能在某个时刻,因此失败。
鉴于有时API会快速响应,它确实感觉可能是服务器中断之一? (我可能错了)。
很高兴知道是否: