[ 
https://issues.apache.org/jira/browse/DRILL-6543?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16531799#comment-16531799
 ] 

ASF GitHub Bot commented on DRILL-6543:
---------------------------------------

ilooner commented on a change in pull request #1351: DRILL-6543: Disable Hash 
Join fallback, add percent_reserved_allowance_from_direct
URL: https://github.com/apache/drill/pull/1351#discussion_r199913761
 
 

 ##########
 File path: 
exec/java-exec/src/main/java/org/apache/drill/exec/util/MemoryAllocationUtilities.java
 ##########
 @@ -138,16 +139,36 @@ public static long computeOperatorMemory(OptionSet 
optionManager, long maxAllocP
   @VisibleForTesting
   public static long computeQueryMemory(DrillConfig config, OptionSet 
optionManager, long directMemory) {
 
+    // Get the options
+    double percent_per_query = 
optionManager.getOption(ExecConstants.PERCENT_MEMORY_PER_QUERY);
+    long max_query_per_node = 
optionManager.getOption(ExecConstants.MAX_QUERY_MEMORY_PER_NODE);
+    double percent_allowance = 
optionManager.getOption(ExecConstants.PERCENT_RESERVED_ALLOWANCE_FROM_DIRECT);
+
+    // verify that the allowance is kept
+    if ( percent_per_query + percent_allowance > 1.0 ) {
 
 Review comment:
   Why do we need to make sure these add to one? Couldn't we just reserve our 
allowance from the previously computed maxAllocPerNode value. For example
   
   ```
       double percentAllowance = 
optionManager.getOption(ExecConstants.PERCENT_RESERVED_ALLOWANCE_FROM_DIRECT);
       // Memory computed as a percent of total memory.
       long perQueryMemory = Math.round(directMemory *
           optionManager.getOption(ExecConstants.PERCENT_MEMORY_PER_QUERY));
   
       // But, must allow at least the amount given explicitly for
       // backward compatibility.
   
       perQueryMemory = Math.max(perQueryMemory,
           optionManager.getOption(ExecConstants.MAX_QUERY_MEMORY_PER_NODE));
   
       // Compute again as either the total direct memory, or the
       // configured maximum top-level allocation (10 GB).
   
       long maxAllocPerNode = Math.min(directMemory,
           config.getLong(RootAllocatorFactory.TOP_LEVEL_MAX_ALLOC));
   
       // Final amount per node per query is the minimum of these two.
       maxAllocPerNode = Math.min(maxAllocPerNode, perQueryMemory);
   
       // Deduct non buffered allowance
       return Math.round(maxAllocPerNode * (1.0 - percentAllowance));
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


> Option for memory mgmt: Reserve allowance for non-buffered
> ----------------------------------------------------------
>
>                 Key: DRILL-6543
>                 URL: https://issues.apache.org/jira/browse/DRILL-6543
>             Project: Apache Drill
>          Issue Type: Improvement
>          Components: Execution - Relational Operators
>    Affects Versions: 1.13.0
>            Reporter: Boaz Ben-Zvi
>            Assignee: Boaz Ben-Zvi
>            Priority: Major
>             Fix For: 1.15.0
>
>
> Introduce a new option to enforce/remind users to reserve some allowance when 
> budgeting their memory:
> The problem: When the "planner.memory.max_query_memory_per_node" (MQMPN) 
> option is set equal (or "nearly equal") to the allocated *Direct Memory*, an 
> OOM is still possible. The reason is that the memory used by the 
> "non-buffered" operators is not taken into account.
> For example, MQMPN == Direct-Memory == 100 MB. Run a query with 5 buffered 
> operators (e.g., 5 instances of a Hash-Join), so each gets "promised" 20 MB. 
> When other non-buffered operators (e.g., a Scanner, or a Sender) also grab 
> some of the Direct Memory, then less than 100 MB is left available. And if 
> all those 5 Hash-Joins are pushing their limits, then one HJ may have only 
> allocated 12MB so far, but on the next 1MB allocation it will hit an OOM 
> (from the JVM, as all the 100MB Direct memory is already used).
> A solution -- a new option to _*reserve*_ some of the Direct Memory for those 
> non-buffered operators (e.g., default %25). This *allowance* may prevent many 
> of the cases like the example above. The new option would return an error 
> (when a query initiates) if the MQMPN is set too high. Note that this option 
> +can not+ address concurrent queries.
> This should also apply to the alternative for the MQMPN - the 
> {{"planner.memory.percent_per_query"}} option (PPQ). The PPQ does not 
> _*reserve*_ such memory (e.g., can set it to %100); only its documentation 
> clearly explains this issue (that doc suggests reserving %50 allowance, as it 
> was written when the Hash-Join was non-buffered; i.e., before spill was 
> implemented).
> The memory given to the buffered operators is the highest calculated between 
> the MQMPN and the PPQ. The new reserve option would verify that this figure 
> allows the allowance.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to