This is an automated email from the ASF dual-hosted git repository. arina pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/drill.git
commit 132a05ecec9d65c00bcce20678f29228abaea418 Author: Ben-Zvi <[email protected]> AuthorDate: Mon Jul 2 18:30:47 2018 -0700 DRILL-6577: Change Hash-Join fallback default to false closes #1359 --- exec/java-exec/src/main/resources/drill-module.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/java-exec/src/main/resources/drill-module.conf b/exec/java-exec/src/main/resources/drill-module.conf index 6889a2f..4b1e9dd 100644 --- a/exec/java-exec/src/main/resources/drill-module.conf +++ b/exec/java-exec/src/main/resources/drill-module.conf @@ -427,7 +427,7 @@ drill.exec.options: { # Setting to control if HashJoin should fallback to older behavior of consuming # unbounded memory. By default it's set to false such that the # query will fail if there is not enough memory - drill.exec.hashjoin.fallback.enabled: true, # should soon be changed to false !! + drill.exec.hashjoin.fallback.enabled: false # Setting to control if HashAgg should fallback to older behavior of consuming # unbounded memory. In case of 2 phase Agg when available memory is not enough # to start at least 2 partitions then HashAgg fallbacks to this case. It can be
