Download alluxio-keyvalue-client-1.5.0.jar file

Introduction

You can download alluxio-keyvalue-client-1.5.0.jar in this page.

License

Apache License

Type List

alluxio-keyvalue-client-1.5.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.alluxio/alluxio-keyvalue-client/pom.properties
META-INF/maven/org.alluxio/alluxio-keyvalue-client/pom.xml
alluxio.client.keyvalue.BaseKeyValuePartitionReader.class
alluxio.client.keyvalue.BaseKeyValuePartitionWriter.class
alluxio.client.keyvalue.BaseKeyValueStoreReader.class
alluxio.client.keyvalue.BaseKeyValueStoreWriter.class
alluxio.client.keyvalue.BaseKeyValueSystem.class
alluxio.client.keyvalue.BasePayloadReader.class
alluxio.client.keyvalue.BasePayloadWriter.class
alluxio.client.keyvalue.ByteBufferKeyValuePartitionReader.class
alluxio.client.keyvalue.Index.class
alluxio.client.keyvalue.KeyValueIterable.class
alluxio.client.keyvalue.KeyValueIterator.class
alluxio.client.keyvalue.KeyValueMasterClient.class
alluxio.client.keyvalue.KeyValuePair.class
alluxio.client.keyvalue.KeyValuePartitionReader.class
alluxio.client.keyvalue.KeyValuePartitionWriter.class
alluxio.client.keyvalue.KeyValueStoreIterator.class
alluxio.client.keyvalue.KeyValueStoreReader.class
alluxio.client.keyvalue.KeyValueStoreWriter.class
alluxio.client.keyvalue.KeyValueSystem.class
alluxio.client.keyvalue.KeyValueWorkerClient.class
alluxio.client.keyvalue.LinearProbingIndex.class
alluxio.client.keyvalue.PayloadReader.class
alluxio.client.keyvalue.PayloadWriter.class

Pom

alluxio-keyvalue-client-1.5.0.pom file content.

<!--

    The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
    (the "License"). You may not use this work except in compliance with the License, which is
    available at www.apache.org/licenses/LICENSE-2.0

    This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
    either express or implied, as more fully set forth in the License.

    See the NOTICE file distributed with this work for information regarding copyright ownership.

-->
<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.alluxio</groupId>
    <artifactId>alluxio-keyvalue</artifactId>
    <version>1.5.0</version>
  </parent>
  <artifactId>alluxio-keyvalue-client</artifactId>
  <name>Alluxio Key Value - Client</name>
  <description>Client of Alluxio Key Value Store</description>

  <properties>
    <!-- The following paths need to be defined here as well as in the parent pom so that mvn can -->
    <!-- run properly from sub-project directories -->
    <license.header.path>${project.parent.parent.basedir}/build/license/</license.header.path>
    <checkstyle.path>${project.parent.parent.basedir}/build/checkstyle/</checkstyle.path>
    <findbugs.path>${project.parent.parent.basedir}/build/findbugs/</findbugs.path>
    <!-- The shading prefix should match the artifact ID, replacing '-' with '.' -->
    <shading.prefix>alluxio.keyvalue.client</shading.prefix>
  </properties>

  <dependencies>
    <!-- External dependencies -->
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.thrift</groupId>
      <artifactId>libthrift</artifactId>
    </dependency>

    <!-- Internal dependencies -->
    <dependency>
      <groupId>org.alluxio</groupId>
      <artifactId>alluxio-core-client-fs</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.alluxio</groupId>
      <artifactId>alluxio-core-common</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.alluxio</groupId>
      <artifactId>alluxio-keyvalue-common</artifactId>
      <version>${project.version}</version>
    </dependency>

    <!-- Internal test dependencies -->
    <dependency>
      <groupId>org.alluxio</groupId>
      <artifactId>alluxio-core-common</artifactId>
      <version>${project.version}</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <profiles>
    <!-- build profile for Apache Flink -->
    <!-- Profile used to build alluxio client jar used for Apache Flink. This will be activated by using -Pflink -->
    <!-- in the maven command line. -->
    <profile>
      <id>flink</id>
      <activation>
        <activeByDefault>false</activeByDefault>
      </activation>
      <!-- The dependencies are the same as the default dependencies, except jboss netty is excluded as it is provided by Apache Flink runtime. -->
      <dependencies>
        <dependency>
          <groupId>org.apache.curator</groupId>
          <artifactId>curator-framework</artifactId>
        </dependency>
      </dependencies>
    </profile>

    <!-- build profile for Apache Spark -->
    <!-- Profile used to build alluxio keyvalue client jar used for Apache Spark. This will be activated by using -->
    <!-- -Pspark in the maven command line. -->
    <profile>
      <id>spark</id>
      <!-- The dependencies are the same as the default dependencies, except that curator-client, curator-framework, -->
      <!-- curator-recipies and hadoop-client are in scope provided, as they are provided by Apache Spark runtime. -->
      <dependencies>
        <dependency>
          <groupId>org.apache.curator</groupId>
          <artifactId>curator-client</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.apache.curator</groupId>
          <artifactId>curator-framework</artifactId>
          <scope>provided</scope>
        </dependency>
       <dependency>
          <groupId>org.apache.curator</groupId>
          <artifactId>curator-recipes</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.apache.hadoop</groupId>
          <artifactId>hadoop-client</artifactId>
          <scope>provided</scope>
        </dependency>
      </dependencies>
    </profile>
  </profiles>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <id>uber-jar</id>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <finalName>${project.artifactId}-${project.version}-jar-with-dependencies</finalName>
              <artifactSet>
                <includes>
                  <include>org.alluxio:alluxio-keyvalue-common</include>
                  <include>org.alluxio:alluxio-keyvalue-client</include>
                </includes>
              </artifactSet>
              <relocations>
                <relocation>
                  <pattern>org.apache.thrift</pattern>
                   <!--TODO(binfan): instead of hard-coding the shading prefix to be "alluxio.core.client.runtime"-->
                   <!--to be the same as client runtime jar, make a separate core-thrift module and let other client-->
                   <!--modules to depend on  this thrift module, similar to core-proto-->
                  <shadedPattern>alluxio.core.client.runtime.org.apache.thrift</shadedPattern>
                </relocation>
              </relocations>
              <transformers>
                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
              </transformers>
              <filters>
                <filter>
                  <artifact>*:*</artifact>
                  <excludes>
                    <exclude>LICENSE</exclude>
                    <exclude>META-INF/LICENSE</exclude>
                    <exclude>META-INF/*.SF</exclude>
                    <exclude>META-INF/*.DSA</exclude>
                    <exclude>META-INF/*.RSA</exclude>
                  </excludes>
                </filter>
              </filters>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.alluxio</groupId>
   <artifactId>alluxio-keyvalue-client</artifactId>
   <version>1.5.0</version>
</dependency>

Download

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



Download alluxio-keyvalue-client-1.5.0.jar file




PreviousNext

Related