Repository: hive Updated Branches: refs/heads/master 85ffd22af -> 972bcba7a
HIVE-13241 : LLAP: Incremental Caching marks some small chunks as "incomplete CB" (Sergey Shelukhin, reviewed by Prasanth Jayachandran) ADDENDUM Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/972bcba7 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/972bcba7 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/972bcba7 Branch: refs/heads/master Commit: 972bcba7a811bf7d464f59666b81bdfe6fd96d47 Parents: 85ffd22 Author: Sergey Shelukhin <[email protected]> Authored: Tue Apr 26 16:13:47 2016 -0700 Committer: Sergey Shelukhin <[email protected]> Committed: Tue Apr 26 16:13:47 2016 -0700 ---------------------------------------------------------------------- common/src/java/org/apache/hadoop/hive/conf/HiveConf.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/972bcba7/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java ---------------------------------------------------------------------- diff --git a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java index bae3999..5360ed4 100644 --- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java +++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java @@ -2604,9 +2604,9 @@ public class HiveConf extends Configuration { "use a FS without file IDs and rewrite files a lot (or are paranoid), you might want\n" + "to avoid this setting."), LLAP_CACHE_ENABLE_ORC_GAP_CACHE("hive.llap.orc.gap.cache", true, - "Whether LLAP cache for ORC should remember gaps in ORC RG read estimates, to avoid\n" + - "re-reading the data that was read once and discarded because it is unneeded. This is\n" + - "only necessary for ORC files written before HIVE-9660 (Hive 2.1?)."), + "Whether LLAP cache for ORC should remember gaps in ORC compression buffer read\n" + + "estimates, to avoid re-reading the data that was read once and discarded because it\n" + + "is unneeded. This is only necessary for ORC files written before HIVE-9660."), LLAP_IO_USE_FILEID_PATH("hive.llap.io.use.fileid.path", true, "Whether LLAP should use fileId (inode)-based path to ensure better consistency for the\n" + "cases of file overwrites. This is supported on HDFS."),
