Repository: accumulo Updated Branches: refs/heads/1.7 684b86964 -> 4ba5faf49 refs/heads/1.8 7f865d253 -> 8d6b7299e refs/heads/master b4f86d978 -> 07bfa2e5b
ACCUMULO-4482 Mention snappy compression in docs Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/4ba5faf4 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/4ba5faf4 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/4ba5faf4 Branch: refs/heads/1.7 Commit: 4ba5faf49d723dabde6916bed956a0459dccf5ac Parents: 684b869 Author: Christopher Tubbs <ctubb...@apache.org> Authored: Mon Mar 27 19:46:55 2017 -0400 Committer: Christopher Tubbs <ctubb...@apache.org> Committed: Mon Mar 27 19:46:55 2017 -0400 ---------------------------------------------------------------------- core/src/main/java/org/apache/accumulo/core/conf/Property.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/4ba5faf4/core/src/main/java/org/apache/accumulo/core/conf/Property.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/conf/Property.java b/core/src/main/java/org/apache/accumulo/core/conf/Property.java index 358a1aa..db9d6a6 100644 --- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java +++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java @@ -445,7 +445,7 @@ public enum Property { TABLE_FILE_TYPE("table.file.type", RFile.EXTENSION, PropertyType.STRING, "Change the type of file a table writes"), TABLE_LOAD_BALANCER("table.balancer", "org.apache.accumulo.server.master.balancer.DefaultLoadBalancer", PropertyType.STRING, "This property can be set to allow the LoadBalanceByTable load balancer to change the called Load Balancer for this table"), - TABLE_FILE_COMPRESSION_TYPE("table.file.compress.type", "gz", PropertyType.STRING, "One of gz,lzo,none"), + TABLE_FILE_COMPRESSION_TYPE("table.file.compress.type", "gz", PropertyType.STRING, "One of gz,snappy,lzo,none"), TABLE_FILE_COMPRESSED_BLOCK_SIZE("table.file.compress.blocksize", "100K", PropertyType.MEMORY, "Similar to the hadoop io.seqfile.compress.blocksize setting, so that files have better query performance. The maximum value for this is " + Integer.MAX_VALUE + ". (This setting is the size threshold prior to compression, and applies even compression is disabled.)"),