Skip to content

Commit

Permalink
netty: Respect io.netty.allocator.type="unpooled" when getting Netty …
Browse files Browse the repository at this point in the history
…Allocator (grpc#10543)

Fixes grpc#10292
  • Loading branch information
larry-safran authored and DNVindhya committed Oct 5, 2023
1 parent 400511d commit 3120c82
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
9 changes: 9 additions & 0 deletions netty/src/main/java/io/grpc/netty/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import io.grpc.netty.NettySocketSupport.NativeSocketOptions;
import io.netty.buffer.ByteBufAllocator;
import io.netty.buffer.PooledByteBufAllocator;
import io.netty.buffer.UnpooledByteBufAllocator;
import io.netty.channel.Channel;
import io.netty.channel.ChannelConfig;
import io.netty.channel.ChannelFactory;
Expand All @@ -60,6 +61,7 @@
import java.lang.reflect.Constructor;
import java.nio.channels.ClosedChannelException;
import java.nio.channels.UnresolvedAddressException;
import java.util.Locale;
import java.util.Map;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.TimeUnit;
Expand Down Expand Up @@ -135,6 +137,13 @@ private static final class ByteBufAllocatorPreferHeapHolder {
public static ByteBufAllocator getByteBufAllocator(boolean forceHeapBuffer) {
if (Boolean.parseBoolean(
System.getProperty("io.grpc.netty.useCustomAllocator", "true"))) {

String allocType = System.getProperty("io.netty.allocator.type", "pooled");
if (allocType.toLowerCase(Locale.ROOT).equals("unpooled")) {
logger.log(Level.FINE, "Using unpooled allocator");
return UnpooledByteBufAllocator.DEFAULT;
}

boolean defaultPreferDirect = PooledByteBufAllocator.defaultPreferDirect();
logger.log(
Level.FINE,
Expand Down
17 changes: 17 additions & 0 deletions netty/src/test/java/io/grpc/netty/UtilsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import static com.google.common.truth.Truth.assertThat;
import static com.google.common.truth.TruthJUnit.assume;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertSame;

Expand All @@ -28,6 +29,7 @@
import io.grpc.Metadata;
import io.grpc.Status;
import io.grpc.internal.GrpcUtil;
import io.netty.buffer.ByteBufAllocator;
import io.netty.channel.Channel;
import io.netty.channel.ChannelFactory;
import io.netty.channel.ChannelOption;
Expand Down Expand Up @@ -70,6 +72,21 @@ public void testStatusFromThrowable() {
assertStatusEquals(Status.UNKNOWN.withCause(t), Utils.statusFromThrowable(t));
}

@Test
public void testGetBufferAllocator() {
ByteBufAllocator heapAllocator = Utils.getByteBufAllocator(true);
ByteBufAllocator directAllocator = Utils.getByteBufAllocator(false);
assertNotEquals(heapAllocator, directAllocator);

System.setProperty("io.netty.allocator.type", "unpooled");
ByteBufAllocator unpooled1 = Utils.getByteBufAllocator(false);
assertThat(unpooled1.getClass().getName()).isNotEqualTo("UnpooledByteBufAllocator");

System.setProperty("io.netty.allocator.type", "pooled");
ByteBufAllocator unpooled2 = Utils.getByteBufAllocator(false);
assertEquals(directAllocator, unpooled2);
}

@Test
public void convertClientHeaders_sanitizes() {
Metadata metaData = new Metadata();
Expand Down

0 comments on commit 3120c82

Please sign in to comment.