/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.tajo.plan.function.stream; import io.netty.buffer.ByteBuf; import io.netty.buffer.ByteBufAllocator; import io.netty.buffer.PooledByteBufAllocator; import io.netty.buffer.UnpooledByteBufAllocator; import io.netty.util.ResourceLeakDetector; import io.netty.util.internal.PlatformDependent; import org.apache.hadoop.classification.InterfaceStability; import org.apache.tajo.TajoConstants; import org.apache.tajo.conf.TajoConf; import java.lang.reflect.Field; /* this class is PooledBuffer holder */ public class BufferPool { public static final String ALLOW_CACHE = "tajo.storage.buffer.thread-local.cache"; private static final ByteBufAllocator ALLOCATOR; private BufferPool() { } static { if (TajoConstants.IS_TEST_MODE) { /* Disable pooling buffers for memory usage */ ALLOCATOR = UnpooledByteBufAllocator.DEFAULT; /* if you are finding memory leak, please enable this line */ ResourceLeakDetector.setLevel(ResourceLeakDetector.Level.ADVANCED); } else { TajoConf tajoConf = new TajoConf(); ALLOCATOR = createPooledByteBufAllocator(true, tajoConf.getBoolean(ALLOW_CACHE, true), 0); } } /** * borrowed from Spark */ public static PooledByteBufAllocator createPooledByteBufAllocator( boolean allowDirectBufs, boolean allowCache, int numCores) { if (numCores == 0) { numCores = Runtime.getRuntime().availableProcessors(); } return new PooledByteBufAllocator( allowDirectBufs && PlatformDependent.directBufferPreferred(), Math.min(getPrivateStaticField("DEFAULT_NUM_HEAP_ARENA"), numCores), Math.min(getPrivateStaticField("DEFAULT_NUM_DIRECT_ARENA"), allowDirectBufs ? numCores : 0), getPrivateStaticField("DEFAULT_PAGE_SIZE"), getPrivateStaticField("DEFAULT_MAX_ORDER"), allowCache ? getPrivateStaticField("DEFAULT_TINY_CACHE_SIZE") : 0, allowCache ? getPrivateStaticField("DEFAULT_SMALL_CACHE_SIZE") : 0, allowCache ? getPrivateStaticField("DEFAULT_NORMAL_CACHE_SIZE") : 0 ); } /** Used to get defaults from Netty's private static fields. */ private static int getPrivateStaticField(String name) { try { Field f = PooledByteBufAllocator.DEFAULT.getClass().getDeclaredField(name); f.setAccessible(true); return f.getInt(null); } catch (Exception e) { throw new RuntimeException(e); } } public static long maxDirectMemory() { return PlatformDependent.maxDirectMemory(); } public static ByteBuf directBuffer(int size) { return ALLOCATOR.directBuffer(size); } /** * * @param size the initial capacity * @param max the max capacity * @return allocated ByteBuf from pool */ public static ByteBuf directBuffer(int size, int max) { return ALLOCATOR.directBuffer(size, max); } @InterfaceStability.Unstable public static void forceRelease(ByteBuf buf) { buf.release(buf.refCnt()); } /** * the ByteBuf will increase to writable size * @param buf * @param minWritableBytes required minimum writable size */ public static void ensureWritable(ByteBuf buf, int minWritableBytes) { buf.ensureWritable(minWritableBytes); } }