Skip to content

Commit

Permalink
release 4mc 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carlo-medas committed Mar 24, 2020
1 parent 75739be commit 8f9e4e9
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
7 changes: 4 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [![Build Status](https://travis-ci.org/carlomedas/4mc.svg?branch=master)](https://travis-ci.org/carlomedas/4mc)
# [![Build Status](https://travis-ci.org/fingltd/4mc.svg?branch=master)](https://travis-ci.org/fingltd/4mc)
# 4mc - Four More Compression

## About
Expand Down Expand Up @@ -50,8 +50,9 @@ you are not needing long-term storage.


## Releases and change history
Releases with artifacts available at https://github.com/carlomedas/4mc/releases - Attached artifacts contain jar with embedded native library for Windows/Linux/MacOS. You can anyway compile JNI bindings for your own platform and override embedded ones.
4mc CLI tool for all platforms is now available at https://github.com/carlomedas/4mc/tree/master/tool
Releases with artifacts available at https://github.com/fingltd/4mc/releases - Attached artifacts contain jar with embedded native library for Windows/Linux/MacOS. You can anyway compile JNI bindings for your own platform and override embedded ones.
4mc CLI tool for all platforms is now available at https://github.com/fingltd/4mc/tree/master/tool
* **4mc 2.2.0** - Updated native libaries: LZ4 1.9.2 and ZSTD 1.4.4
* **4mc 2.1.0** - Compatibility with newer Hadoop (2.7.x) and Spark (2.4.3)
* **4mc 2.0.0** - 4mz to support ZSTD (zstandard https://github.com/facebook/zstd)
* **4mc 1.4.0** - Native libraries are now embedded in jar, thus hadoop-4mc library can be used w/o manual configurations on Hadoop/Spark/Flink/etc
Expand Down
16 changes: 12 additions & 4 deletions java/hadoop-4mc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@

<groupId>com.hadoop.fourmc</groupId>
<artifactId>hadoop-4mc</artifactId>
<version>2.1.0</version>
<version>2.2.0</version>
<packaging>jar</packaging>

<name>4mc</name>
<url>https://github.com/carlomedas/4mc</url>
<url>https://github.com/fingltd/4mc</url>
<description>
4mc - Four More Compression, ZSTD and LZ4 power unleashed in hadoop/spark/flink.
</description>
Expand All @@ -38,15 +38,23 @@
</licenses>

<organization>
<name>Carlo Medas</name>
<url>-</url>
<name>Fing Ltd</name>
<url>https://fing.com</url>
</organization>

<developers>
<developer>
<id>carlo</id>
<name>Carlo Medas</name>
</developer>
<developer>
<id>noodlesbad</id>
<name>Giuseppe Badoni</name>
</developer>
<developer>
<id>BuzzL</id>
<name>Tommaso Latini</name>
</developer>
</developers>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ public void testZstdCodec() throws IOException {
codecTest(conf, seed, count * 10, "com.hadoop.compression.fourmc.ZstdCodec");
}

public void testZstCodec() throws IOException {
assertTrue(FourMcNativeCodeLoader.isNativeCodeLoaded());
codecTest(conf, seed, count * 10, "com.hadoop.compression.fourmc.ZstCodec");
}

private static void codecTest(Configuration conf, int seed, int count,
String codecClass)
throws IOException {
Expand Down

0 comments on commit 8f9e4e9

Please sign in to comment.