org.apache.hadoop.fs
Class Trash

java.lang.Object
  extended by org.apache.hadoop.conf.Configured
      extended by org.apache.hadoop.fs.Trash
All Implemented Interfaces:
Configurable

public class Trash
extends Configured

Provides a trash feature. Files may be moved to a trash directory. They're initially stored in a current sub-directory of the trash directory. Within that sub-directory their original path is preserved. Periodically one may checkpoint the current trash and remove older checkpoints. (This design permits trash management without enumeration of the full trash content, without date support in the filesystem, and without clock synchronization.)


Constructor Summary
Trash(Configuration conf)
          Construct a trash can accessor.
 
Method Summary
 void checkpoint()
          Create a trash checkpoint.
 void expunge()
          Delete old checkpoints.
 Runnable getEmptier()
          Return a Runnable that periodically empties the trash.
static void main(String[] args)
          Run an emptier.
 boolean moveToTrash(Path path)
          Move a file or directory to the current trash directory.
 
Methods inherited from class org.apache.hadoop.conf.Configured
getConf, setConf
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Trash

public Trash(Configuration conf)
      throws IOException
Construct a trash can accessor.

Parameters:
conf - a Configuration
Throws:
IOException
Method Detail

moveToTrash

public boolean moveToTrash(Path path)
                    throws IOException
Move a file or directory to the current trash directory.

Returns:
false if the item is already in the trash or trash is disabled
Throws:
IOException

checkpoint

public void checkpoint()
                throws IOException
Create a trash checkpoint.

Throws:
IOException

expunge

public void expunge()
             throws IOException
Delete old checkpoints.

Throws:
IOException

getEmptier

public Runnable getEmptier()
Return a Runnable that periodically empties the trash. Only one checkpoint is kept at a time.


main

public static void main(String[] args)
                 throws Exception
Run an emptier.

Throws:
Exception


Copyright © 2006 The Apache Software Foundation