You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by sm...@apache.org on 2015/05/13 04:42:51 UTC

[2/6] drill git commit: DRILL-3049: Increase sort spooling threshold

DRILL-3049: Increase sort spooling threshold


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/01a36f1e
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/01a36f1e
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/01a36f1e

Branch: refs/heads/master
Commit: 01a36f1e81fee08a5f7af204ac8cbdbf8d74a0b2
Parents: 20b3688
Author: Steven Phillips <sm...@apache.org>
Authored: Tue May 12 17:55:54 2015 -0700
Committer: Steven Phillips <sm...@apache.org>
Committed: Tue May 12 18:21:10 2015 -0700

----------------------------------------------------------------------
 exec/java-exec/src/main/resources/drill-module.conf | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/01a36f1e/exec/java-exec/src/main/resources/drill-module.conf
----------------------------------------------------------------------
diff --git a/exec/java-exec/src/main/resources/drill-module.conf b/exec/java-exec/src/main/resources/drill-module.conf
index b1e3fde..7630938 100644
--- a/exec/java-exec/src/main/resources/drill-module.conf
+++ b/exec/java-exec/src/main/resources/drill-module.conf
@@ -136,13 +136,13 @@ drill.exec: {
     cache_max_size: 1000
   },
   sort: {
-    purge.threshold : 100,
+    purge.threshold : 1000,
     external: {
       batch.size : 4000,
       spill: {
         batch.size : 4000,
-        group.size : 100,
-        threshold : 200,
+        group.size : 40000,
+        threshold : 40000,
         directories : [ "/tmp/drill/spill" ],
         fs : "file:///"
       }