Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.3.1
-
None
Description
In NettyBootstrap we configure the low and high watermarks in the following order:
bootstrap.childOption(ChannelOption.WRITE_BUFFER_LOW_WATER_MARK, config.getMemorySegmentSize() + 1); bootstrap.childOption(ChannelOption.WRITE_BUFFER_HIGH_WATER_MARK, 2 * config.getMemorySegmentSize());
When the memory segment size is higher than the default high water mark, this throws an `IllegalArgumentException` when a client tries to connect. Hence, this unfortunately only happens during runtime when a intermediate result is requested. This doesn't fail the job, but logs a warning and ignores the failed configuration attempt, potentially resulting in degraded performance because of a lower than expected watermark.
A simple fix is to first configure the high water mark and only then configure the low watermark.
Attachments
Issue Links
- breaks
-
FLINK-7701 IllegalArgumentException in Netty bootstrap with small memory state segment size
- Resolved
- links to