Skip to content

Commit 15c12e9

Browse files
author
Jaeho Yoo
committed
Add support for request and response compression
1 parent 29a5df7 commit 15c12e9

File tree

3 files changed

+109
-9
lines changed

3 files changed

+109
-9
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,7 @@ private void performRequest(
200200
for (String name : list(servletRequest.getHeaderNames())) {
201201
for (String value : list(servletRequest.getHeaders(name))) {
202202
// TODO: decide what should and shouldn't be forwarded
203-
if (!name.equalsIgnoreCase("Accept-Encoding")
204-
&& !name.equalsIgnoreCase("Host")
203+
if (!name.equalsIgnoreCase("Host")
205204
&& (addXForwardedHeaders || !name.startsWith("X-Forwarded"))) {
206205
requestBuilder.addHeader(name, value);
207206
}
@@ -261,7 +260,7 @@ else if (servletRequest.getCookies() != null) {
261260

262261
private Response buildResponse(ProxyResponse response, ImmutableList<NewCookie> cookie)
263262
{
264-
Response.ResponseBuilder builder = Response.status(response.statusCode()).entity(response.body());
263+
Response.ResponseBuilder builder = Response.status(response.statusCode()).entity(response.getRawBody());
265264
response.headers().forEach((headerName, value) -> builder.header(headerName.toString(), value));
266265
cookie.forEach(builder::cookie);
267266
return builder.build();
@@ -286,26 +285,27 @@ private FluentFuture<ProxyResponse> executeHttp(Request request)
286285
private ProxyResponse recordBackendForQueryId(Request request, ProxyResponse response, Optional<String> username,
287286
RoutingDestination routingDestination)
288287
{
289-
log.debug("For Request [%s] got Response [%s]", request.getUri(), response.body());
288+
String body = response.getDecompressedBody();
289+
log.debug("For Request [%s] got Response [%s]", request.getUri(), body);
290290

291291
QueryHistoryManager.QueryDetail queryDetail = getQueryDetailsFromRequest(request, username);
292292

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

295295
if (response.statusCode() == OK.getStatusCode()) {
296296
try {
297-
HashMap<String, String> results = OBJECT_MAPPER.readValue(response.body(), HashMap.class);
297+
HashMap<String, String> results = OBJECT_MAPPER.readValue(body, HashMap.class);
298298
queryDetail.setQueryId(results.get("id"));
299299
routingManager.setBackendForQueryId(queryDetail.getQueryId(), queryDetail.getBackendUrl());
300300
routingManager.setRoutingGroupForQueryId(queryDetail.getQueryId(), routingDestination.routingGroup());
301301
log.debug("QueryId [%s] mapped with proxy [%s]", queryDetail.getQueryId(), queryDetail.getBackendUrl());
302302
}
303303
catch (IOException e) {
304-
log.error("Failed to get QueryId from response [%s] , Status code [%s]", response.body(), response.statusCode());
304+
log.error("Failed to get QueryId from response [%s] , Status code [%s]", body, response.statusCode());
305305
}
306306
}
307307
else {
308-
log.error("Non OK HTTP Status code with response [%s] , Status code [%s], user: [%s]", response.body(), response.statusCode(), username.orElse(null));
308+
log.error("Non OK HTTP Status code with response [%s] , Status code [%s], user: [%s]", body, response.statusCode(), username.orElse(null));
309309
}
310310
queryDetail.setRoutingGroup(routingDestination.routingGroup());
311311
queryDetail.setExternalUrl(routingDestination.externalUrl());

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

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,11 @@
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;
27+
import java.io.InputStream;
2628
import java.nio.charset.StandardCharsets;
29+
import java.util.zip.GZIPInputStream;
2730

2831
import static java.util.Objects.requireNonNull;
2932

@@ -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,53 @@ 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 raw bytes for sending to clients (preserves
75+
* compression)
76+
*/
77+
public byte[] getRawBody()
78+
{
79+
return body;
80+
}
81+
82+
/**
83+
* Get the response body as a decompressed string for JSON parsing and logging.
84+
* Only call this when you need to parse the content, not when passing through
85+
* to clients.
86+
*/
87+
public String getDecompressedBody()
88+
{
89+
// Check if the response is gzip-compressed
90+
String contentEncoding = null;
91+
for (HeaderName headerName : headers.keySet()) {
92+
if (headerName.toString().equalsIgnoreCase("Content-Encoding")) {
93+
contentEncoding = headers.get(headerName).iterator().next();
94+
break;
95+
}
96+
}
97+
98+
if ("gzip".equalsIgnoreCase(contentEncoding)) {
99+
try {
100+
try (InputStream inputStream = new GZIPInputStream(new ByteArrayInputStream(body))) {
101+
return new String(inputStream.readAllBytes(), StandardCharsets.UTF_8);
102+
}
103+
}
104+
catch (IOException e) {
105+
// If decompression fails, return the body as UTF-8 string
106+
return new String(body, StandardCharsets.UTF_8);
107+
}
108+
}
109+
110+
// Not compressed, convert bytes to string
111+
return new String(body, StandardCharsets.UTF_8);
65112
}
66113
}
67114
}

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
@@ -78,6 +78,14 @@ public MockResponse dispatch(RecordedRequest request)
7878
.setBody("{\"starting\": false}");
7979
}
8080

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

0 commit comments

Comments
 (0)