Issue Details (XML | Word | Printable)

Key: DIRMINA-65
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Trustin Lee
Reporter: Mark Atwell
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
MINA

Duplicate entries in flush-list, consequent unnecessary system-calls and overzealous wakeups and calls to write(2)

Created: 21/Jun/05 12:30 AM   Updated: 06/Jul/05 01:42 AM
Return to search
Component/s: None
Affects Version/s: 0.7.0, 0.7.1, 0.7.2
Fix Version/s: 0.7.3

Time Tracking:
Not Specified

File Attachments:
  Size
Java Source File Licensed for inclusion in ASF works SocketIoProcessor.java 2005-06-21 12:54 AM Mark Atwell 17 kB
Environment: All

Resolution Date: 01/Jul/05 02:13 PM


 Description  « Hide
The following shows up under heavy load - writing numerous small messages across a slow(ish) network and/or to a slow peer i.e. when a writer starts to see back-log and writes don't necessarily complete.

In SocketIoProcessor:

- scheduleFlush() blindly adds the session to the queue even if it is already present. This means that when the selector thread wakes up it may make numerous calls to (relatively slow) write on the same session.

- flushSession() calls scheduleFlush() and always wakes up the selector thread. This means that flushSessions() and flush() is called for each application write - even when the socket may already be backed up with queued traffic. This is exacerbated by the problem above.

- scheduleFlush() is called from flushSession() which is called from (at least) SocketSessionManagerFilterChain for every application write.

I 'hacked' a test fix which modified scheduleFlush() to only add the session if it wasn't already in the queue and returns a boolean indicating whether the session was added. flushSession() checks this return value and only wakes the selector thread if the session has been added (i.e. it isn't already backed up). In this way writes are not unnecessarily triggered.

This worked though it also highlighted (or brought into greater focus? :o) an apparent timing problem.

java.io.IOException: Invalid argument
at sun.nio.ch.DevPollArrayWrapper.registerMultiple(Native Method)
at sun.nio.ch.DevPollArrayWrapper.updateRegistrations(DevPollArrayWrapper.java:209)
at sun.nio.ch.DevPollArrayWrapper.poll(DevPollArrayWrapper.java:157)
at sun.nio.ch.DevPollSelectorImpl.doSelect(DevPollSelectorImpl.java:68)
at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:69)
at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:80)
at org.apache.mina.io.socket.SocketIoProcessor$Worker.run(SocketIoProcessor.java:562)

This isn't fatal though as the retry logic means that the next time 'round the state - presumably of the selection keys - has been brought into alignemnt?


 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
No work has yet been logged on this issue.