Package org.apache.hadoop.hdfs.inotify


package org.apache.hadoop.hdfs.inotify
  • Class
    Description
    Events sent by the inotify system.
    Sent when an existing file is opened for append.
    org.apache.hadoop.hdfs.inotify.Event.AppendEvent.Builder
     
    Sent when a file is closed after append or create.
    Sent when a new file is created (including overwrite).
    org.apache.hadoop.hdfs.inotify.Event.CreateEvent.Builder
     
     
     
    Sent when there is an update to directory or file (none of the metadata tracked here applies to symlinks) that is not associated with another inotify event.
    org.apache.hadoop.hdfs.inotify.Event.MetadataUpdateEvent.Builder
     
     
    Sent when a file, directory, or symlink is renamed.
    org.apache.hadoop.hdfs.inotify.Event.RenameEvent.Builder
     
    Sent when a file is truncated.
    Sent when a file, directory, or symlink is deleted.
    org.apache.hadoop.hdfs.inotify.Event.UnlinkEvent.Builder
     
    A batch of events that all happened on the same transaction ID.
    org.apache.hadoop.hdfs.inotify.EventBatchList
    Contains a list of event batches, the transaction ID in the edit log up to which we read to produce these events, and the first txid we observed when producing these events (the last of which is for the purpose of determining whether we have missed events due to edit deletion).