Download tachyon-common-0.7.1.jar file

Introduction

You can download tachyon-common-0.7.1.jar in this page.

License

Open Source

Type List

tachyon-common-0.7.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.tachyonproject/tachyon-common/pom.properties
META-INF/maven/org.tachyonproject/tachyon-common/pom.xml
tachyon-default.properties
tachyon.Constants.class
tachyon.HeartbeatExecutor.class
tachyon.HeartbeatThread.class
tachyon.LeaderInquireClient.class
tachyon.LeaderSelectorClient.class
tachyon.Pair.class
tachyon.PrefixList.class
tachyon.TachyonURI.class
tachyon.Version.class
tachyon.conf.TachyonConf.class
tachyon.conf.Utils.class
tachyon.master.MasterClient.class
tachyon.master.MasterClientHeartbeatExecutor.class
tachyon.network.ChannelType.class
tachyon.network.NettyUtils.class
tachyon.network.protocol.EncodedMessage.class
tachyon.network.protocol.RPCBlockRequest.class
tachyon.network.protocol.RPCBlockResponse.class
tachyon.network.protocol.RPCBlockWriteRequest.class
tachyon.network.protocol.RPCBlockWriteResponse.class
tachyon.network.protocol.RPCErrorResponse.class
tachyon.network.protocol.RPCMessage.class
tachyon.network.protocol.RPCMessageDecoder.class
tachyon.network.protocol.RPCMessageEncoder.class
tachyon.network.protocol.RPCRequest.class
tachyon.network.protocol.RPCResponse.class
tachyon.network.protocol.databuffer.DataBuffer.class
tachyon.network.protocol.databuffer.DataByteArrayChannel.class
tachyon.network.protocol.databuffer.DataByteBuffer.class
tachyon.network.protocol.databuffer.DataFileChannel.class
tachyon.retry.ExponentialBackoffRetry.class
tachyon.retry.RetryPolicy.class
tachyon.retry.SleepingRetry.class
tachyon.thrift.BlockInfoException.class
tachyon.thrift.ClientBlockInfo.class
tachyon.thrift.ClientDependencyInfo.class
tachyon.thrift.ClientFileInfo.class
tachyon.thrift.ClientRawTableInfo.class
tachyon.thrift.ClientWorkerInfo.class
tachyon.thrift.Command.class
tachyon.thrift.CommandType.class
tachyon.thrift.DependencyDoesNotExistException.class
tachyon.thrift.FailedToCheckpointException.class
tachyon.thrift.FileAlreadyExistException.class
tachyon.thrift.FileDoesNotExistException.class
tachyon.thrift.InvalidPathException.class
tachyon.thrift.MasterService.class
tachyon.thrift.NetAddress.class
tachyon.thrift.NoWorkerException.class
tachyon.thrift.OutOfSpaceException.class
tachyon.thrift.SuspectedFileSizeException.class
tachyon.thrift.TableColumnException.class
tachyon.thrift.TableDoesNotExistException.class
tachyon.thrift.TachyonException.class
tachyon.thrift.WorkerService.class
tachyon.underfs.UnderFileSystem.class
tachyon.underfs.UnderFileSystemFactory.class
tachyon.underfs.UnderFileSystemRegistry.class
tachyon.util.CommonUtils.class
tachyon.util.NetworkUtils.class
tachyon.util.ThreadFactoryUtils.class
tachyon.util.UnderFileSystemUtils.class
tachyon.worker.ClientMetrics.class
tachyon.worker.DataServerMessage.class
tachyon.worker.WorkerClient.class
tachyon.worker.WorkerClientHeartbeatExecutor.class

Pom

tachyon-common-0.7.1.pom file content.

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.tachyonproject</groupId>
    <artifactId>tachyon-parent</artifactId>
    <version>0.7.1</version>
  </parent>
  <artifactId>tachyon-common</artifactId>
  <packaging>jar</packaging>
  <name>Tachyon Common</name>
  <description>Common utilities shared by different tachyon modules</description>

  <properties>
    <license.header.path>${project.parent.basedir}/build/license/</license.header.path>
    <checkstyle.path>${project.parent.basedir}/build/checkstyle/</checkstyle.path>
    <findbugs.path>${project.parent.basedir}/build/findbugs/</findbugs.path>
    <failIfNoTests>false</failIfNoTests>
  </properties>

  <dependencies>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>
    <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
      <version>2.4</version>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.4</version>
    </dependency>
    <dependency>
      <groupId>io.netty</groupId>
      <artifactId>netty-all</artifactId>
      <version>4.0.28.Final</version>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.curator</groupId>
      <artifactId>curator-framework</artifactId>
      <version>${apache.curator.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.curator</groupId>
      <artifactId>curator-client</artifactId>
      <version>${apache.curator.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.curator</groupId>
      <artifactId>curator-recipes</artifactId>
      <version>${apache.curator.version}</version>
      <exclusions>
        <exclusion>
          <groupId>org.jboss.netty</groupId>
          <artifactId>netty</artifactId>
        </exclusion>
        <exclusion>
          <groupId>com.google.guava</groupId>
          <artifactId>guava</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.thrift</groupId>
      <artifactId>libthrift</artifactId>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>

    <!-- Test Dependencies -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
      </resource>
    </resources>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.tachyonproject</groupId>
   <artifactId>tachyon-common</artifactId>
   <version>0.7.1</version>
</dependency>

Download

If you think the following tachyon-common-0.7.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download tachyon-common-0.7.1.jar file




PreviousNext

Related