Skip to content

Commit 96d2ab9

Browse files
Jaeho YooChaho12
authored andcommitted
Add support for request and response compression
1 parent de55875 commit 96d2ab9

File tree

3 files changed

+92
-9
lines changed

3 files changed

+92
-9
lines changed

gateway-ha/src/main/java/io/trino/gateway/proxyserver/ProxyRequestHandler.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,7 @@ private void performRequest(
167167
for (String name : list(servletRequest.getHeaderNames())) {
168168
for (String value : list(servletRequest.getHeaders(name))) {
169169
// TODO: decide what should and shouldn't be forwarded
170-
if (!name.equalsIgnoreCase("Accept-Encoding")
171-
&& !name.equalsIgnoreCase("Host")
170+
if (!name.equalsIgnoreCase("Host")
172171
&& (addXForwardedHeaders || !name.startsWith("X-Forwarded"))) {
173172
requestBuilder.addHeader(name, value);
174173
}
@@ -270,26 +269,27 @@ private static WebApplicationException badRequest(String message)
270269
private ProxyResponse recordBackendForQueryId(Request request, ProxyResponse response, Optional<String> username,
271270
RoutingDestination routingDestination)
272271
{
273-
log.debug("For Request [%s] got Response [%s]", request.getUri(), response.body());
272+
String body = response.decompressedBody();
273+
log.debug("For Request [%s] got Response [%s]", request.getUri(), body);
274274

275275
QueryHistoryManager.QueryDetail queryDetail = getQueryDetailsFromRequest(request, username);
276276

277277
log.debug("Extracting proxy destination : [%s] for request : [%s]", queryDetail.getBackendUrl(), request.getUri());
278278

279279
if (response.statusCode() == OK.getStatusCode()) {
280280
try {
281-
HashMap<String, String> results = OBJECT_MAPPER.readValue(response.body(), HashMap.class);
281+
HashMap<String, String> results = OBJECT_MAPPER.readValue(body, HashMap.class);
282282
queryDetail.setQueryId(results.get("id"));
283283
routingManager.setBackendForQueryId(queryDetail.getQueryId(), queryDetail.getBackendUrl());
284284
routingManager.setRoutingGroupForQueryId(queryDetail.getQueryId(), routingDestination.routingGroup());
285285
log.debug("QueryId [%s] mapped with proxy [%s]", queryDetail.getQueryId(), queryDetail.getBackendUrl());
286286
}
287287
catch (IOException e) {
288-
log.error("Failed to get QueryId from response [%s] , Status code [%s]", response.body(), response.statusCode());
288+
log.error("Failed to get QueryId from response [%s] , Status code [%s]", body, response.statusCode());
289289
}
290290
}
291291
else {
292-
log.error("Non OK HTTP Status code with response [%s] , Status code [%s], user: [%s]", response.body(), response.statusCode(), username.orElse(null));
292+
log.error("Non OK HTTP Status code with response [%s] , Status code [%s], user: [%s]", body, response.statusCode(), username.orElse(null));
293293
}
294294
queryDetail.setRoutingGroup(routingDestination.routingGroup());
295295
queryDetail.setExternalUrl(routingDestination.externalUrl());

gateway-ha/src/main/java/io/trino/gateway/proxyserver/ProxyResponseHandler.java

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@
2222
import io.trino.gateway.ha.config.ProxyResponseConfiguration;
2323
import io.trino.gateway.proxyserver.ProxyResponseHandler.ProxyResponse;
2424

25+
import java.io.ByteArrayInputStream;
2526
import java.io.IOException;
26-
import java.nio.charset.StandardCharsets;
27+
import java.io.InputStream;
28+
import java.util.zip.GZIPInputStream;
2729

30+
import static java.nio.charset.StandardCharsets.UTF_8;
2831
import static java.util.Objects.requireNonNull;
2932

3033
public class ProxyResponseHandler
@@ -47,7 +50,9 @@ public ProxyResponse handleException(Request request, Exception exception)
4750
public ProxyResponse handle(Request request, Response response)
4851
{
4952
try {
50-
return new ProxyResponse(response.getStatusCode(), response.getHeaders(), new String(response.getInputStream().readNBytes((int) responseSize.toBytes()), StandardCharsets.UTF_8));
53+
// Store raw bytes to preserve compression
54+
byte[] responseBodyBytes = response.getInputStream().readNBytes((int) responseSize.toBytes());
55+
return new ProxyResponse(response.getStatusCode(), response.getHeaders(), responseBodyBytes);
5156
}
5257
catch (IOException e) {
5358
throw new ProxyException("Failed reading response from remote Trino server", e);
@@ -57,11 +62,36 @@ public ProxyResponse handle(Request request, Response response)
5762
public record ProxyResponse(
5863
int statusCode,
5964
ListMultimap<HeaderName, String> headers,
60-
String body)
65+
byte[] body)
6166
{
6267
public ProxyResponse
6368
{
6469
requireNonNull(headers, "headers is null");
70+
requireNonNull(body, "body is null");
71+
}
72+
73+
/**
74+
* Get the response body as a decompressed string for JSON parsing and logging.
75+
* Only call this when you need to parse the content, not when passing through
76+
* to clients.
77+
*/
78+
public String decompressedBody()
79+
{
80+
// Check if the response is gzip-compressed
81+
String contentEncoding = headers.get(HeaderName.of("Content-Encoding")).stream().findFirst().orElse(null);
82+
83+
if ("gzip".equalsIgnoreCase(contentEncoding)) {
84+
try (InputStream inputStream = new GZIPInputStream(new ByteArrayInputStream(body))) {
85+
return new String(inputStream.readAllBytes(), UTF_8);
86+
}
87+
catch (IOException e) {
88+
// If decompression fails, return the body as UTF-8 string
89+
return new String(body, UTF_8);
90+
}
91+
}
92+
93+
// Not compressed, convert bytes to string
94+
return new String(body, UTF_8);
6595
}
6696
}
6797
}

gateway-ha/src/test/java/io/trino/gateway/proxyserver/TestProxyRequestHandler.java

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,14 @@ public MockResponse dispatch(RecordedRequest request)
8080
.setBody("{\"starting\": false}");
8181
}
8282

83+
if (request.getPath().equals(healthCheckEndpoint + "?test-compression")) {
84+
// Return the Accept-Encoding header value for compression testing
85+
String acceptEncoding = request.getHeader("Accept-Encoding");
86+
return new MockResponse().setResponseCode(200)
87+
.setHeader(CONTENT_TYPE, JSON_UTF_8)
88+
.setBody(acceptEncoding != null ? acceptEncoding : "null");
89+
}
90+
8391
if (request.getMethod().equals("PUT") && request.getPath().equals(customPutEndpoint)) {
8492
return new MockResponse().setResponseCode(200)
8593
.setHeader(CONTENT_TYPE, JSON_UTF_8)
@@ -159,4 +167,49 @@ void testGetQueryDetailsFromRequest()
159167
assertThat(queryDetail.getSource()).isEqualTo("trino-cli");
160168
assertThat(queryDetail.getBackendUrl()).isEqualTo("http://localhost:" + routerPort);
161169
}
170+
171+
@Test
172+
void testAcceptEncodingHeaderForwarding()
173+
throws Exception
174+
{
175+
// Test that Accept-Encoding header is properly forwarded to backends
176+
String url = "http://localhost:" + routerPort + healthCheckEndpoint + "?test-compression";
177+
String expectedAcceptEncoding = "gzip, deflate, br";
178+
179+
Request request = new Request.Builder()
180+
.url(url)
181+
.get()
182+
.addHeader("Accept-Encoding", expectedAcceptEncoding)
183+
.build();
184+
185+
try (Response response = httpClient.newCall(request).execute()) {
186+
assertThat(response.code()).isEqualTo(200);
187+
assertThat(response.body()).isNotNull();
188+
189+
// The mock backend returns the Accept-Encoding header value in the response body
190+
assertThat(response.body().string()).isEqualTo(expectedAcceptEncoding);
191+
}
192+
}
193+
194+
@Test
195+
void testDefaultAcceptEncodingHeaderForwarding()
196+
throws Exception
197+
{
198+
// Test that requests without explicit Accept-Encoding header work correctly
199+
// Note: OkHttp automatically adds "Accept-Encoding: gzip" when none is specified
200+
String url = "http://localhost:" + routerPort + healthCheckEndpoint + "?test-compression";
201+
202+
Request request = new Request.Builder()
203+
.url(url)
204+
.get()
205+
.build(); // No explicit Accept-Encoding header
206+
207+
try (Response response = httpClient.newCall(request).execute()) {
208+
assertThat(response.code()).isEqualTo(200);
209+
assertThat(response.body()).isNotNull();
210+
211+
// OkHttp automatically adds "Accept-Encoding: gzip" when none is specified
212+
assertThat(response.body().string()).isEqualTo("gzip");
213+
}
214+
}
162215
}

0 commit comments

Comments
 (0)