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

test: Add test proxy implementation for ExecuteQuery api #2360

Merged
merged 3 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
@@ -1,5 +1,5 @@
/*
* Copyright 2022 Google LLC
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -41,6 +41,7 @@
import com.google.cloud.bigtable.data.v2.models.ReadModifyWriteRow;
import com.google.cloud.bigtable.data.v2.models.RowCell;
import com.google.cloud.bigtable.data.v2.models.RowMutation;
import com.google.cloud.bigtable.data.v2.models.sql.ResultSet;
import com.google.cloud.bigtable.data.v2.stub.EnhancedBigtableStubSettings;
import com.google.cloud.bigtable.testproxy.CloudBigtableV2TestProxyGrpc.CloudBigtableV2TestProxyImplBase;
import com.google.common.base.Preconditions;
Expand All @@ -50,6 +51,7 @@
import io.grpc.ManagedChannelBuilder;
import io.grpc.Status;
import io.grpc.StatusException;
import io.grpc.StatusRuntimeException;
import io.grpc.netty.shaded.io.grpc.netty.GrpcSslContexts;
import io.grpc.netty.shaded.io.grpc.netty.NettyChannelBuilder;
import io.grpc.netty.shaded.io.netty.handler.ssl.SslContext;
Expand All @@ -65,6 +67,7 @@
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ExecutionException;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
Expand Down Expand Up @@ -159,6 +162,8 @@ private static BigtableDataSettings.Builder overrideTimeoutSetting(
settingsBuilder.stubSettings().readModifyWriteRowSettings().retrySettings(), newTimeout);
updateTimeout(
settingsBuilder.stubSettings().sampleRowKeysSettings().retrySettings(), newTimeout);
updateTimeout(
settingsBuilder.stubSettings().executeQuerySettings().retrySettings(), newTimeout);

return settingsBuilder;
}
Expand Down Expand Up @@ -698,6 +703,64 @@ public void readModifyWriteRow(
responseObserver.onCompleted();
}

@Override
public void executeQuery(
ExecuteQueryRequest request, StreamObserver<ExecuteQueryResult> responseObserver) {
CbtClient client;
try {
client = getClient(request.getClientId());
} catch (StatusException e) {
responseObserver.onError(e);
return;
}
try (ResultSet resultSet =
client.dataClient().executeQuery(StatementDeserializer.toStatement(request))) {
responseObserver.onNext(ResultSetSerializer.toExecuteQueryResult(resultSet));
} catch (InterruptedException e) {
responseObserver.onError(e);
return;
} catch (ExecutionException e) {
responseObserver.onError(e);
return;
} catch (ApiException e) {
responseObserver.onNext(
ExecuteQueryResult.newBuilder()
.setStatus(
com.google.rpc.Status.newBuilder()
.setCode(e.getStatusCode().getCode().ordinal())
.setMessage(e.getMessage())
.build())
.build());
responseObserver.onCompleted();
return;
} catch (StatusRuntimeException e) {
responseObserver.onNext(
ExecuteQueryResult.newBuilder()
.setStatus(
com.google.rpc.Status.newBuilder()
.setCode(e.getStatus().getCode().value())
.setMessage(e.getStatus().getDescription())
.build())
.build());
responseObserver.onCompleted();
return;
} catch (RuntimeException e) {
// If client encounters problem, don't return any results.
responseObserver.onNext(
ExecuteQueryResult.newBuilder()
.setStatus(
com.google.rpc.Status.newBuilder()
.setCode(Code.INTERNAL.getNumber())
.setMessage(e.getMessage())
.build())
.build());
responseObserver.onCompleted();
return;
}
responseObserver.onCompleted();
return;
}

@Override
public synchronized void close() {
Iterator<Map.Entry<String, CbtClient>> it = idClientMap.entrySet().iterator();
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,233 @@
/*
* Copyright 2024 Google LLC
*
* Licensed 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
*
* https://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 com.google.cloud.bigtable.testproxy;

import com.google.bigtable.v2.ArrayValue;
import com.google.bigtable.v2.Type;
import com.google.bigtable.v2.Type.Array;
import com.google.bigtable.v2.Type.Bool;
import com.google.bigtable.v2.Type.Bytes;
import com.google.bigtable.v2.Type.Float32;
import com.google.bigtable.v2.Type.Float64;
import com.google.bigtable.v2.Type.Int64;
import com.google.bigtable.v2.Type.Map;
import com.google.bigtable.v2.Type.Struct;
import com.google.bigtable.v2.Type.Timestamp;
import com.google.bigtable.v2.Value;
import com.google.cloud.Date;
import com.google.cloud.bigtable.data.v2.models.sql.ColumnMetadata;
import com.google.cloud.bigtable.data.v2.models.sql.ResultSet;
import com.google.cloud.bigtable.data.v2.models.sql.SqlType;
import com.google.cloud.bigtable.data.v2.models.sql.StructReader;
import com.google.protobuf.ByteString;
import java.util.List;
import java.util.concurrent.ExecutionException;
import org.threeten.bp.Instant;

public class ResultSetSerializer {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are there existing client code for serialization and deserialization? This is a lot of code to maintain and test proxy should just be a thin layer that calls into the client

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is client code (within ResultSet) that handles deserializing protobuf Value messages to the corresponding java types. I agree this feels too 'heavy' for the testproxy but I think with the introduction of types it is somewhat unavoidable.

We want to validate that each client is converting to the relevant types correctly, to do so we need to do some form of roundtripping back to a shared format we can validate against. We reuse Value from the api here. I think no matter how we do it we need to do some conversion from java type back to some protobuf format.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For existing java type -> Value serialization theres some existing code that does a subset of what we're doing here but it's not sufficient to cover what we need and Im not sure either is a great fit for replacing this.

  1. https://github.com/googleapis/java-bigtable/blob/main/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/Value.java#L112 - This serializes some Values to proto but is only used for the types supported by aggregates right now. We would have no use for the additional SQL types there and we would need to have the aggregates apis reject those value types (https://github.com/googleapis/java-bigtable/blob/main/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/RowMutation.java#L231)

  2. https://github.com/googleapis/java-bigtable/blob/main/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/sql/Statement.java#L194

Statement does this for the types of query params we support but it doesn't support all the types we need (no map or struct) and sets the Value.type field which we don't expect here (though I guess it would be ok)

public static ExecuteQueryResult toExecuteQueryResult(ResultSet resultSet)
throws ExecutionException, InterruptedException {
ExecuteQueryResult.Builder resultBuilder = ExecuteQueryResult.newBuilder();
for (ColumnMetadata columnMetadata : resultSet.getMetadata().getColumns()) {
resultBuilder
.getMetadataBuilder()
.addColumnsBuilder()
.setName(columnMetadata.name())
.setType(toProtoType(columnMetadata.type()));
}

while (resultSet.next()) {
SqlRow.Builder rowBuilder = resultBuilder.addRowsBuilder();

for (int i = 0; i < resultSet.getMetadata().getColumns().size(); i++) {
SqlType<?> colType = resultSet.getMetadata().getColumnType(i);
rowBuilder.addValues(toProtoValue(getColumn(resultSet, i, colType), colType));
}
}

return resultBuilder.build();
}

private static Value toProtoValue(Object value, SqlType<?> type) {
if (value == null) {
return Value.getDefaultInstance();
}

Value.Builder valueBuilder = Value.newBuilder();
switch (type.getCode()) {
case BYTES:
valueBuilder.setBytesValue((ByteString) value);
break;
case STRING:
valueBuilder.setStringValue((String) value);
break;
case INT64:
valueBuilder.setIntValue((Long) value);
break;
case FLOAT32:
valueBuilder.setFloatValue((Float) value);
break;
case FLOAT64:
valueBuilder.setFloatValue((Double) value);
break;
case BOOL:
valueBuilder.setBoolValue((Boolean) value);
break;
case TIMESTAMP:
Instant ts = (Instant) value;
valueBuilder.setTimestampValue(
com.google.protobuf.Timestamp.newBuilder()
.setSeconds(ts.getEpochSecond())
.setNanos(ts.getNano())
.build());
break;
case DATE:
Date date = (Date) value;
valueBuilder.setDateValue(
com.google.type.Date.newBuilder()
.setYear(date.getYear())
.setMonth(date.getMonth())
.setDay(date.getDayOfMonth())
.build());
break;
case ARRAY:
SqlType<?> elementType = ((SqlType.Array<?>) type).getElementType();
ArrayValue.Builder arrayValue = ArrayValue.newBuilder();
for (Object item : (List<?>) value) {
arrayValue.addValues(toProtoValue(item, elementType));
}
valueBuilder.setArrayValue(arrayValue.build());
break;
case MAP:
SqlType.Map<?, ?> mapType = (SqlType.Map<?, ?>) type;
SqlType<?> mapKeyType = mapType.getKeyType();
SqlType<?> mapValueType = mapType.getValueType();

ArrayValue.Builder mapArrayValue = ArrayValue.newBuilder();
((java.util.Map<?, ?>) value)
.forEach(
(k, v) ->
mapArrayValue.addValues(
Value.newBuilder()
.setArrayValue(
ArrayValue.newBuilder()
.addValues(toProtoValue(k, mapKeyType))
.addValues(toProtoValue(v, mapValueType))
.build())));
valueBuilder.setArrayValue(mapArrayValue.build());
break;
case STRUCT:
StructReader structValue = (StructReader) value;
SqlType.Struct structType = (SqlType.Struct) type;
ArrayValue.Builder structArrayValue = ArrayValue.newBuilder();
for (int i = 0; i < structType.getFields().size(); ++i) {
SqlType<?> fieldType = structType.getType(i);
structArrayValue.addValues(toProtoValue(getColumn(structValue, i, fieldType), fieldType));
}
valueBuilder.setArrayValue(structArrayValue);
break;
default:
throw new IllegalStateException("Unexpected Type: " + type);
}

return valueBuilder.build();
}

private static Object getColumn(StructReader struct, int fieldIndex, SqlType<?> fieldType) {
if (struct.isNull(fieldIndex)) {
return null;
}

switch (fieldType.getCode()) {
case ARRAY:
return struct.getList(fieldIndex, (SqlType.Array<?>) fieldType);
case BOOL:
return struct.getBoolean(fieldIndex);
case BYTES:
return struct.getBytes(fieldIndex);
case DATE:
return struct.getDate(fieldIndex);
case FLOAT32:
return struct.getFloat(fieldIndex);
case FLOAT64:
return struct.getDouble(fieldIndex);
case INT64:
return struct.getLong(fieldIndex);
case MAP:
return struct.getMap(fieldIndex, (SqlType.Map<?, ?>) fieldType);
case STRING:
return struct.getString(fieldIndex);
case STRUCT:
return struct.getStruct(fieldIndex);
case TIMESTAMP:
return struct.getTimestamp(fieldIndex);
default:
throw new IllegalStateException("Unexpected Type: " + fieldType);
}
}

private static Type toProtoType(SqlType<?> type) {
switch (type.getCode()) {
case BYTES:
return Type.newBuilder().setBytesType(Bytes.getDefaultInstance()).build();
case STRING:
return Type.newBuilder()
.setStringType(com.google.bigtable.v2.Type.String.getDefaultInstance())
.build();
case INT64:
return Type.newBuilder().setInt64Type(Int64.getDefaultInstance()).build();
case FLOAT32:
return Type.newBuilder().setFloat32Type(Float32.getDefaultInstance()).build();
case FLOAT64:
return Type.newBuilder().setFloat64Type(Float64.getDefaultInstance()).build();
case BOOL:
return Type.newBuilder().setBoolType(Bool.getDefaultInstance()).build();
case TIMESTAMP:
return Type.newBuilder().setTimestampType(Timestamp.getDefaultInstance()).build();
case DATE:
return Type.newBuilder()
.setDateType(com.google.bigtable.v2.Type.Date.getDefaultInstance())
.build();
case ARRAY:
SqlType.Array<?> arrayType = (SqlType.Array<?>) type;
return Type.newBuilder()
.setArrayType(
Array.newBuilder().setElementType(toProtoType(arrayType.getElementType())))
.build();
case MAP:
SqlType.Map<?, ?> mapType = (SqlType.Map<?, ?>) type;
return Type.newBuilder()
.setMapType(
Map.newBuilder()
.setKeyType(toProtoType(mapType.getKeyType()))
.setValueType(toProtoType(mapType.getValueType())))
.build();
case STRUCT:
SqlType.Struct structType = (SqlType.Struct) type;
Struct.Builder structBuilder = Struct.newBuilder();
for (SqlType.Struct.Field field : structType.getFields()) {
structBuilder
.addFieldsBuilder()
.setFieldName(field.name())
.setType(toProtoType(field.type()));
}
return Type.newBuilder().setStructType(structBuilder.build()).build();

default:
throw new IllegalStateException("Unexpected Type: " + type);
}
}
}
Loading
Loading