瀏覽代碼

HPCC-14047 Default newBalancedSpotter off as deadlock workaround

HPCC-11400 introduced a new scheme for spotting balanced
splitters, unfortunately it seems some graphs, particularly
involving joins down stream still cause the splitters to be
misidentified as balanced and consequently cause deadlock in Thor

Signed-off-by: Jake Smith <jake.smith@lexisnexis.com>
Jake Smith 10 年之前
父節點
當前提交
ebb418d7ea
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ecl/hqlcpp/hqlcpp.cpp

+ 1 - 1
ecl/hqlcpp/hqlcpp.cpp

@@ -1754,7 +1754,7 @@ void HqlCppTranslator::cacheOptions()
         DebugOption(options.alwaysUseGraphResults,"alwaysUseGraphResults",false),
         DebugOption(options.noConditionalLinks,"noConditionalLinks",false),
         DebugOption(options.reportAssertFilenameTail,"reportAssertFilenameTail",false),        
-        DebugOption(options.newBalancedSpotter,"newBalancedSpotter",true),
+        DebugOption(options.newBalancedSpotter,"newBalancedSpotter",false),
         DebugOption(options.keyedJoinPreservesOrder,"keyedJoinPreservesOrder",true),
         DebugOption(options.expandSelectCreateRow,"expandSelectCreateRow",false),
         DebugOption(options.optimizeSortAllFields,"optimizeSortAllFields",true),