You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2015/05/27 06:34:42 UTC

[17/50] [abbrv] incubator-kylin git commit: add FAQ for AcceptPartialResults

add FAQ for AcceptPartialResults


Project: http://git-wip-us.apache.org/repos/asf/incubator-kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kylin/commit/52d338d4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/52d338d4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/52d338d4

Branch: refs/heads/0.8.0
Commit: 52d338d4d104095b4d88bb25ee8d091a34cc9fae
Parents: f251f8f
Author: honma <ho...@ebay.com>
Authored: Mon Apr 27 10:40:42 2015 +0800
Committer: shaofengshi <sh...@apache.org>
Committed: Wed May 27 12:23:44 2015 +0800

----------------------------------------------------------------------
 docs/MISC/FAQ on Kylin Installation and Usage.md | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/52d338d4/docs/MISC/FAQ on Kylin Installation and Usage.md
----------------------------------------------------------------------
diff --git a/docs/MISC/FAQ on Kylin Installation and Usage.md b/docs/MISC/FAQ on Kylin Installation and Usage.md
index 6f24512..210157d 100644
--- a/docs/MISC/FAQ on Kylin Installation and Usage.md	
+++ b/docs/MISC/FAQ on Kylin Installation and Usage.md	
@@ -41,3 +41,12 @@ The cardinality of dimensions is an important measure of cube complexity. The hi
 
 #### What is the difference between Kylin and Druid
 take a look at http://mail-archives.apache.org/mod_mbox/incubator-kylin-dev/201503.mbox/%3Ctencent_0DAD681A15F3B2F2379CADC9%40qq.com%3E
+
+#### Getting wrong result for the query with order by
+By default if you're making queries on the web client, a mode called "AcceptPartialResults" is enabled​, this is a protection mechanism that will only return part of the results to reduce server overhead. Honestly it might hurt the correctness of order by queries. 
+
+If you're seeking 100% correctness, after running the query you will find a notification:
+Note: Current results are partial, please click 'Show All' button to get all results.
+Click the "Show All" button to disable the "AcceptPartialResults" mode, and you'll get a right result.
+
+Notice "AcceptPartialResults" is only enabled by default at web client, you'll not meet such problems if you're using JDBC, ODBC or standard REST API.