You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by to...@apache.org on 2017/02/13 20:23:41 UTC

[2/2] kudu git commit: [docs] Update encodings section

[docs] Update encodings section

With KUDU-100 and KUDU-1751 we need to update our encodings docs.

Change-Id: Ic445c18807c5bdb065575b2f4034420c659fde6e
Reviewed-on: http://gerrit.cloudera.org:8080/5966
Tested-by: Kudu Jenkins
Reviewed-by: Todd Lipcon <to...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/61f95748
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/61f95748
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/61f95748

Branch: refs/heads/master
Commit: 61f95748b5e49c7afd02fa281254303aa797a2ea
Parents: 594c212
Author: Jean-Daniel Cryans <jd...@apache.org>
Authored: Fri Feb 10 08:29:58 2017 -0800
Committer: Jean-Daniel Cryans <jd...@apache.org>
Committed: Mon Feb 13 15:57:12 2017 +0000

----------------------------------------------------------------------
 docs/schema_design.adoc | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/61f95748/docs/schema_design.adoc
----------------------------------------------------------------------
diff --git a/docs/schema_design.adoc b/docs/schema_design.adoc
index 0c737f7..bf42c50 100644
--- a/docs/schema_design.adoc
+++ b/docs/schema_design.adoc
@@ -87,17 +87,17 @@ be specified on a per-column basis.
 === Column Encoding
 
 Each column in a Kudu table can be created with an encoding, based on the type
-of the column. Columns use plain encoding by default.
+of the column.
 
 .Encoding Types
 [options="header"]
 |===
-| Column Type             | Encoding
-| int8, int16, int32      | plain, bitshuffle, run length
-| int64, unixtime_micros  | plain, bitshuffle
-| float, double           | plain, bitshuffle
-| bool                    | plain, run length
-| string, binary          | plain, prefix, dictionary
+| Column Type             | Encoding                       | Default
+| int8, int16, int32      | plain, bitshuffle, run length  | bitshuffle
+| int64, unixtime_micros  | plain, bitshuffle, run length  | bitshuffle
+| float, double           | plain, bitshuffle              | bitshuffle
+| bool                    | plain, run length              | run length
+| string, binary          | plain, prefix, dictionary      | dictionary
 |===
 
 [[plain]]