You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ps...@apache.org on 2023/03/13 09:29:13 UTC

[hbase] branch master updated: HBASE-27701 Fix a misspelling of the ZstdCodec in compression documentation (#5095)

This is an automated email from the ASF dual-hosted git repository.

psomogyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new c2b64e7caa5 HBASE-27701 Fix a misspelling of the ZstdCodec in compression documentation (#5095)
c2b64e7caa5 is described below

commit c2b64e7caa52936552f247281a42ca9c9550dc93
Author: Frens Jan Rumph <ma...@frensjan.nl>
AuthorDate: Mon Mar 13 10:29:02 2023 +0100

    HBASE-27701 Fix a misspelling of the ZstdCodec in compression documentation (#5095)
    
    Signed-off-by: Peter Somogyi <ps...@apache.org>
---
 src/main/asciidoc/_chapters/compression.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/asciidoc/_chapters/compression.adoc b/src/main/asciidoc/_chapters/compression.adoc
index 5a0259e502d..dc61f782c97 100644
--- a/src/main/asciidoc/_chapters/compression.adoc
+++ b/src/main/asciidoc/_chapters/compression.adoc
@@ -352,10 +352,10 @@ The available codec implementation options are:
 |SNAPPY|org.apache.hadoop.hbase.io.compress.xerial.SnappyCodec|
   Implemented with https://github.com/xerial/snappy-java[snappy-java]
 |ZSTD|org.apache.hadoop.io.compress.ZStandardCodec|Hadoop native codec
-|ZSTD|org.apache.hadoop.hbase.io.compress.aircompressor.ZStdCodec|
+|ZSTD|org.apache.hadoop.hbase.io.compress.aircompressor.ZstdCodec|
   Pure Java implementation, limited to a fixed compression level,
   not data compatible with the Hadoop zstd codec
-|ZSTD|org.apache.hadoop.hbase.io.compress.zstd.ZStdCodec|
+|ZSTD|org.apache.hadoop.hbase.io.compress.zstd.ZstdCodec|
   Implemented with https://github.com/luben/zstd-jni[zstd-jni],
   supports all compression levels, supports custom dictionaries
 |===