You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by dk...@apache.org on 2020/05/21 14:01:14 UTC

[avro] branch master updated: AVRO-2427: Add undocumented codecs to the specification

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

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


The following commit(s) were added to refs/heads/master by this push:
     new dcb8c5b  AVRO-2427: Add undocumented codecs to the specification
dcb8c5b is described below

commit dcb8c5b25776f1d2434ac28587c68106998b4b37
Author: Kengo Seki <se...@apache.org>
AuthorDate: Tue Sep 3 10:43:34 2019 +0900

    AVRO-2427: Add undocumented codecs to the specification
---
 doc/src/content/xdocs/spec.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/doc/src/content/xdocs/spec.xml b/doc/src/content/xdocs/spec.xml
index feb8e2b..6df2a60 100644
--- a/doc/src/content/xdocs/spec.xml
+++ b/doc/src/content/xdocs/spec.xml
@@ -788,6 +788,12 @@
       <section>
 	<title>Optional Codecs</title>
         <section>
+          <title>bzip2</title>
+          <p>The "bzip2" codec uses the <a href="https://sourceware.org/bzip2/">bzip2</a>
+            compression library.</p>
+        </section>
+
+        <section>
           <title>snappy</title>
           <p>The "snappy" codec uses
             Google's <a href="https://code.google.com/p/snappy/">Snappy</a>
@@ -795,6 +801,19 @@
             by the 4-byte, big-endian CRC32 checksum of the
             uncompressed data in the block.</p>
         </section>
+
+        <section>
+          <title>xz</title>
+          <p>The "xz" codec uses the <a href="https://tukaani.org/xz/">XZ</a>
+            compression library.</p>
+        </section>
+
+        <section>
+          <title>zstandard</title>
+          <p>The "zstandard" codec uses
+            Facebook's <a href="https://facebook.github.io/zstd/">Zstandard</a>
+            compression library.</p>
+        </section>
       </section>
     </section>