Uses of Class
com.nhncorp.neptune.fs.GPath

Packages that use GPath
com.nhncorp.neptune.fs neptune의 데이터 파일을 저장하는 file system에 대한 인터페이스 정의 및 이를 구현한 class 
com.nhncorp.neptune.tablet Table, Tablet 관련 Value Object 
com.nhncorp.neptune.tabletserver TabletServer 
 

Uses of GPath in com.nhncorp.neptune.fs
 

Methods in com.nhncorp.neptune.fs that return GPath
 GPath GPath.getParent()
          Returns the parent of a path or null if at root.
 GPath[] HadoopFileSystem.list(GPath path)
           
 GPath[] LocalFileSystem.list(GPath path)
           
abstract  GPath[] NeptuneFileSystem.list(GPath path)
           
 GPath GPath.suffix(java.lang.String suffix)
          Adds a suffix to the final name in the path.
 

Methods in com.nhncorp.neptune.fs with parameters of type GPath
 int GPathComparator.compare(GPath path1, GPath path2)
           
 java.io.OutputStream HadoopFileSystem.create(GPath path)
           
 java.io.OutputStream LocalFileSystem.create(GPath path)
           
abstract  java.io.OutputStream NeptuneFileSystem.create(GPath path)
           
 boolean HadoopFileSystem.delete(GPath path)
           
 boolean LocalFileSystem.delete(GPath path)
           
abstract  boolean NeptuneFileSystem.delete(GPath path)
           
 boolean HadoopFileSystem.delete(GPath path, boolean recursive)
           
 boolean LocalFileSystem.delete(GPath path, boolean recursive)
           
abstract  boolean NeptuneFileSystem.delete(GPath path, boolean recursive)
           
 boolean HadoopFileSystem.exists(GPath path)
           
 boolean LocalFileSystem.exists(GPath path)
           
abstract  boolean NeptuneFileSystem.exists(GPath path)
           
 java.lang.String[][] LocalFileSystem.getFileCacheHints(GPath path)
           
 long HadoopFileSystem.getLength(GPath path)
           
 long LocalFileSystem.getLength(GPath path)
           
abstract  long NeptuneFileSystem.getLength(GPath path)
           
 boolean HadoopFileSystem.isDirectory(GPath path)
           
 boolean LocalFileSystem.isDirectory(GPath path)
           
abstract  boolean NeptuneFileSystem.isDirectory(GPath path)
           
 GPath[] HadoopFileSystem.list(GPath path)
           
 GPath[] LocalFileSystem.list(GPath path)
           
abstract  GPath[] NeptuneFileSystem.list(GPath path)
           
 boolean HadoopFileSystem.mkdirs(GPath path)
           
 boolean LocalFileSystem.mkdirs(GPath path)
           
abstract  boolean NeptuneFileSystem.mkdirs(GPath path)
           
 boolean HadoopFileSystem.move(GPath targetPath, GPath destPath)
           
 boolean LocalFileSystem.move(GPath targetPath, GPath destPath)
           
abstract  boolean NeptuneFileSystem.move(GPath targetPath, GPath destPath)
           
 java.io.InputStream HadoopFileSystem.open(GPath path)
           
 java.io.InputStream LocalFileSystem.open(GPath path)
           
abstract  java.io.InputStream NeptuneFileSystem.open(GPath path)
           
 java.io.DataInputStream HadoopFileSystem.openDataInputStream(GPath path)
           
 java.io.DataInputStream LocalFileSystem.openDataInputStream(GPath path)
           
abstract  java.io.DataInputStream NeptuneFileSystem.openDataInputStream(GPath path)
           
 boolean HadoopFileSystem.renameTo(GPath targetPath, GPath destPath)
           
 boolean LocalFileSystem.renameTo(GPath targetPath, GPath destPath)
           
abstract  boolean NeptuneFileSystem.renameTo(GPath targetPath, GPath destPath)
           
 void HadoopFileSystem.setPermission(GPath path, short mode)
           
 void LocalFileSystem.setPermission(GPath path, short mode)
           
abstract  void NeptuneFileSystem.setPermission(GPath path, short mode)
           
 

Constructors in com.nhncorp.neptune.fs with parameters of type GPath
GPath(GPath parent, GPath child)
          Resolve a child path against a parent path.
GPath(GPath parent, java.lang.String child)
          Resolve a child path against a parent path.
GPath(java.lang.String parent, GPath child)
          Resolve a child path against a parent path.
 

Uses of GPath in com.nhncorp.neptune.tablet
 

Methods in com.nhncorp.neptune.tablet that return GPath
static GPath TableSchema.getTableSchemaPath(NConfiguration conf, java.lang.String tableName)
           
 GPath TabletInfo.getTabletPath()
           
 

Uses of GPath in com.nhncorp.neptune.tabletserver
 

Methods in com.nhncorp.neptune.tabletserver that return GPath
static GPath ChangeLog.getChangeLogPath(NConfiguration conf, TabletInfo tabletInfo)
           
static GPath ChangeLog.getChangeLogTempPath(NConfiguration conf, TabletInfo tabletInfo, java.lang.String fileId)
           
 GPath TabletMapFile.getFilePath()
           
static GPath Tablet.getTabletLocalTempPath(NConfiguration conf, TabletInfo tabletInfo, java.lang.String actionId)
           
static GPath Tablet.getTabletMajorCompactionTempPath(NConfiguration conf, java.lang.String tableName, java.lang.String tabletName)
           
static GPath Tablet.getTabletMajorCompactionTempPath(NConfiguration conf, TabletInfo tabletInfo)
           
static GPath Tablet.getTabletMinorCompactionTempPath(NConfiguration conf, java.lang.String tableName, java.lang.String tabletName)
           
static GPath Tablet.getTabletMinorCompactionTempPath(NConfiguration conf, TabletInfo tabletInfo)
           
static GPath Tablet.getTabletPath(NConfiguration conf, java.lang.String tableName, java.lang.String tabletName)
           
static GPath Tablet.getTabletPath(NConfiguration conf, TabletInfo tabletInfo)
           
static GPath Tablet.getTabletSplitTempPath(NConfiguration conf, java.lang.String tableName, java.lang.String tabletName)
           
static GPath Tablet.getTabletSplitTempPath(NConfiguration conf, TabletInfo tabletInfo)
           
static GPath Tablet.getTabletUploadTempPath(NConfiguration conf, TabletInfo tabletInfo, java.lang.String actionId)
           
 

Methods in com.nhncorp.neptune.tabletserver with parameters of type GPath
static TabletMapFile DiskSSTable.mergeColumnMapFiles(NConfiguration conf, NeptuneFileSystem resultFs, GPath resultPath, TabletInfo tabletInfo, java.lang.String fileId, java.lang.String columnName, java.util.List<TabletMapFile> mergeMapFiles, int numOfVersion)
           
 void TabletMapFile.moveTo(GPath targetPath, boolean deleteParent)
           
 

Constructors in com.nhncorp.neptune.tabletserver with parameters of type GPath
TabletMapFile(NConfiguration conf, NeptuneFileSystem fs, TabletInfo tabletInfo, java.lang.String columnName, java.lang.String fileId, GPath filePath, int numOfVersion)