Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No new interfaces or will be added. The size of the blocking queue used for new connections will be set to 20 for each Processor. The backlog queue size for incoming connections on the server socket is currently the Java default of 50 and this limit is not configurable. With a default of num.network,threads=3, a per-processor queue size of 20 enables this backlog to be processed without any delayblocking. Like polling interval in SocketServer, it is unlikely that users will require the queue size to be changed. During normal operation, a small limit allows progress to be made on new channels as well as existing channels. Since Selector is woken up when new connections arrive or existing connections are ready to be processed, this limit does not introduce any unnecessary delays in connection processing.

...