Update configuration defaults. Rename bounds system property to drill.enable_unsafe_memory_access.
Project: http://git-wip-us.apache.org/repos/asf/drill/repo Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/f0b3671d Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/f0b3671d Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/f0b3671d Branch: refs/heads/master Commit: f0b3671d60d92800411d81ad283430d0eef01c96 Parents: 22d6465 Author: Jacques Nadeau <[email protected]> Authored: Thu May 14 18:09:11 2015 -0700 Committer: Jacques Nadeau <[email protected]> Committed: Thu May 14 21:58:53 2015 -0700 ---------------------------------------------------------------------- .../src/main/java/org/apache/drill/exec/util/AssertionUtil.java | 2 +- exec/java-exec/src/main/resources/drill-module.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/drill/blob/f0b3671d/exec/java-exec/src/main/java/org/apache/drill/exec/util/AssertionUtil.java ---------------------------------------------------------------------- diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/util/AssertionUtil.java b/exec/java-exec/src/main/java/org/apache/drill/exec/util/AssertionUtil.java index 20c2f8e..2348e62 100644 --- a/exec/java-exec/src/main/java/org/apache/drill/exec/util/AssertionUtil.java +++ b/exec/java-exec/src/main/java/org/apache/drill/exec/util/AssertionUtil.java @@ -28,7 +28,7 @@ public class AssertionUtil { boolean isAssertEnabled = false; assert isAssertEnabled = true; ASSERT_ENABLED = isAssertEnabled; - BOUNDS_CHECKING_ENABLED = ASSERT_ENABLED || !"false".equals(System.getProperty("bounds")); + BOUNDS_CHECKING_ENABLED = ASSERT_ENABLED || !"true".equals(System.getProperty("drill.enable_unsafe_memory_access")); } public static boolean isAssertionsEnabled(){ http://git-wip-us.apache.org/repos/asf/drill/blob/f0b3671d/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 6fb9340..66055f1 100644 --- a/exec/java-exec/src/main/resources/drill-module.conf +++ b/exec/java-exec/src/main/resources/drill-module.conf @@ -37,7 +37,7 @@ drill.exec: { } }, bit: { - timeout: 30, + timeout: 300, server: { port : 31011, retry:{
