Skip to content

Commit de865c3

Browse files
committed
Fix deserialization issue in performance mode
1 parent d3d8089 commit de865c3

File tree

3 files changed

+60
-45
lines changed

3 files changed

+60
-45
lines changed

clickhouse-client/src/main/java/com/clickhouse/client/ClickHouseClient.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ static ClickHouseInputStream getAsyncResponseInputStream(ClickHouseConfig config
180180
.createPipedOutputStream(config, null);
181181
wrappedInput = getResponseInputStream(config, decompressedStream.getInputStream(), postCloseAction);
182182
submit(() -> {
183-
try (ClickHouseInputStream in = ClickHouseInputStream.of(input, config.getReadBufferSize());
184-
ClickHouseOutputStream out = decompressedStream) {
183+
try (ClickHouseInputStream in = ClickHouseInputStream.of(input, config.getReadBufferSize(),
184+
config.getResponseCompressAlgorithm(), null); ClickHouseOutputStream out = decompressedStream) {
185185
in.pipe(out);
186186
}
187187
return null;

clickhouse-client/src/main/java/com/clickhouse/client/stream/AbstractByteArrayInputStream.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,10 @@ public long skip(long n) throws IOException {
264264

265265
// peforms better but this is a bit tricky
266266
if (n == Long.MAX_VALUE) {
267+
int avail = 0;
267268
long counter = (long) limit - position;
268-
while (updateBuffer() > 0) {
269-
counter += limit;
269+
while ((avail = updateBuffer()) > 0) {
270+
counter += avail;
270271
}
271272

272273
return counter;

clickhouse-client/src/test/java/com/clickhouse/client/ClientIntegrationTest.java

+55-41
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import java.util.stream.Collectors;
2626

2727
import com.clickhouse.client.ClickHouseClientBuilder.Agent;
28+
import com.clickhouse.client.config.ClickHouseBufferingMode;
2829
import com.clickhouse.client.config.ClickHouseClientOption;
2930
import com.clickhouse.client.config.ClickHouseRenameMethod;
3031
import com.clickhouse.client.config.ClickHouseSslMode;
@@ -93,11 +94,27 @@ protected ClickHouseNode getSecureServer() {
9394

9495
@DataProvider(name = "compressionMatrix")
9596
protected Object[][] getCompressionMatrix() {
96-
return new Object[][] {
97-
new Object[] { false, false },
98-
new Object[] { true, false },
99-
new Object[] { true, true },
100-
new Object[] { false, true } };
97+
ClickHouseFormat[] formats = new ClickHouseFormat[] {
98+
ClickHouseFormat.RowBinaryWithNamesAndTypes,
99+
ClickHouseFormat.TabSeparatedWithNamesAndTypes
100+
};
101+
ClickHouseBufferingMode[] modes = new ClickHouseBufferingMode[] {
102+
ClickHouseBufferingMode.RESOURCE_EFFICIENT,
103+
ClickHouseBufferingMode.PERFORMANCE
104+
};
105+
boolean[] bools = new boolean[] { true, false };
106+
Object[][] array = new Object[formats.length * modes.length * 2 * 2][4];
107+
int i = 0;
108+
for (ClickHouseFormat format : formats) {
109+
for (ClickHouseBufferingMode mode : modes) {
110+
for (boolean compress : bools) {
111+
for (boolean decompress : bools) {
112+
array[i++] = new Object[] { format, mode, compress, decompress };
113+
}
114+
}
115+
}
116+
}
117+
return array;
101118
}
102119

103120
@DataProvider(name = "renameMethods")
@@ -187,47 +204,44 @@ public void testOpenCloseClient() throws Exception {
187204
}
188205

189206
@Test(dataProvider = "compressionMatrix", groups = { "integration" })
190-
public void testCompression(boolean compressRequest, boolean compressResponse)
191-
throws ClickHouseException {
207+
public void testCompression(ClickHouseFormat format, ClickHouseBufferingMode bufferingMode,
208+
boolean compressRequest, boolean compressResponse) throws ClickHouseException {
192209
ClickHouseNode server = getServer();
193210
String uuid = UUID.randomUUID().toString();
194-
for (ClickHouseFormat format : new ClickHouseFormat[] {
195-
ClickHouseFormat.RowBinaryWithNamesAndTypes,
196-
ClickHouseFormat.TabSeparatedWithNamesAndTypes }) {
197-
try (ClickHouseClient client = getClient()) {
198-
ClickHouseRequest<?> request = client.connect(server)
199-
.format(format)
200-
.compressServerResponse(compressResponse)
201-
.decompressClientRequest(compressRequest);
202-
boolean hasResult = false;
203-
try (ClickHouseResponse resp = request
204-
.query("select :uuid").params(ClickHouseStringValue.of(uuid)).executeAndWait()) {
205-
Assert.assertEquals(resp.firstRecord().getValue(0).asString(), uuid);
206-
hasResult = true;
207-
}
208-
Assert.assertTrue(hasResult, "Should have at least one result");
211+
try (ClickHouseClient client = getClient()) {
212+
ClickHouseRequest<?> request = client.connect(server)
213+
.format(format)
214+
.option(ClickHouseClientOption.RESPONSE_BUFFERING, bufferingMode)
215+
.compressServerResponse(compressResponse)
216+
.decompressClientRequest(compressRequest);
217+
boolean hasResult = false;
218+
try (ClickHouseResponse resp = request
219+
.query("select :uuid").params(ClickHouseStringValue.of(uuid)).executeAndWait()) {
220+
Assert.assertEquals(resp.firstRecord().getValue(0).asString(), uuid);
221+
hasResult = true;
222+
}
223+
Assert.assertTrue(hasResult, "Should have at least one result");
209224

210-
// empty results
211-
try (ClickHouseResponse resp = request
212-
.query("create database if not exists system")
213-
.executeAndWait()) {
214-
ClickHouseResponseSummary summary = resp.getSummary();
215-
Assert.assertEquals(summary.getReadRows(), 0L);
216-
Assert.assertEquals(summary.getWrittenRows(), 0L);
217-
}
225+
// empty results
226+
try (ClickHouseResponse resp = request
227+
.query("create database if not exists system")
228+
.executeAndWait()) {
229+
ClickHouseResponseSummary summary = resp.getSummary();
230+
Assert.assertEquals(summary.getReadRows(), 0L);
231+
Assert.assertEquals(summary.getWrittenRows(), 0L);
232+
}
218233

219-
// let's also check if failures can be captured successfully as well
220-
ClickHouseException exp = null;
221-
try (ClickHouseResponse resp = request
222-
.use(uuid)
223-
.query("select currentUser(), timezone(), version(), getSetting('readonly') readonly FORMAT RowBinaryWithNamesAndTypes")
224-
.executeAndWait()) {
225-
Assert.fail("Query should fail");
226-
} catch (ClickHouseException e) {
227-
exp = e;
228-
}
229-
Assert.assertEquals(exp.getErrorCode(), 81);
234+
// let's also check if failures can be captured successfully as well
235+
ClickHouseException exp = null;
236+
try (ClickHouseResponse resp = request
237+
.use(uuid)
238+
.query("select currentUser(), timezone(), version(), getSetting('readonly') readonly FORMAT RowBinaryWithNamesAndTypes")
239+
.executeAndWait()) {
240+
Assert.fail("Query should fail");
241+
} catch (ClickHouseException e) {
242+
exp = e;
230243
}
244+
Assert.assertEquals(exp.getErrorCode(), 81);
231245
}
232246
}
233247

0 commit comments

Comments
 (0)