java – 连接重置消耗REST服务(scala / spray)

前端之家收集整理的这篇文章主要介绍了java – 连接重置消耗REST服务(scala / spray)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我发送并发请求休息服务时遇到问题;客户端(Apache JMeter)中的消息对于某些请求是“连接重置”,具体取决于请求数量,例如,我发送100个请求并且服务器的响应是100%成功,但是如果我发送500个请求,则30 %的回复错误的.

  1. java.net.SocketException: Connection reset
  2. at java.net.SocketInputStream.read(SocketInputStream.java:196)
  3. at java.net.SocketInputStream.read(SocketInputStream.java:122)
  4. at org.apache.http.impl.io.AbstractSessionInputBuffer.fillBuffer(AbstractSessionInputBuffer.java:166)
  5. at org.apache.http.impl.io.SocketInputBuffer.fillBuffer(SocketInputBuffer.java:90)
  6. at org.apache.http.impl.io.AbstractSessionInputBuffer.readLine(AbstractSessionInputBuffer.java:281)
  7. at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:92)
  8. at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:61)
  9. at org.apache.http.impl.io.AbstractMessageParser.parse(AbstractMessageParser.java:254)
  10. at org.apache.http.impl.AbstractHttpClientConnection.receiveResponseHeader(AbstractHttpClientConnection.java:289)
  11. at org.apache.http.impl.conn.DefaultClientConnection.receiveResponseHeader(DefaultClientConnection.java:252)
  12. at org.apache.http.impl.conn.ManagedClientConnectionImpl.receiveResponseHeader(ManagedClientConnectionImpl.java:191)
  13. at org.apache.jmeter.protocol.http.sampler.MeasuringConnectionManager$MeasuredConnection.receiveResponseHeader(MeasuringConnectionManager.java:201)
  14. at org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(HttpRequestExecutor.java:300)
  15. at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:127)
  16. at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:715)
  17. at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:520)
  18. at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:906)
  19. at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:805)
  20. at org.apache.jmeter.protocol.http.sampler.HTTPHC4Impl.executeRequest(HTTPHC4Impl.java:517)
  21. at org.apache.jmeter.protocol.http.sampler.HTTPHC4Impl.sample(HTTPHC4Impl.java:331)
  22. at org.apache.jmeter.protocol.http.sampler.HTTPSamplerProxy.sample(HTTPSamplerProxy.java:74)
  23. at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:1146)
  24. at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:1135)
  25. at org.apache.jmeter.threads.JMeterThread.process_sampler(JMeterThread.java:434)
  26. at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:261)
  27. at java.lang.Thread.run(Thread.java:745)

修改了“application.conf”,内容是下一个:

  1. spray.can {
  2. server {
  3. server-header = spray-can/${spray.version}
  4. ssl-encryption = off
  5. pipelining-limit = 16
  6. idle-timeout = 60 s
  7. request-timeout = 30 s
  8. timeout-timeout = 2 s
  9. timeout-handler = ""
  10. reaping-cycle = 250 ms
  11. stats-support = on
  12. remote-address-header = off
  13. raw-request-uri-header = off
  14. transparent-head-requests = on
  15. chunkless-streaming = off
  16. verbose-error-messages = on
  17. request-chunk-aggregation-limit = 1m
  18. response-header-size-hint = 512
  19. bind-timeout = infinite
  20. unbind-timeout = 1s
  21. registration-timeout = 1s
  22. default-host-header = ""
  23. automatic-back-pressure-handling = on
  24. back-pressure {
  25. noack-rate = 10
  26. reading-low-watermark = infinite
  27. }
  28. parsing = ${spray.can.parsing}
  29. }
  30. client {
  31. user-agent-header = spray-can/${spray.version}
  32. idle-timeout = 60 s
  33. request-timeout = 40 s
  34. reaping-cycle = 250 ms
  35. response-chunk-aggregation-limit = 1m
  36. chunkless-streaming = off
  37. request-header-size-hint = 256
  38. max-encryption-chunk-size = 1m
  39. connecting-timeout = 30s
  40. proxy {
  41. http = default
  42. https = default
  43. }
  44. ssl-tracing = off
  45. parsing = ${spray.can.parsing}
  46. }
  47. host-connector {
  48. max-connections = 80
  49. max-retries = 8
  50. max-redirects = 0
  51. pipelining = enabled
  52. idle-timeout = 30 s
  53. client = ${spray.can.client}
  54. }
  55. }

JVM的设置是:

  1. -Xms1024M
  2. -Xmx2048M
  3. -Xss1M
  4. -XX:MaxPermSize=1024m

重要提示:由于bussines逻辑,服务器支持并发事务是必要的;少于5秒的500个单独连接(交易).

最佳答案
您的超时设置看起来很好,每秒处理500个请求绝对不是问题.

很可能您的请求处理时间太长,即超过请求超时超时超时= 32秒.您需要检查您的架构,看看它花费了多少时间和原因.对于常规Web服务而言,这是非常不寻常的,其中大多数请求以毫秒范围完成.如果您需要执行一些繁重的处理,这需要花费超过超时的时间,您可以使用202 Accepted进行回复并在后台进行处理.您可以返回一个URI,其中客户端可以检查请求的状态,或使用回调到客户端或任何其他机制来通知请求已完成.

记住不要阻塞路由本身,否则你会有效地阻止所有其他请求,你可能会遇到超时错误.请参阅此答案,例如:Use a Dispatcher with Spray HttpService.要实现非阻塞请求处理,请参阅:How does spray.routing.HttpService dispatch requests?.

一些故障排除的想法:1)测量处理单个请求所需的时间,并查看它如何扩展 – 您是否有资源争用? 2)检查您的网络和客户端是否不会导致超时 – 它们的超时应该高于服务器的超时.

猜你在找的Java相关文章