Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix][Connector-V2] Fix doris TRANSFER_ENCODING header error #7267

Merged
merged 3 commits into from
Jul 26, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,27 @@

package org.apache.seatunnel.connectors.doris.util;

import org.apache.http.HttpRequestInterceptor;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.DefaultRedirectStrategy;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.protocol.HTTP;

/** util to build http client. */
public class HttpUtil {
private final HttpClientBuilder httpClientBuilder =
HttpClients.custom()
.addInterceptorFirst(
(HttpRequestInterceptor)
(request, context) -> {
// If there is no data for the first time, TRANSFER_ENCODING
// will be added to the request header. Doris initiates a
// redirect to be and checks whether there is
// TRANSFER_ENCODING in the request header. If there is, it
// will be abnormal, so it needs to be removed.
request.removeHeaders(HTTP.TRANSFER_ENCODING);
})
.setRedirectStrategy(
new DefaultRedirectStrategy() {
@Override
Expand Down
Loading