-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
TransportConfig
to control low level transport settings (#3041)
Motivation: Users need a way to change low-level Netty settings, like `AdaptiveRecvByteBufAllocator` parameters. In the future, we can use this interface for more similar settings without the need to change client/server builder. Modifications: - Add `TransportConfig` and `TransportConfigBuilder` in `transport-api` module; - Add methods on `SingleAddressHttpClientBuilder` and `HttpServerBuilder` to let users pass `TransportConfig`; - Wire it up to propagate to `Tcp[Client|Server]ChannelInitializer` as `TransportConfigInitializer`; Result: Users can control `AdaptiveRecvByteBufAllocator` settings.
- Loading branch information
1 parent
f345761
commit 4d9ab77
Showing
18 changed files
with
315 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...-internal/src/main/java/io/servicetalk/tcp/netty/internal/TransportConfigInitializer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright © 2024 Apple Inc. and the ServiceTalk project authors | ||
* | ||
* Licensed 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 io.servicetalk.tcp.netty.internal; | ||
|
||
import io.servicetalk.transport.api.TransportConfig; | ||
import io.servicetalk.transport.netty.internal.ChannelInitializer; | ||
|
||
import io.netty.channel.AdaptiveRecvByteBufAllocator; | ||
import io.netty.channel.Channel; | ||
|
||
import static java.lang.Math.min; | ||
|
||
final class TransportConfigInitializer implements ChannelInitializer { | ||
|
||
private final TransportConfig config; | ||
|
||
TransportConfigInitializer(final TransportConfig config) { | ||
this.config = config; | ||
} | ||
|
||
@Override | ||
public void init(final Channel channel) { | ||
channel.config().setRecvByteBufAllocator(new AdaptiveRecvByteBufAllocator( | ||
min(512, config.maxBytesPerRead()), min(32_768, config.maxBytesPerRead()), config.maxBytesPerRead()) | ||
.respectMaybeMoreData(false) | ||
.maxMessagesPerRead(config.maxReadAttemptsPerSelect())); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.