JDK-8034864 : AbstractWatchKey limit of 512 events before OVERFLOW is too low
  • Type: Enhancement
  • Component: core-libs
  • Sub-Component: java.nio
  • Affected Version: 7u45
  • Priority: P4
  • Status: Open
  • Resolution: Unresolved
  • OS: windows_8
  • CPU: x86
  • Submitted: 2014-02-13
  • Updated: 2018-09-11
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
tbdUnresolved
Description
A DESCRIPTION OF THE REQUEST :
On operating systems which support watching an entire directory tree, hitting the hard-coded limit of 512 events before AbstractWatchKey runs out of space is way too easy to hit.

In the first place, I'm not even sure why you have to impose a limit. If you're going to impose a limit, it should at least be configurable.


JUSTIFICATION :
On Windows, it is impossible to watch every folder in a hierarchy, because registering a WatchService on a directory currently prevents the user from deleting directory.

The workaround for this is to install the watcher to watch the entire directory tree. The problem is, when a large number of files are copied into the directory, the watch service can't keep up with the updates. The limit of 512 is hit immediately.

The presumed "correct response" to an OVERFLOW event is to reset the watch status. My experience is that when you do this, the updates quickly flood in again and you get another OVERFLOW event.

This effectively makes the API unusable on Windows, as watching the entire tree is impossible due to guaranteed overflow and watching individual directories is impossible due to the user not being allowed to delete the directory normally.




Comments
I suspect the submitter is looking for the FILE_TREE modifier (see com.sun.nio.file.ExtendedWatchEventModifier).
13-02-2014