Github user julienledem commented on a diff in the pull request: https://github.com/apache/drill/pull/283#discussion_r46225385 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/ops/FragmentContext.java --- @@ -314,11 +285,16 @@ public BufferAllocator getAllocator() { return allocator; } - public BufferAllocator getNewChildAllocator(final long initialReservation, - final long maximumReservation, - final boolean applyFragmentLimit) throws OutOfMemoryException { - return allocator.getChildAllocator(new AsLimitConsumer(), initialReservation, maximumReservation, - applyFragmentLimit); + public BufferAllocator getNewChildAllocator(final String operatorName, + final int operatorId, + final long initialReservation, + final long maximumReservation, + final boolean applyFragmentLimit) throws OutOfMemoryException { + return allocator.newChildAllocator( + "op:" + QueryIdHelper.getFragmentId(fragment.getHandle()) + ":" + operatorId + ":" + operatorName, + initialReservation, + maximumReservation + ); --- End diff -- applyFragmentLimit is not used?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---