| 组织ID: |
org.tachyonproject |
| 项目ID: |
tachyon |
| 版本: |
0.4.1-thrift |
| 最后修改时间: |
2018-08-02 17:55:03 |
| 包类型: |
jar |
| 标题: |
Tachyon Project POM |
| 相关URL: |
http://tachyonproject.org/ |
| 大小: |
1.98MB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.tachyonproject</groupId>
<artifactId>tachyon</artifactId>
<version>0.4.1-thrift</version>
</dependency>
|
| Gradle引入代码: |
org.tachyonproject:tachyon:0.4.1-thrift
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>oss-parent</artifactId>
<groupId>org.sonatype.oss</groupId>
<version>7</version>
<relativePath>../pom.xml/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.tachyonproject</groupId>
<artifactId>tachyon</artifactId>
<name>Tachyon Project POM</name>
<version>0.4.1-thrift</version>
<url>http://tachyonproject.org/</url>
<issueManagement>
<system>github</system>
<url>https://spark-project.atlassian.net/browse/TACH</url>
</issueManagement>
<developers>
<developer>
<id>haoyuan</id>
<name>Haoyuan Li</name>
<email>haoyuan.li@gmail.com</email>
<url>http://www.cs.berkeley.edu/~haoyuan</url>
<organization>U.C. Berkeley Computer Science</organization>
<organizationUrl>http://www.cs.berkeley.edu/</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>Apache License</name>
<url>https://github.com/amplab/tachyon/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:amplab/tachyon.git</connection>
<developerConnection>scm:git:git@github.com:amplab/tachyon.git</developerConnection>
<tag>v0.4.1-thrift</tag>
<url>scm:git:git@github.com:amplab/tachyon.git</url>
</scm>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>UTF-8</encoding>
<maxmem>1024m</maxmem>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.14</version>
<configuration>
<argLine>-Dufs=${ufs}</argLine>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<systemPropertyVariables>
<log4j.configuration>file:src/test/resources/log4j.properties</log4j.configuration>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>tachyon.sample.ServerApp</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.apache.thrift:libthrift</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>org.apache.thrift:libthrift</artifact>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>org.apache.thrift</pattern>
<shadedPattern>tachyon.org.apache.thrift</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>integrationTest</id>
<dependencies>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-minicluster</artifactId>
<version>${hadoop.version}</version>
<exclusions>
<exclusion>
<artifactId>asm</artifactId>
<groupId>asm</groupId>
</exclusion>
<exclusion>
<artifactId>netty</artifactId>
<groupId>org.jboss.netty</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-core-asl</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-mapper-asl</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-jaxrs</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-xc</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
<ufs>tachyon.LocalMiniDFSCluster</ufs>
</properties>
</profile>
<profile>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-testCompile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<testExcludes>
<exclude>**/LocalMiniDFSCluster.java</exclude>
</testExcludes>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<maxmem>1024m</maxmem>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>1.0.4</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>asm</artifactId>
<groupId>asm</groupId>
</exclusion>
<exclusion>
<artifactId>netty</artifactId>
<groupId>org.jboss.netty</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-core-asl</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-mapper-asl</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-jaxrs</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-xc</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties />
</profile>
</profiles>
<repositories>
<repository>
<releases />
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>cloudera-repo</id>
<name>Cloudera Repository</name>
<url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.9.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jsp</artifactId>
<version>7.6.8.v20121106</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>7.6.8.v20121106</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>7.6.8.v20121106</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>7.6.8.v20121106</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>1.5.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>powermock-module-junit4-common</artifactId>
<groupId>org.powermock</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>1.5.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>mockito-all</artifactId>
<groupId>org.mockito</groupId>
</exclusion>
<exclusion>
<artifactId>powermock-api-support</artifactId>
<groupId>org.powermock</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>2.1.0-incubating</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>netty</artifactId>
<groupId>org.jboss.netty</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-test</artifactId>
<version>2.1.0-incubating</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>javassist</artifactId>
<groupId>org.javassist</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>1.0.4</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>asm</artifactId>
<groupId>asm</groupId>
</exclusion>
<exclusion>
<artifactId>netty</artifactId>
<groupId>org.jboss.netty</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-core-asl</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-mapper-asl</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-jaxrs</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-xc</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<configuration>
<show>public</show>
</configuration>
</plugin>
</plugins>
</reporting>
<properties>
<slf4j.version>1.7.2</slf4j.version>
<java.version>1.6</java.version>
<jetty.version>7.6.8.v20121106</jetty.version>
<libthrift.version>0.9.0</libthrift.version>
<powermock.version>1.5.4</powermock.version>
<log4j.version>1.2.17</log4j.version>
<cxf.version>2.7.0</cxf.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<hadoop.version>1.0.4</hadoop.version>
<apache.curator.version>2.1.0-incubating</apache.curator.version>
</properties>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
version.properties
tachyon.UserInfo.class
tachyon.UnderFileSystemHdfs.class
tachyon.Log4jFileAppender.class
tachyon.UnderFileSystemSingleLocal$1.class
tachyon.hadoop.TFS.class
tachyon.hadoop.HdfsFileOutputStream.class
tachyon.hadoop.Utils.class
tachyon.hadoop.HdfsFileInputStream.class
tachyon.Constants.class
tachyon.Format.class
tachyon.UnderFileSystem.class
tachyon.UnderFileSystemHdfs$1.class
tachyon.HeartbeatThread.class
tachyon.UnderFileSystem$SpaceType.class
tachyon.UnderFileSystemSingleLocal.class
tachyon.Pair.class
tachyon.web.WebInterfaceDependencyServlet.class
tachyon.web.UIWebServer.class
tachyon.web.WebInterfaceBrowseServlet.class
tachyon.web.WebInterfaceGeneralServlet$NodeInfo.class
tachyon.web.WebInterfaceBrowseServlet$1.class
tachyon.web.WebInterfaceBrowseServlet$UiBlockInfo.class
tachyon.web.WebInterfaceMemoryServlet.class
tachyon.web.WebInterfaceBrowseServlet$UiFileInfo.class
tachyon.web.WebInterfaceGeneralServlet$1.class
tachyon.web.WebInterfaceGeneralServlet.class
tachyon.PrefixList.class
tachyon.io.JavaByteBufferWriter.class
tachyon.io.ByteBufferReader.class
tachyon.io.ByteBufferWriter.class
tachyon.io.JavaByteBufferReader.class
tachyon.io.Utils.class
tachyon.LeaderSelectorClient.class
tachyon.examples.Performance.class
tachyon.examples.Performance$GeneralWorker.class
tachyon.examples.Performance$Worker.class
tachyon.examples.BasicCheckpoint.class
tachyon.examples.BasicRawTableOperations.class
tachyon.examples.BasicOperations.class
tachyon.examples.Utils.class
tachyon.examples.Performance$TachyonReadWorker.class
tachyon.examples.Performance$HdfsWorker.class
tachyon.examples.Performance$TachyonWriterWorker.class
tachyon.Users.class
tachyon.HeartbeatExecutor.class
tachyon.Version.class
tachyon.conf.UserConf.class
tachyon.conf.WorkerConf.class
tachyon.conf.Utils.class
tachyon.conf.CommonConf.class
tachyon.conf.MasterConf.class
tachyon.LeaderInquireClient.class
tachyon.master.Image.class
tachyon.master.MasterInfo.class
tachyon.master.EditLogProcessor.class
tachyon.master.MasterClient.class
tachyon.master.MasterInfo$RecomputationScheduler.class
tachyon.master.Master.class
tachyon.master.BlockInfo.class
tachyon.master.Journal.class
tachyon.master.MasterWorkerInfo.class
tachyon.master.Dependency.class
tachyon.master.Inode.class
tachyon.master.MasterServiceHandler.class
tachyon.master.EditLog.class
tachyon.master.DependencyVariables.class
tachyon.master.MasterClientHeartbeatExecutor.class
tachyon.master.InodeFolder.class
tachyon.master.DependencyType.class
tachyon.master.InodeType.class
tachyon.master.InodeFile.class
tachyon.master.MasterInfo$MasterInfoHeartbeatExecutor.class
tachyon.master.InodeRawTable.class
tachyon.master.MasterInfo$RecomputeCmd.class
tachyon.master.CheckpointInfo.class
tachyon.client.OutStream.class
tachyon.client.ReadType.class
tachyon.client.TachyonFS.class
tachyon.client.WriteType.class
tachyon.client.RemoteBlockInStream.class
tachyon.client.InStream.class
tachyon.client.FileOutStream.class
tachyon.client.EmptyBlockInStream.class
tachyon.client.FileInStream.class
tachyon.client.table.RawTable.class
tachyon.client.table.RawColumn.class
tachyon.client.LocalBlockInStream.class
tachyon.client.TachyonFile.class
tachyon.client.BlockInStream.class
tachyon.client.TachyonByteBuffer.class
tachyon.client.BlockOutStream.class
tachyon.worker.Worker.class
tachyon.worker.Worker$1.class
tachyon.worker.WorkerClient.class
tachyon.worker.DataServer.class
tachyon.worker.WorkerSpaceCounter.class
tachyon.worker.WorkerClientHeartbeatExecutor.class
tachyon.worker.DataServerMessage.class
tachyon.worker.BlocksLocker.class
tachyon.worker.WorkerStorage$CheckpointThread.class
tachyon.worker.WorkerServiceHandler.class
tachyon.worker.WorkerStorage.class
tachyon.util.CommonUtils.class
tachyon.util.UnderfsUtil.class
tachyon.util.CommonUtils$1.class
tachyon.command.TFsShell.class
tachyon.command.Utils.class
tachyon.thrift.MasterService$worker_getPinIdList_args$worker_getPinIdList_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_deleteById_args$user_deleteById_argsTupleSchemeFactory.class
tachyon.thrift.NetAddress$NetAddressTupleSchemeFactory.class
tachyon.thrift.MasterService$user_updateRawTableMetadata_args$user_updateRawTableMetadata_argsStandardScheme.class
tachyon.thrift.MasterService$worker_getPriorityDependencyList_result.class
tachyon.thrift.MasterService$addCheckpoint_args$addCheckpoint_argsTupleScheme.class
tachyon.thrift.WorkerService$accessBlock_args$accessBlock_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getFileId_args$user_getFileId_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_deleteById_args$user_deleteById_argsStandardScheme.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_args$_Fields.class
tachyon.thrift.MasterService$AsyncClient$user_outOfMemoryForPinFile_call.class
tachyon.thrift.MasterService$getWorkersInfo_result$getWorkersInfo_resultTupleScheme.class
tachyon.thrift.MasterService$AsyncClient$worker_cacheBlock_call.class
tachyon.thrift.MasterService$user_getClientDependencyInfo_result.class
tachyon.thrift.MasterService$user_deleteById_result.class
tachyon.thrift.MasterService$user_updateRawTableMetadata_args$_Fields.class
tachyon.thrift.MasterService$user_listFiles_result$_Fields.class
tachyon.thrift.MasterService$user_getClientFileInfoByPath_result$user_getClientFileInfoByPath_resultStandardScheme.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_result$_Fields.class
tachyon.thrift.MasterService$user_getClientDependencyInfo_args$user_getClientDependencyInfo_argsStandardScheme.class
tachyon.thrift.WorkerService$AsyncClient$lockBlock_call.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_args$_Fields.class
tachyon.thrift.MasterService$user_getNumberOfFiles_result$user_getNumberOfFiles_resultTupleScheme.class
tachyon.thrift.MasterService$worker_getPinIdList_result$worker_getPinIdList_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$worker_register_result$worker_register_resultStandardScheme.class
tachyon.thrift.MasterService$worker_register_args$worker_register_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$liststatus_result$liststatus_resultTupleScheme.class
tachyon.thrift.MasterService$user_createRawTable_args$user_createRawTable_argsTupleScheme.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_args$user_outOfMemoryForPinFile_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$cacheBlock_args.class
tachyon.thrift.MasterService$user_updateRawTableMetadata_result$_Fields.class
tachyon.thrift.MasterService$user_getClientDependencyInfo_result$user_getClientDependencyInfo_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_result$_Fields.class
tachyon.thrift.ClientBlockInfo$ClientBlockInfoStandardScheme.class
tachyon.thrift.MasterService$user_unpinFile_result$user_unpinFile_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getUserId_args.class
tachyon.thrift.MasterService$user_reportLostFile_args$user_reportLostFile_argsTupleScheme.class
tachyon.thrift.WorkerService$Processor$unlockBlock.class
tachyon.thrift.WorkerService$1.class
tachyon.thrift.MasterService$user_createDependency_args.class
tachyon.thrift.MasterService$AsyncClient$worker_register_call.class
tachyon.thrift.MasterService$user_getClientFileInfoByPath_result.class
tachyon.thrift.WorkerService$getDataFolder_args$getDataFolder_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$AsyncClient$requestSpace_call.class
tachyon.thrift.MasterService$user_getClientBlockInfo_result$user_getClientBlockInfo_resultStandardScheme.class
tachyon.thrift.MasterService$user_deleteById_result$user_deleteById_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_createRawTable_args$user_createRawTable_argsStandardSchemeFactory.class
tachyon.thrift.Command.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_args$user_createFileOnCheckpoint_argsStandardScheme.class
tachyon.thrift.MasterService$user_listFiles_args$_Fields.class
tachyon.thrift.MasterService$user_getUserId_args$user_getUserId_argsStandardSchemeFactory.class
tachyon.thrift.ClientBlockInfo$ClientBlockInfoTupleScheme.class
tachyon.thrift.WorkerService$addCheckpoint_args$_Fields.class
tachyon.thrift.WorkerService$returnSpace_result$returnSpace_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$accessBlock_args$accessBlock_argsTupleScheme.class
tachyon.thrift.MasterService$worker_getPriorityDependencyList_args.class
tachyon.thrift.MasterService.class
tachyon.thrift.WorkerService$addCheckpoint_result.class
tachyon.thrift.MasterService$worker_getPinIdList_result$worker_getPinIdList_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_result$user_outOfMemoryForPinFile_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_updateRawTableMetadata_result$user_updateRawTableMetadata_resultStandardSchemeFactory.class
tachyon.thrift.WorkerService$lockBlock_args$lockBlock_argsStandardScheme.class
tachyon.thrift.WorkerService$userHeartbeat_args$userHeartbeat_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$Processor$worker_cacheBlock.class
tachyon.thrift.MasterService$user_ls_result$user_ls_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getBlockId_result$user_getBlockId_resultStandardSchemeFactory.class
tachyon.thrift.WorkerService$Client$Factory.class
tachyon.thrift.OutOfMemoryForPinFileException.class
tachyon.thrift.MasterService$addCheckpoint_result$_Fields.class
tachyon.thrift.MasterService$user_getRawTableId_args$_Fields.class
tachyon.thrift.MasterService$user_createRawTable_result$user_createRawTable_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_deleteById_args$user_deleteById_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getClientBlockInfo_result$user_getClientBlockInfo_resultStandardSchemeFactory.class
tachyon.thrift.WorkerService$accessBlock_result$_Fields.class
tachyon.thrift.FailedToCheckpointException$_Fields.class
tachyon.thrift.MasterService$AsyncClient$user_getUserId_call.class
tachyon.thrift.OutOfMemoryForPinFileException$1.class
tachyon.thrift.WorkerService$getUserTempFolder_result$getUserTempFolder_resultStandardScheme.class
tachyon.thrift.MasterService$user_getWorker_result$user_getWorker_resultTupleScheme.class
tachyon.thrift.MasterService$worker_heartbeat_args$_Fields.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_args.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_args.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_result$user_createFileOnCheckpoint_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_unpinFile_args$_Fields.class
tachyon.thrift.WorkerService$requestSpace_result$requestSpace_resultTupleScheme.class
tachyon.thrift.MasterService$Processor$user_outOfMemoryForPinFile.class
tachyon.thrift.MasterService$AsyncClient$user_unpinFile_call.class
tachyon.thrift.MasterService$Client$Factory.class
tachyon.thrift.MasterService$user_ls_result$_Fields.class
tachyon.thrift.BlockInfoException$BlockInfoExceptionTupleSchemeFactory.class
tachyon.thrift.InvalidPathException.class
tachyon.thrift.MasterService$user_mkdir_args$user_mkdir_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$getUserTempFolder_result$_Fields.class
tachyon.thrift.MasterService$user_getClientBlockInfo_args$user_getClientBlockInfo_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getUnderfsAddress_args$user_getUnderfsAddress_argsStandardSchemeFactory.class
tachyon.thrift.NetAddress$NetAddressStandardScheme.class
tachyon.thrift.MasterService$Processor$user_getUserId.class
tachyon.thrift.NetAddress.class
tachyon.thrift.MasterService$user_getFileId_result$user_getFileId_resultTupleScheme.class
tachyon.thrift.MasterService$user_getUnderfsAddress_result$user_getUnderfsAddress_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_createNewBlock_result$user_createNewBlock_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getFileBlocksById_args$user_getFileBlocksById_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$requestSpace_result$requestSpace_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$getClientFileInfoById_args$getClientFileInfoById_argsStandardScheme.class
tachyon.thrift.MasterService$user_getClientBlockInfo_result.class
tachyon.thrift.MasterService$user_getWorker_args$user_getWorker_argsTupleScheme.class
tachyon.thrift.MasterService$user_getFileBlocksById_result.class
tachyon.thrift.WorkerService$requestSpace_args$requestSpace_argsStandardScheme.class
tachyon.thrift.MasterService$user_getClientFileInfoByPath_args$user_getClientFileInfoByPath_argsTupleSchemeFactory.class
tachyon.thrift.WorkerService$accessBlock_args$accessBlock_argsStandardScheme.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_result$_Fields.class
tachyon.thrift.MasterService$user_updateRawTableMetadata_args$user_updateRawTableMetadata_argsTupleSchemeFactory.class
tachyon.thrift.ClientRawTableInfo.class
tachyon.thrift.ClientDependencyInfo$ClientDependencyInfoStandardScheme.class
tachyon.thrift.MasterService$AsyncClient$user_getFileId_call.class
tachyon.thrift.MasterService$AsyncClient$liststatus_call.class
tachyon.thrift.MasterService$worker_register_result$worker_register_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$AsyncClient$user_deleteByPath_call.class
tachyon.thrift.WorkerService$asyncCheckpoint_args$asyncCheckpoint_argsTupleSchemeFactory.class
tachyon.thrift.WorkerService$getDataFolder_args$getDataFolder_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getClientRawTableInfoByPath_args.class
tachyon.thrift.MasterService$user_getBlockId_args$user_getBlockId_argsStandardScheme.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_result$user_getFileBlocksByPath_resultTupleScheme.class
tachyon.thrift.MasterService$user_getRawTableId_args.class
tachyon.thrift.MasterService$user_renameTo_args$_Fields.class
tachyon.thrift.WorkerService$getDataFolder_result$getDataFolder_resultStandardScheme.class
tachyon.thrift.MasterService$liststatus_args$liststatus_argsStandardSchemeFactory.class
tachyon.thrift.FileAlreadyExistException$FileAlreadyExistExceptionStandardScheme.class
tachyon.thrift.MasterService$user_createDependency_args$user_createDependency_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_args$_Fields.class
tachyon.thrift.MasterService$user_createNewBlock_args$_Fields.class
tachyon.thrift.MasterService$user_createFile_result$_Fields.class
tachyon.thrift.MasterService$user_updateRawTableMetadata_args$user_updateRawTableMetadata_argsTupleScheme.class
tachyon.thrift.FileDoesNotExistException$FileDoesNotExistExceptionStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getFileBlocksById_result$user_getFileBlocksById_resultTupleSchemeFactory.class
tachyon.thrift.TableColumnException$TableColumnExceptionTupleScheme.class
tachyon.thrift.MasterService$Processor$user_getFileBlocksByPath.class
tachyon.thrift.WorkerService$lockBlock_args$lockBlock_argsTupleSchemeFactory.class
tachyon.thrift.WorkerService$returnSpace_result$returnSpace_resultTupleScheme.class
tachyon.thrift.MasterService$worker_cacheBlock_result$worker_cacheBlock_resultStandardScheme.class
tachyon.thrift.MasterService$liststatus_args$_Fields.class
tachyon.thrift.MasterService$user_getWorker_args$user_getWorker_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getFileId_args$user_getFileId_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_completeFile_args$user_completeFile_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_deleteByPath_args$user_deleteByPath_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$AsyncClient$Factory.class
tachyon.thrift.Command$1.class
tachyon.thrift.MasterService$getClientFileInfoById_args.class
tachyon.thrift.MasterService$user_unpinFile_args$user_unpinFile_argsTupleScheme.class
tachyon.thrift.WorkerService$unlockBlock_result$unlockBlock_resultTupleScheme.class
tachyon.thrift.ClientFileInfo.class
tachyon.thrift.MasterService$user_getUserId_args$user_getUserId_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getClientBlockInfo_args.class
tachyon.thrift.TachyonException$TachyonExceptionTupleSchemeFactory.class
tachyon.thrift.WorkerService$addCheckpoint_args$addCheckpoint_argsTupleScheme.class
tachyon.thrift.WorkerService$asyncCheckpoint_args$asyncCheckpoint_argsTupleScheme.class
tachyon.thrift.MasterService$Processor$getClientFileInfoById.class
tachyon.thrift.MasterService$user_getClientBlockInfo_args$user_getClientBlockInfo_argsTupleScheme.class
tachyon.thrift.MasterService$Processor$user_deleteByPath.class
tachyon.thrift.MasterService$user_getClientBlockInfo_args$user_getClientBlockInfo_argsStandardScheme.class
tachyon.thrift.TableDoesNotExistException$1.class
tachyon.thrift.MasterService$user_rename_result$user_rename_resultTupleScheme.class
tachyon.thrift.MasterService$worker_cacheBlock_args$worker_cacheBlock_argsTupleScheme.class
tachyon.thrift.MasterService$Processor$user_completeFile.class
tachyon.thrift.MasterService$user_ls_args.class
tachyon.thrift.DependencyDoesNotExistException$DependencyDoesNotExistExceptionStandardScheme.class
tachyon.thrift.MasterService$user_renameTo_args$user_renameTo_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getNumberOfFiles_args$_Fields.class
tachyon.thrift.MasterService$getWorkersInfo_args$getWorkersInfo_argsTupleScheme.class
tachyon.thrift.MasterService$user_getClientBlockInfo_args$user_getClientBlockInfo_argsTupleSchemeFactory.class
tachyon.thrift.WorkerService$requestSpace_result.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_result$_Fields.class
tachyon.thrift.MasterService$worker_heartbeat_result$worker_heartbeat_resultStandardSchemeFactory.class
tachyon.thrift.WorkerService$unlockBlock_args.class
tachyon.thrift.MasterService$user_getFileId_args.class
tachyon.thrift.MasterService$AsyncClient$user_getWorker_call.class
tachyon.thrift.WorkerService$getDataFolder_result.class
tachyon.thrift.MasterService$user_createNewBlock_args.class
tachyon.thrift.MasterService$user_getClientFileInfoByPath_result$user_getClientFileInfoByPath_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$asyncCheckpoint_args$asyncCheckpoint_argsStandardScheme.class
tachyon.thrift.MasterService$worker_register_result$worker_register_resultTupleScheme.class
tachyon.thrift.DependencyDoesNotExistException$DependencyDoesNotExistExceptionStandardSchemeFactory.class
tachyon.thrift.MasterService$worker_heartbeat_args$worker_heartbeat_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$getClientFileInfoById_result$getClientFileInfoById_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$addCheckpoint_result$addCheckpoint_resultStandardScheme.class
tachyon.thrift.WorkerService$lockBlock_args$_Fields.class
tachyon.thrift.MasterService$Iface.class
tachyon.thrift.WorkerService$unlockBlock_args$unlockBlock_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$getClientFileInfoById_result$getClientFileInfoById_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getRawTableId_args$user_getRawTableId_argsStandardScheme.class
tachyon.thrift.MasterService$user_getUserId_result$user_getUserId_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getWorker_args.class
tachyon.thrift.MasterService$user_getFileBlocksById_result$user_getFileBlocksById_resultTupleScheme.class
tachyon.thrift.MasterService$user_unpinFile_args$user_unpinFile_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_result$user_createFileOnCheckpoint_resultStandardScheme.class
tachyon.thrift.MasterService$user_rename_result$_Fields.class
tachyon.thrift.ClientRawTableInfo$_Fields.class
tachyon.thrift.ClientWorkerInfo$ClientWorkerInfoStandardSchemeFactory.class
tachyon.thrift.DependencyDoesNotExistException.class
tachyon.thrift.WorkerService$requestSpace_result$requestSpace_resultStandardScheme.class
tachyon.thrift.MasterService$user_getClientRawTableInfoByPath_result$_Fields.class
tachyon.thrift.MasterService$user_getFileId_args$user_getFileId_argsStandardScheme.class
tachyon.thrift.MasterService$user_createFile_result$user_createFile_resultStandardScheme.class
tachyon.thrift.WorkerService$unlockBlock_args$_Fields.class
tachyon.thrift.MasterService$user_getClientRawTableInfoByPath_args$user_getClientRawTableInfoByPath_argsTupleSchemeFactory.class
tachyon.thrift.WorkerService$AsyncClient$accessBlock_call.class
tachyon.thrift.MasterService$user_listFiles_args$user_listFiles_argsStandardScheme.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_result$user_getClientRawTableInfoById_resultTupleScheme.class
tachyon.thrift.WorkerService$Processor$addCheckpoint.class
tachyon.thrift.MasterService$worker_heartbeat_args$worker_heartbeat_argsTupleScheme.class
tachyon.thrift.OutOfMemoryForPinFileException$_Fields.class
tachyon.thrift.MasterService$user_getBlockId_args$user_getBlockId_argsTupleSchemeFactory.class
tachyon.thrift.ClientWorkerInfo$1.class
tachyon.thrift.WorkerService$returnSpace_args$returnSpace_argsStandardScheme.class
tachyon.thrift.WorkerService$userHeartbeat_result$userHeartbeat_resultTupleScheme.class
tachyon.thrift.InvalidPathException$1.class
tachyon.thrift.MasterService$worker_getPriorityDependencyList_args$worker_getPriorityDependencyList_argsTupleScheme.class
tachyon.thrift.MasterService$user_getFileBlocksById_args$user_getFileBlocksById_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_args$user_getClientRawTableInfoById_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$AsyncClient$getWorkersInfo_call.class
tachyon.thrift.SuspectedFileSizeException.class
tachyon.thrift.MasterService$worker_getPriorityDependencyList_args$worker_getPriorityDependencyList_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getNumberOfFiles_result$user_getNumberOfFiles_resultStandardScheme.class
tachyon.thrift.MasterService$user_getUserId_args$_Fields.class
tachyon.thrift.TableColumnException.class
tachyon.thrift.FileAlreadyExistException$FileAlreadyExistExceptionTupleSchemeFactory.class
tachyon.thrift.MasterService$worker_getPinIdList_args$_Fields.class
tachyon.thrift.MasterService$Processor$user_unpinFile.class
tachyon.thrift.WorkerService$lockBlock_result$lockBlock_resultTupleScheme.class
tachyon.thrift.MasterService$user_createNewBlock_result$_Fields.class
tachyon.thrift.MasterService$user_listFiles_args.class
tachyon.thrift.FileDoesNotExistException.class
tachyon.thrift.MasterService$user_getClientDependencyInfo_result$user_getClientDependencyInfo_resultTupleScheme.class
tachyon.thrift.SuspectedFileSizeException$SuspectedFileSizeExceptionTupleScheme.class
tachyon.thrift.MasterService$worker_getPriorityDependencyList_result$worker_getPriorityDependencyList_resultStandardScheme.class
tachyon.thrift.MasterService$user_getBlockId_args$_Fields.class
tachyon.thrift.MasterService$AsyncClient$user_getNumberOfFiles_call.class
tachyon.thrift.BlockInfoException$BlockInfoExceptionStandardScheme.class
tachyon.thrift.MasterService$user_createNewBlock_args$user_createNewBlock_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getRawTableId_result$_Fields.class
tachyon.thrift.TableColumnException$1.class
tachyon.thrift.MasterService$user_createFile_result$user_createFile_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$worker_register_args$_Fields.class
tachyon.thrift.MasterService$worker_register_args$worker_register_argsTupleScheme.class
tachyon.thrift.ClientRawTableInfo$ClientRawTableInfoTupleScheme.class
tachyon.thrift.MasterService$user_listFiles_result$user_listFiles_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$addCheckpoint_args$_Fields.class
tachyon.thrift.MasterService$user_getUnderfsAddress_result$user_getUnderfsAddress_resultStandardScheme.class
tachyon.thrift.MasterService$getWorkersInfo_args$getWorkersInfo_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_args$user_getClientRawTableInfoById_argsStandardScheme.class
tachyon.thrift.SuspectedFileSizeException$1.class
tachyon.thrift.MasterService$worker_getPinIdList_result.class
tachyon.thrift.MasterService$Processor$user_reportLostFile.class
tachyon.thrift.MasterService$user_deleteById_result$_Fields.class
tachyon.thrift.MasterService$user_createFile_args$_Fields.class
tachyon.thrift.MasterService$user_renameTo_result.class
tachyon.thrift.MasterService$addCheckpoint_result$addCheckpoint_resultTupleScheme.class
tachyon.thrift.NoWorkerException$NoWorkerExceptionTupleSchemeFactory.class
tachyon.thrift.MasterService$user_mkdir_result.class
tachyon.thrift.WorkerService$lockBlock_result$_Fields.class
tachyon.thrift.MasterService$user_getClientFileInfoByPath_args$_Fields.class
tachyon.thrift.WorkerService$returnSpace_result$_Fields.class
tachyon.thrift.WorkerService$AsyncIface.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_result$user_outOfMemoryForPinFile_resultTupleScheme.class
tachyon.thrift.WorkerService$AsyncClient$cacheBlock_call.class
tachyon.thrift.WorkerService$requestSpace_args$requestSpace_argsTupleScheme.class
tachyon.thrift.MasterService$user_createDependency_result$user_createDependency_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$userHeartbeat_result$userHeartbeat_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_args$user_getFileBlocksByPath_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$lockBlock_result$lockBlock_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$Processor$liststatus.class
tachyon.thrift.WorkerService$accessBlock_args.class
tachyon.thrift.TableColumnException$TableColumnExceptionStandardScheme.class
tachyon.thrift.ClientWorkerInfo$ClientWorkerInfoStandardScheme.class
tachyon.thrift.WorkerService$returnSpace_args$_Fields.class
tachyon.thrift.ClientDependencyInfo$1.class
tachyon.thrift.WorkerService$unlockBlock_result$unlockBlock_resultStandardScheme.class
tachyon.thrift.MasterService$Processor$worker_register.class
tachyon.thrift.FailedToCheckpointException$FailedToCheckpointExceptionTupleScheme.class
tachyon.thrift.MasterService$AsyncClient$user_createDependency_call.class
tachyon.thrift.MasterService$user_getBlockId_result$_Fields.class
tachyon.thrift.MasterService$user_getWorker_result$user_getWorker_resultTupleSchemeFactory.class
tachyon.thrift.ClientDependencyInfo$_Fields.class
tachyon.thrift.MasterService$Processor$user_createNewBlock.class
tachyon.thrift.WorkerService$AsyncClient$returnSpace_call.class
tachyon.thrift.WorkerService$getDataFolder_args$getDataFolder_argsTupleScheme.class
tachyon.thrift.MasterService$worker_heartbeat_result$_Fields.class
tachyon.thrift.FileAlreadyExistException$FileAlreadyExistExceptionStandardSchemeFactory.class
tachyon.thrift.MasterService$addCheckpoint_args.class
tachyon.thrift.TachyonException$TachyonExceptionStandardSchemeFactory.class
tachyon.thrift.FailedToCheckpointException$FailedToCheckpointExceptionStandardSchemeFactory.class
tachyon.thrift.MasterService$user_mkdir_result$_Fields.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_result.class
tachyon.thrift.MasterService$user_getUnderfsAddress_args$user_getUnderfsAddress_argsTupleScheme.class
tachyon.thrift.MasterService$user_requestFilesInDependency_args$user_requestFilesInDependency_argsStandardScheme.class
tachyon.thrift.InvalidPathException$_Fields.class
tachyon.thrift.MasterService$user_createDependency_args$user_createDependency_argsStandardScheme.class
tachyon.thrift.MasterService$user_completeFile_result.class
tachyon.thrift.MasterService$user_updateRawTableMetadata_args$user_updateRawTableMetadata_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$getUserTempFolder_args$getUserTempFolder_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_reportLostFile_args$_Fields.class
tachyon.thrift.ClientDependencyInfo.class
tachyon.thrift.WorkerService$getDataFolder_result$getDataFolder_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$AsyncClient$user_createFileOnCheckpoint_call.class
tachyon.thrift.MasterService$getClientFileInfoById_args$_Fields.class
tachyon.thrift.MasterService$user_createFile_args.class
tachyon.thrift.MasterService$user_getWorker_args$user_getWorker_argsTupleSchemeFactory.class
tachyon.thrift.WorkerService$getUserTempFolder_args$getUserTempFolder_argsTupleScheme.class
tachyon.thrift.MasterService$user_createFile_result$user_createFile_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$requestSpace_result$_Fields.class
tachyon.thrift.MasterService$user_createNewBlock_args$user_createNewBlock_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getUnderfsAddress_args$_Fields.class
tachyon.thrift.Command$_Fields.class
tachyon.thrift.WorkerService$asyncCheckpoint_result.class
tachyon.thrift.MasterService$1.class
tachyon.thrift.WorkerService$accessBlock_result$accessBlock_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getBlockId_args$user_getBlockId_argsTupleScheme.class
tachyon.thrift.WorkerService$Processor$getDataFolder.class
tachyon.thrift.MasterService$AsyncClient$user_requestFilesInDependency_call.class
tachyon.thrift.MasterService$user_listFiles_result.class
tachyon.thrift.TachyonException$1.class
tachyon.thrift.MasterService$Processor$user_ls.class
tachyon.thrift.WorkerService$Iface.class
tachyon.thrift.MasterService$AsyncClient$user_getUnderfsAddress_call.class
tachyon.thrift.MasterService$Processor$worker_heartbeat.class
tachyon.thrift.MasterService$user_createDependency_result$_Fields.class
tachyon.thrift.MasterService$user_reportLostFile_args$user_reportLostFile_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$accessBlock_args$accessBlock_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$Processor$user_getClientFileInfoByPath.class
tachyon.thrift.MasterService$worker_heartbeat_result$worker_heartbeat_resultStandardScheme.class
tachyon.thrift.MasterService$user_getClientDependencyInfo_args$user_getClientDependencyInfo_argsTupleScheme.class
tachyon.thrift.TableColumnException$TableColumnExceptionStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getClientRawTableInfoByPath_result.class
tachyon.thrift.WorkerService$AsyncClient$addCheckpoint_call.class
tachyon.thrift.MasterService$user_rename_args$_Fields.class
tachyon.thrift.MasterService$user_mkdir_result$user_mkdir_resultTupleScheme.class
tachyon.thrift.MasterService$user_createDependency_result$user_createDependency_resultTupleScheme.class
tachyon.thrift.MasterService$getWorkersInfo_args$_Fields.class
tachyon.thrift.FileDoesNotExistException$_Fields.class
tachyon.thrift.MasterService$user_getClientRawTableInfoByPath_args$_Fields.class
tachyon.thrift.WorkerService$unlockBlock_result$_Fields.class
tachyon.thrift.NoWorkerException.class
tachyon.thrift.FileAlreadyExistException$FileAlreadyExistExceptionTupleScheme.class
tachyon.thrift.WorkerService$userHeartbeat_args$userHeartbeat_argsTupleScheme.class
tachyon.thrift.TachyonException$TachyonExceptionTupleScheme.class
tachyon.thrift.MasterService$worker_cacheBlock_result$worker_cacheBlock_resultStandardSchemeFactory.class
tachyon.thrift.WorkerService$requestSpace_args$requestSpace_argsTupleSchemeFactory.class
tachyon.thrift.NetAddress$NetAddressStandardSchemeFactory.class
tachyon.thrift.MasterService$worker_getPinIdList_args.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_args$user_createFileOnCheckpoint_argsTupleScheme.class
tachyon.thrift.MasterService$addCheckpoint_result.class
tachyon.thrift.MasterService$Processor$user_rename.class
tachyon.thrift.MasterService$worker_getPriorityDependencyList_result$_Fields.class
tachyon.thrift.WorkerService$addCheckpoint_result$_Fields.class
tachyon.thrift.MasterService$AsyncClient.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_result$getUserUnderfsTempFolder_resultStandardScheme.class
tachyon.thrift.WorkerService$asyncCheckpoint_result$asyncCheckpoint_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$worker_heartbeat_result$worker_heartbeat_resultTupleScheme.class
tachyon.thrift.MasterService$liststatus_args.class
tachyon.thrift.MasterService$user_updateRawTableMetadata_result.class
tachyon.thrift.MasterService$user_getFileBlocksById_result$user_getFileBlocksById_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$getWorkersInfo_args.class
tachyon.thrift.MasterService$user_deleteById_result$user_deleteById_resultStandardScheme.class
tachyon.thrift.MasterService$user_completeFile_result$user_completeFile_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_mkdir_args$user_mkdir_argsStandardScheme.class
tachyon.thrift.MasterService$user_createRawTable_args$user_createRawTable_argsStandardScheme.class
tachyon.thrift.FileDoesNotExistException$1.class
tachyon.thrift.MasterService$user_getRawTableId_args$user_getRawTableId_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$cacheBlock_args$cacheBlock_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$getClientFileInfoById_result.class
tachyon.thrift.MasterService$user_requestFilesInDependency_args$user_requestFilesInDependency_argsTupleScheme.class
tachyon.thrift.WorkerService$Client.class
tachyon.thrift.MasterService$user_completeFile_result$user_completeFile_resultTupleScheme.class
tachyon.thrift.MasterService$worker_register_result$_Fields.class
tachyon.thrift.Command$CommandTupleScheme.class
tachyon.thrift.MasterService$addCheckpoint_result$addCheckpoint_resultStandardScheme.class
tachyon.thrift.MasterService$user_rename_result$user_rename_resultStandardScheme.class
tachyon.thrift.DependencyDoesNotExistException$DependencyDoesNotExistExceptionTupleScheme.class
tachyon.thrift.MasterService$user_getRawTableId_result$user_getRawTableId_resultStandardSchemeFactory.class
tachyon.thrift.WorkerService$Processor$requestSpace.class
tachyon.thrift.MasterService$addCheckpoint_args$addCheckpoint_argsTupleSchemeFactory.class
tachyon.thrift.WorkerService$asyncCheckpoint_args.class
tachyon.thrift.MasterService$user_createFile_result$user_createFile_resultTupleScheme.class
tachyon.thrift.MasterService$user_getClientDependencyInfo_args$user_getClientDependencyInfo_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_result$getUserUnderfsTempFolder_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$cacheBlock_result$_Fields.class
tachyon.thrift.ClientDependencyInfo$ClientDependencyInfoTupleScheme.class
tachyon.thrift.WorkerService$accessBlock_result.class
tachyon.thrift.MasterService$user_getClientFileInfoByPath_result$_Fields.class
tachyon.thrift.MasterService$user_getRawTableId_result$user_getRawTableId_resultTupleSchemeFactory.class
tachyon.thrift.ClientWorkerInfo.class
tachyon.thrift.WorkerService$Processor$accessBlock.class
tachyon.thrift.WorkerService$lockBlock_result$lockBlock_resultStandardScheme.class
tachyon.thrift.MasterService$AsyncIface.class
tachyon.thrift.MasterService$user_deleteById_args.class
tachyon.thrift.MasterService$user_rename_args$user_rename_argsStandardSchemeFactory.class
tachyon.thrift.FileAlreadyExistException$1.class
tachyon.thrift.MasterService$user_getFileId_result$_Fields.class
tachyon.thrift.MasterService$user_getClientRawTableInfoByPath_args$user_getClientRawTableInfoByPath_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$returnSpace_result$returnSpace_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_reportLostFile_result$user_reportLostFile_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_listFiles_args$user_listFiles_argsTupleScheme.class
tachyon.thrift.WorkerService$getDataFolder_args$_Fields.class
tachyon.thrift.TableDoesNotExistException$TableDoesNotExistExceptionStandardScheme.class
tachyon.thrift.MasterService$user_getClientBlockInfo_args$_Fields.class
tachyon.thrift.MasterService$user_createRawTable_args.class
tachyon.thrift.DependencyDoesNotExistException$DependencyDoesNotExistExceptionTupleSchemeFactory.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_args$user_outOfMemoryForPinFile_argsTupleScheme.class
tachyon.thrift.MasterService$user_getWorker_result$user_getWorker_resultStandardScheme.class
tachyon.thrift.MasterService$user_reportLostFile_args$user_reportLostFile_argsStandardScheme.class
tachyon.thrift.TableColumnException$TableColumnExceptionTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_result$user_getFileBlocksByPath_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$Processor$addCheckpoint.class
tachyon.thrift.WorkerService$Processor$userHeartbeat.class
tachyon.thrift.MasterService$user_reportLostFile_args$user_reportLostFile_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$Processor$user_getRawTableId.class
tachyon.thrift.WorkerService$getDataFolder_args$getDataFolder_argsStandardScheme.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_args$user_createFileOnCheckpoint_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_result$_Fields.class
tachyon.thrift.MasterService$user_renameTo_result$user_renameTo_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getBlockId_result.class
tachyon.thrift.WorkerService$Processor$getUserTempFolder.class
tachyon.thrift.MasterService$user_getUnderfsAddress_result$user_getUnderfsAddress_resultTupleScheme.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_result$user_getClientRawTableInfoById_resultStandardScheme.class
tachyon.thrift.ClientFileInfo$_Fields.class
tachyon.thrift.MasterService$user_createDependency_result.class
tachyon.thrift.MasterService$AsyncClient$user_renameTo_call.class
tachyon.thrift.MasterService$user_listFiles_result$user_listFiles_resultTupleSchemeFactory.class
tachyon.thrift.OutOfMemoryForPinFileException$OutOfMemoryForPinFileExceptionStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getClientRawTableInfoByPath_args$user_getClientRawTableInfoByPath_argsStandardScheme.class
tachyon.thrift.MasterService$user_getNumberOfFiles_args$user_getNumberOfFiles_argsTupleSchemeFactory.class
tachyon.thrift.ClientBlockInfo$ClientBlockInfoStandardSchemeFactory.class
tachyon.thrift.WorkerService$unlockBlock_args$unlockBlock_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$returnSpace_args$returnSpace_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_requestFilesInDependency_args$_Fields.class
tachyon.thrift.WorkerService$accessBlock_result$accessBlock_resultStandardScheme.class
tachyon.thrift.MasterService$user_getClientDependencyInfo_result$user_getClientDependencyInfo_resultStandardScheme.class
tachyon.thrift.MasterService$worker_cacheBlock_args$worker_cacheBlock_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_renameTo_result$user_renameTo_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$AsyncClient$user_createFile_call.class
tachyon.thrift.MasterService$user_deleteByPath_args$user_deleteByPath_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_args$user_outOfMemoryForPinFile_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_result.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_args$_Fields.class
tachyon.thrift.MasterService$user_createFile_args$user_createFile_argsTupleScheme.class
tachyon.thrift.WorkerService$getUserTempFolder_result.class
tachyon.thrift.MasterService$Processor$user_deleteById.class
tachyon.thrift.MasterService$user_getBlockId_result$user_getBlockId_resultTupleScheme.class
tachyon.thrift.MasterService$getClientFileInfoById_result$getClientFileInfoById_resultTupleScheme.class
tachyon.thrift.WorkerService$userHeartbeat_args$userHeartbeat_argsStandardScheme.class
tachyon.thrift.MasterService$AsyncClient$user_mkdir_call.class
tachyon.thrift.OutOfMemoryForPinFileException$OutOfMemoryForPinFileExceptionStandardScheme.class
tachyon.thrift.MasterService$user_getFileId_args$_Fields.class
tachyon.thrift.MasterService$user_getClientBlockInfo_result$user_getClientBlockInfo_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getClientDependencyInfo_args$_Fields.class
tachyon.thrift.MasterService$user_requestFilesInDependency_result$user_requestFilesInDependency_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_args$user_getFileBlocksByPath_argsStandardScheme.class
tachyon.thrift.WorkerService$userHeartbeat_result$userHeartbeat_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getRawTableId_result.class
tachyon.thrift.MasterService$user_deleteById_args$_Fields.class
tachyon.thrift.MasterService$user_getClientDependencyInfo_result$user_getClientDependencyInfo_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getUnderfsAddress_result$_Fields.class
tachyon.thrift.MasterService$AsyncClient$user_getClientFileInfoByPath_call.class
tachyon.thrift.WorkerService$lockBlock_args$lockBlock_argsTupleScheme.class
tachyon.thrift.MasterService$user_getUnderfsAddress_args$user_getUnderfsAddress_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$worker_cacheBlock_result.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_result$getUserUnderfsTempFolder_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_renameTo_args$user_renameTo_argsStandardScheme.class
tachyon.thrift.MasterService$worker_heartbeat_args$worker_heartbeat_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$worker_register_args$worker_register_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_result$user_createFileOnCheckpoint_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$AsyncClient$user_getClientBlockInfo_call.class
tachyon.thrift.MasterService$worker_getPriorityDependencyList_result$worker_getPriorityDependencyList_resultStandardSchemeFactory.class
tachyon.thrift.WorkerService$requestSpace_args.class
tachyon.thrift.MasterService$user_deleteById_result$user_deleteById_resultStandardSchemeFactory.class
tachyon.thrift.InvalidPathException$InvalidPathExceptionTupleSchemeFactory.class
tachyon.thrift.BlockInfoException$BlockInfoExceptionStandardSchemeFactory.class
tachyon.thrift.WorkerService$unlockBlock_args$unlockBlock_argsTupleScheme.class
tachyon.thrift.MasterService$user_ls_args$user_ls_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_completeFile_args$user_completeFile_argsTupleScheme.class
tachyon.thrift.MasterService$AsyncClient$user_getRawTableId_call.class
tachyon.thrift.MasterService$user_getClientFileInfoByPath_args$user_getClientFileInfoByPath_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_updateRawTableMetadata_result$user_updateRawTableMetadata_resultTupleSchemeFactory.class
tachyon.thrift.FailedToCheckpointException$1.class
tachyon.thrift.MasterService$addCheckpoint_result$addCheckpoint_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$cacheBlock_result.class
tachyon.thrift.WorkerService$Processor$getUserUnderfsTempFolder.class
tachyon.thrift.MasterService$worker_getPinIdList_args$worker_getPinIdList_argsStandardScheme.class
tachyon.thrift.WorkerService$getUserTempFolder_args$getUserTempFolder_argsStandardScheme.class
tachyon.thrift.SuspectedFileSizeException$SuspectedFileSizeExceptionStandardScheme.class
tachyon.thrift.WorkerService$AsyncClient$getUserTempFolder_call.class
tachyon.thrift.WorkerService$Processor$lockBlock.class
tachyon.thrift.MasterService$user_getClientFileInfoByPath_result$user_getClientFileInfoByPath_resultTupleScheme.class
tachyon.thrift.MasterService$AsyncClient$worker_getPriorityDependencyList_call.class
tachyon.thrift.MasterService$worker_getPriorityDependencyList_args$worker_getPriorityDependencyList_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_completeFile_result$user_completeFile_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_ls_result$user_ls_resultTupleScheme.class
tachyon.thrift.ClientBlockInfo$1.class
tachyon.thrift.MasterService$addCheckpoint_args$addCheckpoint_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$userHeartbeat_args.class
tachyon.thrift.MasterService$AsyncClient$user_completeFile_call.class
tachyon.thrift.WorkerService$unlockBlock_result.class
tachyon.thrift.WorkerService$addCheckpoint_args$addCheckpoint_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$getWorkersInfo_args$getWorkersInfo_argsTupleSchemeFactory.class
tachyon.thrift.WorkerService$getDataFolder_args.class
tachyon.thrift.WorkerService$AsyncClient$userHeartbeat_call.class
tachyon.thrift.MasterService$user_createNewBlock_result$user_createNewBlock_resultTupleScheme.class
tachyon.thrift.MasterService$user_getClientDependencyInfo_result$_Fields.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_args$getUserUnderfsTempFolder_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_requestFilesInDependency_args.class
tachyon.thrift.MasterService$AsyncClient$user_getClientDependencyInfo_call.class
tachyon.thrift.MasterService$user_getNumberOfFiles_result.class
tachyon.thrift.WorkerService.class
tachyon.thrift.MasterService$Processor$user_getUnderfsAddress.class
tachyon.thrift.WorkerService$asyncCheckpoint_args$_Fields.class
tachyon.thrift.WorkerService$userHeartbeat_result.class
tachyon.thrift.WorkerService$Processor.class
tachyon.thrift.MasterService$user_completeFile_args$user_completeFile_argsStandardScheme.class
tachyon.thrift.ClientWorkerInfo$_Fields.class
tachyon.thrift.WorkerService$cacheBlock_result$cacheBlock_resultStandardScheme.class
tachyon.thrift.MasterService$user_createDependency_args$_Fields.class
tachyon.thrift.ClientBlockInfo$ClientBlockInfoTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_result$user_getFileBlocksByPath_resultStandardScheme.class
tachyon.thrift.MasterService$user_reportLostFile_result$user_reportLostFile_resultTupleScheme.class
tachyon.thrift.MasterService$user_getClientRawTableInfoByPath_result$user_getClientRawTableInfoByPath_resultTupleSchemeFactory.class
tachyon.thrift.BlockInfoException$_Fields.class
tachyon.thrift.MasterService$user_getUserId_result.class
tachyon.thrift.TachyonException$TachyonExceptionStandardScheme.class
tachyon.thrift.WorkerService$cacheBlock_args$cacheBlock_argsStandardScheme.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_result.class
tachyon.thrift.MasterService$AsyncClient$user_getBlockId_call.class
tachyon.thrift.BlockInfoException$1.class
tachyon.thrift.MasterService$worker_getPinIdList_result$worker_getPinIdList_resultStandardScheme.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_result$user_outOfMemoryForPinFile_resultStandardScheme.class
tachyon.thrift.MasterService$user_ls_args$user_ls_argsTupleScheme.class
tachyon.thrift.MasterService$user_listFiles_result$user_listFiles_resultTupleScheme.class
tachyon.thrift.WorkerService$accessBlock_args$_Fields.class
tachyon.thrift.MasterService$user_getFileBlocksById_result$_Fields.class
tachyon.thrift.FileDoesNotExistException$FileDoesNotExistExceptionStandardScheme.class
tachyon.thrift.WorkerService$getDataFolder_result$getDataFolder_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_args$user_createFileOnCheckpoint_argsStandardSchemeFactory.class
tachyon.thrift.SuspectedFileSizeException$SuspectedFileSizeExceptionTupleSchemeFactory.class
tachyon.thrift.MasterService$user_requestFilesInDependency_args$user_requestFilesInDependency_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$worker_getPriorityDependencyList_result$worker_getPriorityDependencyList_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_reportLostFile_result$user_reportLostFile_resultStandardScheme.class
tachyon.thrift.MasterService$user_getClientRawTableInfoByPath_result$user_getClientRawTableInfoByPath_resultTupleScheme.class
tachyon.thrift.WorkerService$AsyncClient$asyncCheckpoint_call.class
tachyon.thrift.WorkerService$getUserTempFolder_result$getUserTempFolder_resultTupleScheme.class
tachyon.thrift.MasterService$user_rename_result$user_rename_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$worker_heartbeat_result.class
tachyon.thrift.WorkerService$Processor$returnSpace.class
tachyon.thrift.MasterService$user_getRawTableId_args$user_getRawTableId_argsTupleScheme.class
tachyon.thrift.MasterService$Processor$user_getClientRawTableInfoByPath.class
tachyon.thrift.MasterService$user_getNumberOfFiles_result$_Fields.class
tachyon.thrift.MasterService$Processor$user_getWorker.class
tachyon.thrift.WorkerService$unlockBlock_args$unlockBlock_argsStandardScheme.class
tachyon.thrift.MasterService$user_renameTo_args$user_renameTo_argsTupleSchemeFactory.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_args$_Fields.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_result$user_outOfMemoryForPinFile_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$Processor$user_getClientBlockInfo.class
tachyon.thrift.TableDoesNotExistException$TableDoesNotExistExceptionTupleSchemeFactory.class
tachyon.thrift.MasterService$user_createFile_args$user_createFile_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$worker_register_result$worker_register_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$AsyncClient$getUserUnderfsTempFolder_call.class
tachyon.thrift.MasterService$user_createDependency_result$user_createDependency_resultStandardSchemeFactory.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_args.class
tachyon.thrift.MasterService$user_unpinFile_result$user_unpinFile_resultStandardScheme.class
tachyon.thrift.MasterService$user_reportLostFile_result$user_reportLostFile_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$AsyncClient$addCheckpoint_call.class
tachyon.thrift.MasterService$Processor$worker_getPinIdList.class
tachyon.thrift.MasterService$user_createNewBlock_result.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_args$user_getFileBlocksByPath_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$liststatus_result$liststatus_resultStandardScheme.class
tachyon.thrift.WorkerService$requestSpace_args$requestSpace_argsStandardSchemeFactory.class
tachyon.thrift.ClientBlockInfo.class
tachyon.thrift.MasterService$addCheckpoint_args$addCheckpoint_argsStandardScheme.class
tachyon.thrift.MasterService$user_createDependency_args$user_createDependency_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_createRawTable_result.class
tachyon.thrift.MasterService$Processor$user_getClientDependencyInfo.class
tachyon.thrift.WorkerService$accessBlock_result$accessBlock_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_ls_args$_Fields.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_args.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_args$getUserUnderfsTempFolder_argsStandardScheme.class
tachyon.thrift.MasterService$worker_cacheBlock_result$worker_cacheBlock_resultTupleScheme.class
tachyon.thrift.MasterService$Client.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_result$user_getClientRawTableInfoById_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_unpinFile_result$user_unpinFile_resultStandardSchemeFactory.class
tachyon.thrift.FileDoesNotExistException$FileDoesNotExistExceptionTupleScheme.class
tachyon.thrift.MasterService$worker_getPinIdList_args$worker_getPinIdList_argsTupleScheme.class
tachyon.thrift.MasterService$worker_cacheBlock_args.class
tachyon.thrift.MasterService$user_getWorker_result$_Fields.class
tachyon.thrift.WorkerService$userHeartbeat_result$_Fields.class
tachyon.thrift.MasterService$user_getFileBlocksById_result$user_getFileBlocksById_resultStandardScheme.class
tachyon.thrift.MasterService$user_rename_result.class
tachyon.thrift.MasterService$user_rename_args.class
tachyon.thrift.WorkerService$returnSpace_args$returnSpace_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_createFile_result.class
tachyon.thrift.WorkerService$lockBlock_result$lockBlock_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$addCheckpoint_args$addCheckpoint_argsStandardScheme.class
tachyon.thrift.MasterService$user_listFiles_args$user_listFiles_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getUnderfsAddress_result.class
tachyon.thrift.MasterService$user_createRawTable_args$user_createRawTable_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getFileBlocksById_args$user_getFileBlocksById_argsTupleScheme.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_args.class
tachyon.thrift.MasterService$Processor$user_createRawTable.class
tachyon.thrift.BlockInfoException.class
tachyon.thrift.WorkerService$userHeartbeat_args$userHeartbeat_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$AsyncClient$user_reportLostFile_call.class
tachyon.thrift.MasterService$user_deleteByPath_args$user_deleteByPath_argsStandardScheme.class
tachyon.thrift.MasterService$user_getClientRawTableInfoByPath_args$user_getClientRawTableInfoByPath_argsTupleScheme.class
tachyon.thrift.TachyonException$_Fields.class
tachyon.thrift.MasterService$worker_cacheBlock_args$worker_cacheBlock_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$getWorkersInfo_result$getWorkersInfo_resultStandardSchemeFactory.class
tachyon.thrift.InvalidPathException$InvalidPathExceptionStandardSchemeFactory.class
tachyon.thrift.MasterService$user_createFile_args$user_createFile_argsStandardScheme.class
tachyon.thrift.MasterService$user_createFileOnCheckpoint_result$user_createFileOnCheckpoint_resultTupleScheme.class
tachyon.thrift.MasterService$user_mkdir_args$user_mkdir_argsTupleScheme.class
tachyon.thrift.MasterService$user_getRawTableId_result$user_getRawTableId_resultStandardScheme.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_args$user_getClientRawTableInfoById_argsTupleScheme.class
tachyon.thrift.WorkerService$getUserTempFolder_args.class
tachyon.thrift.MasterService$worker_register_args.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_result$user_getFileBlocksByPath_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_result.class
tachyon.thrift.MasterService$user_requestFilesInDependency_args$user_requestFilesInDependency_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getBlockId_args$user_getBlockId_argsStandardSchemeFactory.class
tachyon.thrift.WorkerService$getUserTempFolder_result$getUserTempFolder_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_requestFilesInDependency_result.class
tachyon.thrift.MasterService$user_reportLostFile_result.class
tachyon.thrift.MasterService$user_createNewBlock_result$user_createNewBlock_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getNumberOfFiles_result$user_getNumberOfFiles_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$AsyncClient$getDataFolder_call.class
tachyon.thrift.MasterService$user_requestFilesInDependency_result$_Fields.class
tachyon.thrift.MasterService$user_getNumberOfFiles_result$user_getNumberOfFiles_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_deleteByPath_result.class
tachyon.thrift.MasterService$Processor$user_getBlockId.class
tachyon.thrift.MasterService$user_rename_result$user_rename_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_args$user_getClientRawTableInfoById_argsTupleSchemeFactory.class
tachyon.thrift.WorkerService$getUserTempFolder_args$getUserTempFolder_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$AsyncClient$user_ls_call.class
tachyon.thrift.MasterService$user_deleteByPath_args$user_deleteByPath_argsTupleScheme.class
tachyon.thrift.MasterService$user_getUserId_result$user_getUserId_resultStandardScheme.class
tachyon.thrift.NoWorkerException$_Fields.class
tachyon.thrift.MasterService$Processor$user_renameTo.class
tachyon.thrift.WorkerService$addCheckpoint_result$addCheckpoint_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_completeFile_args$user_completeFile_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_createNewBlock_args$user_createNewBlock_argsTupleScheme.class
tachyon.thrift.MasterService$user_renameTo_result$user_renameTo_resultTupleScheme.class
tachyon.thrift.MasterService$user_getClientDependencyInfo_args.class
tachyon.thrift.MasterService$user_getClientBlockInfo_result$_Fields.class
tachyon.thrift.MasterService$user_getUserId_result$user_getUserId_resultTupleScheme.class
tachyon.thrift.MasterService$user_getClientBlockInfo_result$user_getClientBlockInfo_resultTupleScheme.class
tachyon.thrift.MasterService$worker_getPinIdList_result$worker_getPinIdList_resultTupleScheme.class
tachyon.thrift.MasterService$user_getNumberOfFiles_args$user_getNumberOfFiles_argsTupleScheme.class
tachyon.thrift.TableDoesNotExistException$_Fields.class
tachyon.thrift.DependencyDoesNotExistException$_Fields.class
tachyon.thrift.MasterService$getWorkersInfo_result$getWorkersInfo_resultStandardScheme.class
tachyon.thrift.MasterService$user_getFileBlocksById_args$_Fields.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_args$getUserUnderfsTempFolder_argsTupleScheme.class
tachyon.thrift.MasterService$worker_cacheBlock_args$_Fields.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_result$getUserUnderfsTempFolder_resultTupleScheme.class
tachyon.thrift.MasterService$user_getUnderfsAddress_args.class
tachyon.thrift.MasterService$user_getBlockId_args.class
tachyon.thrift.MasterService$AsyncClient$user_getFileBlocksById_call.class
tachyon.thrift.OutOfMemoryForPinFileException$OutOfMemoryForPinFileExceptionTupleScheme.class
tachyon.thrift.MasterService$user_reportLostFile_result$_Fields.class
tachyon.thrift.WorkerService$asyncCheckpoint_result$asyncCheckpoint_resultStandardScheme.class
tachyon.thrift.MasterService$Processor$user_getFileBlocksById.class
tachyon.thrift.WorkerService$AsyncClient$unlockBlock_call.class
tachyon.thrift.MasterService$user_createDependency_args$user_createDependency_argsTupleScheme.class
tachyon.thrift.ClientFileInfo$ClientFileInfoStandardScheme.class
tachyon.thrift.InvalidPathException$InvalidPathExceptionTupleScheme.class
tachyon.thrift.CommandType.class
tachyon.thrift.FailedToCheckpointException$FailedToCheckpointExceptionTupleSchemeFactory.class
tachyon.thrift.MasterService$user_createRawTable_result$_Fields.class
tachyon.thrift.MasterService$Processor$user_mkdir.class
tachyon.thrift.MasterService$user_deleteByPath_result$_Fields.class
tachyon.thrift.MasterService$AsyncClient$user_createNewBlock_call.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_result.class
tachyon.thrift.MasterService$user_createRawTable_result$user_createRawTable_resultStandardScheme.class
tachyon.thrift.NetAddress$_Fields.class
tachyon.thrift.MasterService$user_unpinFile_args.class
tachyon.thrift.MasterService$liststatus_args$liststatus_argsStandardScheme.class
tachyon.thrift.WorkerService$asyncCheckpoint_result$asyncCheckpoint_resultTupleScheme.class
tachyon.thrift.MasterService$Processor$user_createDependency.class
tachyon.thrift.WorkerService$addCheckpoint_result$addCheckpoint_resultTupleScheme.class
tachyon.thrift.MasterService$Processor$user_getNumberOfFiles.class
tachyon.thrift.MasterService$user_deleteById_args$user_deleteById_argsTupleScheme.class
tachyon.thrift.MasterService$user_getFileId_result$user_getFileId_resultStandardScheme.class
tachyon.thrift.WorkerService$unlockBlock_result$unlockBlock_resultStandardSchemeFactory.class
tachyon.thrift.MasterService$user_rename_args$user_rename_argsTupleSchemeFactory.class
tachyon.thrift.SuspectedFileSizeException$SuspectedFileSizeExceptionStandardSchemeFactory.class
tachyon.thrift.BlockInfoException$BlockInfoExceptionTupleScheme.class
tachyon.thrift.TableDoesNotExistException$TableDoesNotExistExceptionTupleScheme.class
tachyon.thrift.MasterService$user_reportLostFile_args.class
tachyon.thrift.MasterService$user_getNumberOfFiles_args$user_getNumberOfFiles_argsStandardScheme.class
tachyon.thrift.NoWorkerException$NoWorkerExceptionTupleScheme.class
tachyon.thrift.MasterService$user_listFiles_args$user_listFiles_argsTupleSchemeFactory.class
tachyon.thrift.ClientFileInfo$ClientFileInfoTupleScheme.class
tachyon.thrift.MasterService$user_deleteById_result$user_deleteById_resultTupleScheme.class
tachyon.thrift.MasterService$user_createNewBlock_result$user_createNewBlock_resultStandardScheme.class
tachyon.thrift.MasterService$user_renameTo_result$_Fields.class
tachyon.thrift.MasterService$user_ls_args$user_ls_argsTupleSchemeFactory.class
tachyon.thrift.WorkerService$lockBlock_args$lockBlock_argsStandardSchemeFactory.class
tachyon.thrift.ClientRawTableInfo$1.class
tachyon.thrift.WorkerService$returnSpace_args.class
tachyon.thrift.MasterService$user_mkdir_args$_Fields.class
tachyon.thrift.MasterService$user_ls_result$user_ls_resultStandardSchemeFactory.class
tachyon.thrift.WorkerService$asyncCheckpoint_args$asyncCheckpoint_argsStandardSchemeFactory.class
tachyon.thrift.ClientBlockInfo$_Fields.class
tachyon.thrift.MasterService$user_completeFile_args$_Fields.class
tachyon.thrift.MasterService$user_mkdir_result$user_mkdir_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$Processor$user_listFiles.class
tachyon.thrift.MasterService$AsyncClient$worker_heartbeat_call.class
tachyon.thrift.WorkerService$Processor$asyncCheckpoint.class
tachyon.thrift.MasterService$liststatus_result.class
tachyon.thrift.MasterService$user_updateRawTableMetadata_args.class
tachyon.thrift.MasterService$Processor$getWorkersInfo.class
tachyon.thrift.MasterService$user_getBlockId_result$user_getBlockId_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_deleteByPath_result$user_deleteByPath_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$AsyncClient$user_getFileBlocksByPath_call.class
tachyon.thrift.MasterService$worker_getPriorityDependencyList_args$_Fields.class
tachyon.thrift.NoWorkerException$1.class
tachyon.thrift.ClientDependencyInfo$ClientDependencyInfoTupleSchemeFactory.class
tachyon.thrift.ClientWorkerInfo$ClientWorkerInfoTupleSchemeFactory.class
tachyon.thrift.WorkerService$requestSpace_args$_Fields.class
tachyon.thrift.MasterService$Processor.class
tachyon.thrift.FileAlreadyExistException$_Fields.class
tachyon.thrift.MasterService$user_unpinFile_args$user_unpinFile_argsStandardScheme.class
tachyon.thrift.InvalidPathException$InvalidPathExceptionStandardScheme.class
tachyon.thrift.MasterService$worker_register_result.class
tachyon.thrift.MasterService$user_unpinFile_result$user_unpinFile_resultTupleScheme.class
tachyon.thrift.MasterService$user_getUserId_result$user_getUserId_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$requestSpace_result$requestSpace_resultTupleSchemeFactory.class
tachyon.thrift.WorkerService$unlockBlock_result$unlockBlock_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getWorker_args$user_getWorker_argsStandardScheme.class
tachyon.thrift.Command$CommandStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getNumberOfFiles_args.class
tachyon.thrift.MasterService$AsyncClient$user_listFiles_call.class
tachyon.thrift.NetAddress$1.class
tachyon.thrift.MasterService$AsyncClient$worker_getPinIdList_call.class
tachyon.thrift.MasterService$user_renameTo_result$user_renameTo_resultStandardScheme.class
tachyon.thrift.MasterService$Processor$worker_getPriorityDependencyList.class
tachyon.thrift.MasterService$AsyncClient$user_updateRawTableMetadata_call.class
tachyon.thrift.MasterService$user_completeFile_args.class
tachyon.thrift.DependencyDoesNotExistException$1.class
tachyon.thrift.MasterService$user_getFileBlocksById_args$user_getFileBlocksById_argsStandardScheme.class
tachyon.thrift.MasterService$getWorkersInfo_args$getWorkersInfo_argsStandardScheme.class
tachyon.thrift.WorkerService$returnSpace_args$returnSpace_argsTupleScheme.class
tachyon.thrift.MasterService$user_outOfMemoryForPinFile_args$user_outOfMemoryForPinFile_argsStandardScheme.class
tachyon.thrift.MasterService$liststatus_result$liststatus_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getUserId_args$user_getUserId_argsTupleScheme.class
tachyon.thrift.TachyonException.class
tachyon.thrift.WorkerService$cacheBlock_args$cacheBlock_argsTupleScheme.class
tachyon.thrift.MasterService$user_getClientFileInfoByPath_args.class
tachyon.thrift.ClientDependencyInfo$ClientDependencyInfoStandardSchemeFactory.class
tachyon.thrift.MasterService$getClientFileInfoById_result$_Fields.class
tachyon.thrift.MasterService$user_createRawTable_args$_Fields.class
tachyon.thrift.WorkerService$addCheckpoint_args.class
tachyon.thrift.WorkerService$getUserTempFolder_args$_Fields.class
tachyon.thrift.FailedToCheckpointException$FailedToCheckpointExceptionStandardScheme.class
tachyon.thrift.MasterService$user_getWorker_args$_Fields.class
tachyon.thrift.MasterService$user_getClientRawTableInfoById_result$user_getClientRawTableInfoById_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$Processor$user_requestFilesInDependency.class
tachyon.thrift.MasterService$user_rename_args$user_rename_argsTupleScheme.class
tachyon.thrift.MasterService$AsyncClient$user_getClientRawTableInfoByPath_call.class
tachyon.thrift.MasterService$user_createNewBlock_args$user_createNewBlock_argsStandardScheme.class
tachyon.thrift.MasterService$user_getWorker_result.class
tachyon.thrift.MasterService$user_deleteByPath_result$user_deleteByPath_resultStandardScheme.class
tachyon.thrift.WorkerService$AsyncClient$Factory.class
tachyon.thrift.WorkerService$cacheBlock_result$cacheBlock_resultStandardSchemeFactory.class
tachyon.thrift.WorkerService$getUserTempFolder_result$getUserTempFolder_resultStandardSchemeFactory.class
tachyon.thrift.ClientFileInfo$ClientFileInfoTupleSchemeFactory.class
tachyon.thrift.MasterService$worker_heartbeat_args$worker_heartbeat_argsStandardScheme.class
tachyon.thrift.FailedToCheckpointException.class
tachyon.thrift.MasterService$Processor$user_createFileOnCheckpoint.class
tachyon.thrift.WorkerService$userHeartbeat_result$userHeartbeat_resultStandardScheme.class
tachyon.thrift.WorkerService$cacheBlock_args$_Fields.class
tachyon.thrift.MasterService$liststatus_args$liststatus_argsTupleSchemeFactory.class
tachyon.thrift.ClientWorkerInfo$ClientWorkerInfoTupleScheme.class
tachyon.thrift.MasterService$user_unpinFile_args$user_unpinFile_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$AsyncClient$user_createRawTable_call.class
tachyon.thrift.MasterService$AsyncClient$user_deleteById_call.class
tachyon.thrift.TableColumnException$_Fields.class
tachyon.thrift.MasterService$user_rename_args$user_rename_argsStandardScheme.class
tachyon.thrift.MasterService$Processor$user_getClientRawTableInfoById.class
tachyon.thrift.MasterService$user_getFileId_result$user_getFileId_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$getClientFileInfoById_args$getClientFileInfoById_argsStandardSchemeFactory.class
tachyon.thrift.MasterService$user_getRawTableId_result$user_getRawTableId_resultTupleScheme.class
tachyon.thrift.MasterService$user_completeFile_result$_Fields.class
tachyon.thrift.MasterService$worker_cacheBlock_result$_Fields.class
tachyon.thrift.MasterService$user_deleteByPath_result$user_deleteByPath_resultTupleScheme.class
tachyon.thrift.MasterService$user_getWorker_result$user_getWorker_resultStandardSchemeFactory.class
tachyon.thrift.TableDoesNotExistException$TableDoesNotExistExceptionStandardSchemeFactory.class
tachyon.thrift.WorkerService$Processor$cacheBlock.class
tachyon.thrift.MasterService$getClientFileInfoById_args$getClientFileInfoById_argsTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getUnderfsAddress_args$user_getUnderfsAddress_argsStandardScheme.class
tachyon.thrift.MasterService$user_ls_result.class
tachyon.thrift.MasterService$user_getUserId_args$user_getUserId_argsStandardScheme.class
tachyon.thrift.MasterService$user_getFileBlocksByPath_args$user_getFileBlocksByPath_argsTupleScheme.class
tachyon.thrift.WorkerService$asyncCheckpoint_result$asyncCheckpoint_resultTupleSchemeFactory.class
tachyon.thrift.MasterService$user_getFileId_result$user_getFileId_resultStandardSchemeFactory.class
tachyon.thrift.WorkerService$getUserUnderfsTempFolder_args$getUserUnderfsTempFolder_argsTupleSchemeFactory.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
hadoop-minicluster-${hadoop.version}.jar
/org.apache.hadoop/hadoop-minicluster/${hadoop.version}
查看hadoop-minicluster所有版本文件
|