Flink job leaking direct memory in test

I am writing a few integration tests for a flink job where each job creates a StreamExecutionEnvironment. At the end of each test, I close the streaming environment

env.close()

However, it seems like it is not releasing the memory. I am running the tests sequentially, where the first test runs followed by the second

When the second test runs I am getting the following error

2024-05-05T10:18:54.057-0700 [DEBUG] [TestEventLogger]     10:18:54,057 ERROR org.apache.flink.core.memory.MemorySegmentFactory            [] - Cannot allocate direct memory segment java.lang.OutOfMemoryError: Direct buffer memory. The direct out-of-memory error has occurred. This can mean two things: either job(s) require(s) a larger size of JVM direct memory or there is a direct memory leak. The direct memory can be allocated by user code or some of its dependencies. In this case 'taskmanager.memory.task.off-heap.size' configuration option should be increased. Flink framework and its dependencies also consume the direct memory, mostly for network communication. The most of network memory is managed by Flink and should not result in out-of-memory error. In certain special cases, in particular for jobs with high parallelism, the framework may require more direct memory which is not managed by Flink. In this case 'taskmanager.memory.framework.off-heap.size' configuration option should be increased. If the error persists then there is probably a direct memory leak in user code or some of its dependencies which has to be investigated and fixed. The task executor has to be shutdown...
2024-05-05T10:18:54.057-0700 [DEBUG] [TestEventLogger]          at java.base/java.nio.Bits.retryReserveMemoryLoop(Bits.java:251)
2024-05-05T10:18:54.057-0700 [DEBUG] [TestEventLogger]          at java.base/java.nio.Bits.reserveMemory(Bits.java:205)
2024-05-05T10:18:54.057-0700 [DEBUG] [TestEventLogger]          at java.base/java.nio.DirectByteBuffer.<init>(DirectByteBuffer.java:118)
2024-05-05T10:18:54.057-0700 [DEBUG] [TestEventLogger]          at java.base/java.nio.ByteBuffer.allocateDirect(ByteBuffer.java:317)
2024-05-05T10:18:54.057-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.core.memory.MemorySegmentFactory.allocateDirectMemory(MemorySegmentFactory.java:137)
2024-05-05T10:18:54.057-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.core.memory.MemorySegmentFactory.allocateUnpooledOffHeapMemory(MemorySegmentFactory.java:125)
2024-05-05T10:18:54.057-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.io.network.buffer.NetworkBufferPool.<init>(NetworkBufferPool.java:128)
2024-05-05T10:18:54.057-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.io.network.NettyShuffleServiceFactory.createNettyShuffleEnvironment(NettyShuffleServiceFactory.java:173)
2024-05-05T10:18:54.057-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.io.network.NettyShuffleServiceFactory.createNettyShuffleEnvironment(NettyShuffleServiceFactory.java:128)
2024-05-05T10:18:54.057-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.io.network.NettyShuffleServiceFactory.createNettyShuffleEnvironment(NettyShuffleServiceFactory.java:97)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.io.network.NettyShuffleServiceFactory.createShuffleEnvironment(NettyShuffleServiceFactory.java:78)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.io.network.NettyShuffleServiceFactory.createShuffleEnvironment(NettyShuffleServiceFactory.java:57)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.taskexecutor.TaskManagerServices.createShuffleEnvironment(TaskManagerServices.java:446)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.taskexecutor.TaskManagerServices.fromConfiguration(TaskManagerServices.java:304)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.taskexecutor.TaskManagerRunner.startTaskManager(TaskManagerRunner.java:631)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.minicluster.MiniCluster.startTaskManager(MiniCluster.java:755)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.minicluster.MiniCluster.startTaskManagers(MiniCluster.java:736)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.runtime.minicluster.MiniCluster.start(MiniCluster.java:457)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.client.program.PerJobMiniClusterFactory.submitJob(PerJobMiniClusterFactory.java:77)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.client.deployment.executors.LocalExecutor.execute(LocalExecutor.java:85)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.streaming.api.environment.StreamExecutionEnvironment.executeAsync(StreamExecutionEnvironment.java:2206)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.streaming.api.environment.StreamExecutionEnvironment.execute(StreamExecutionEnvironment.java:2093)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.streaming.api.environment.LocalStreamEnvironment.execute(LocalStreamEnvironment.java:68)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.streaming.api.environment.StreamExecutionEnvironment.execute(StreamExecutionEnvironment.java:2067)
2024-05-05T10:18:54.058-0700 [DEBUG] [TestEventLogger]          at org.apache.flink.streaming.api.environment.StreamExecutionEnvironment.execute(StreamExecutionEnvironment.java:2045)
2024-05-05T10:18:54.059-0700 [DEBUG] [TestEventLogger]          at com.Application.lambda$testExecution$3(Application.java:410)
2024-05-05T10:18:54.059-0700 [DEBUG] [TestEventLogger]          at java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1736)
2024-05-05T10:18:54.059-0700 [DEBUG] [TestEventLogger]          at java.base/java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1728)
2024-05-05T10:18:54.059-0700 [DEBUG] [TestEventLogger]          at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290)
2024-05-05T10:18:54.059-0700 [DEBUG] [TestEventLogger]          at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020)
2024-05-05T10:18:54.059-0700 [DEBUG] [TestEventLogger]          at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656)
2024-05-05T10:18:54.059-0700 [DEBUG] [TestEventLogger]          at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594)
2024-05-05T10:18:54.059-0700 [DEBUG] [TestEventLogger]          at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183)

I don’t see those exceptions when I run them individually. So it seems like the first test is not releasing the direct memory allocated. How can I make sure that the tests release all the memory?

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật