-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix] [broker] network package lost if enable haProxyProtocolEnabled (#…
…21684) Fixes #21557 ### Motivation There is a network package loss issue after enabling `haProxyProtocolEnabled`, which leads the error `Checksum failed on the broker` and `Adjusted frame length exceeds`, you can reproduce the issue by the test `testSlowNetwork`. ### Modifications Fix the bug. (cherry picked from commit 6e18874)
- Loading branch information
1 parent
bbc8dfb
commit ef7e8a4
Showing
3 changed files
with
192 additions
and
25 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
52 changes: 52 additions & 0 deletions
52
pulsar-broker/src/test/java/org/apache/pulsar/client/api/InjectedClientCnxClientBuilder.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,52 @@ | ||
/** | ||
* 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.pulsar.client.api; | ||
|
||
import io.netty.channel.EventLoopGroup; | ||
import java.util.concurrent.ThreadFactory; | ||
import org.apache.pulsar.client.impl.ClientBuilderImpl; | ||
import org.apache.pulsar.client.impl.ClientCnx; | ||
import org.apache.pulsar.client.impl.ConnectionPool; | ||
import org.apache.pulsar.client.impl.PulsarClientImpl; | ||
import org.apache.pulsar.client.impl.conf.ClientConfigurationData; | ||
import org.apache.pulsar.client.util.ExecutorProvider; | ||
import org.apache.pulsar.common.util.netty.EventLoopUtil; | ||
|
||
public class InjectedClientCnxClientBuilder { | ||
|
||
public static PulsarClientImpl create(final ClientBuilderImpl clientBuilder, | ||
final ClientCnxFactory clientCnxFactory) throws Exception { | ||
ClientConfigurationData conf = clientBuilder.getClientConfigurationData(); | ||
ThreadFactory threadFactory = new ExecutorProvider | ||
.ExtendedThreadFactory("pulsar-client-io", Thread.currentThread().isDaemon()); | ||
EventLoopGroup eventLoopGroup = | ||
EventLoopUtil.newEventLoopGroup(conf.getNumIoThreads(), conf.isEnableBusyWait(), threadFactory); | ||
|
||
// Inject into ClientCnx. | ||
ConnectionPool pool = new ConnectionPool(conf, eventLoopGroup, | ||
() -> clientCnxFactory.generate(conf, eventLoopGroup)); | ||
|
||
return new PulsarClientImpl(conf, eventLoopGroup, pool); | ||
} | ||
|
||
public interface ClientCnxFactory { | ||
|
||
ClientCnx generate(ClientConfigurationData conf, EventLoopGroup eventLoopGroup); | ||
} | ||
} |
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