You can download alluxio-keyvalue-client-1.1.0.jar in this page.
Apache License
alluxio-keyvalue-client-1.1.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 alluxio.hadoop.mapreduce.KeyValueInputFormat.class alluxio.hadoop.mapreduce.KeyValueInputSplit.class alluxio.hadoop.mapreduce.KeyValueOutputCommitter.class alluxio.hadoop.mapreduce.KeyValueOutputFormat.class alluxio.hadoop.mapreduce.KeyValueRecordReader.class alluxio.hadoop.mapreduce.KeyValueRecordWriter.class
alluxio-keyvalue-client-1.1.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.1.0</version> </parent> <artifactId>alluxio-keyvalue-client</artifactId> <name>Alluxio Key Value - Client</name> <description>Client of Alluxio Key Value System</description> <properties> <!-- These 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> </properties> <dependencies> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-core-client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-keyvalue-common</artifactId> <version>${project.version}</version> </dependency> <!-- Other projects' test-jars --> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-core-client</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> <version>${apache.curator.version}</version> <exclusions> <exclusion> <groupId>org.jboss.netty</groupId> <artifactId>netty</artifactId> </exclusion> </exclusions> </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-framework</artifactId> <version>${apache.curator.version}</version> <scope>provided</scope> <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.curator</groupId> <artifactId>curator-client</artifactId> <version>${apache.curator.version}</version> <scope>provided</scope> <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.curator</groupId> <artifactId>curator-recipes</artifactId> <version>${apache.curator.version}</version> <scope>provided</scope> <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.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> <version>2.2</version> <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> <shadedPattern>alluxio.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>
<dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-keyvalue-client</artifactId> <version>1.1.0</version> </dependency>
If you think the following alluxio-keyvalue-client-1.1.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.1.0.jar file