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

feat: expose new API with ReadRowsRequest in EnhancedBigtableStub #276

Merged
merged 2 commits into from May 11, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -220,7 +220,7 @@ public <RowT> UnaryCallable<Query, RowT> createReadRowCallable(RowAdapter<RowT>
* dispatch the RPC.
* <li>Upon receiving the response stream, it will merge the {@link
* com.google.bigtable.v2.ReadRowsResponse.CellChunk}s in logical rows. The actual row
* implementation can be configured in by the {@code rowAdapter} parameter.
* implementation can be configured by the {@code rowAdapter} parameter.
* <li>Retry/resume on failure.
* <li>Filter out marker rows.
* </ul>
Expand All @@ -230,6 +230,66 @@ public <RowT> UnaryCallable<Query, RowT> createReadRowCallable(RowAdapter<RowT>
private <RowT> ServerStreamingCallable<Query, RowT> createReadRowsBaseCallable(
ServerStreamingCallSettings<Query, Row> readRowsSettings, RowAdapter<RowT> rowAdapter) {

return new ReadRowsUserCallable<>(
createReadRowsRawCallable(readRowsSettings, rowAdapter), requestContext);
}

/**
* Creates a callable chain to handle ReadRows RPCs. The chain will:
*
* <ul>
* <li>Dispatch the RPC with {@link ReadRowsRequest}.
* <li>Upon receiving the response stream, it will merge the {@link
* com.google.bigtable.v2.ReadRowsResponse.CellChunk}s in logical rows. The actual row
* implementation can be configured by the {@code rowAdapter} parameter.
* <li>Retry/resume on failure.
* <li>Filter out marker rows.
* </ul>
*
* <p>NOTE: the caller is responsible for adding tracing & metrics.
*/
public <RowT> ServerStreamingCallable<ReadRowsRequest, RowT> createReadRowsRawCallable(
Copy link
Contributor

Choose a reason for hiding this comment

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

Please mark this as BetaApi and add a disclaimer that this method might be removed in the future

RowAdapter<RowT> adapter) {
return createReadRowsBaseCallable(adapter)
.withDefaultCallContext(clientContext.getDefaultCallContext());
}

/**
* Creates a callable chain to handle ReadRows RPCs. The chain will:
*
* <ul>
* <li>Dispatch the RPC with {@link ReadRowsRequest}.
* <li>Upon receiving the response stream, it will merge the {@link
* com.google.bigtable.v2.ReadRowsResponse.CellChunk}s in logical rows. The actual row
* implementation can be configured by the {@code rowAdapter} parameter.
* <li>Retry/resume on failure.
* <li>Filter out marker rows.
* </ul>
*
* <p>NOTE: the caller is responsible for adding tracing & metrics.
*/
public <RowT> ServerStreamingCallable<ReadRowsRequest, RowT> createReadRowsBaseCallable(
Copy link
Contributor

Choose a reason for hiding this comment

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

This should not be public

RowAdapter<RowT> adapter) {
return createReadRowsRawCallable(settings.readRowsSettings(), adapter);
}

/**
* Creates a callable chain to handle ReadRows RPCs. The chain will:
*
* <ul>
* <li>Dispatch the RPC with {@link ReadRowsRequest}.
* <li>Upon receiving the response stream, it will merge the {@link
* com.google.bigtable.v2.ReadRowsResponse.CellChunk}s in logical rows. The actual row
* implementation can be configured by the {@code rowAdapter} parameter.
* <li>Retry/resume on failure.
* <li>Filter out marker rows.
* </ul>
*
* <p>NOTE: the caller is responsible for adding tracing & metrics.
*/
private <ReqT, RowT> ServerStreamingCallable<ReadRowsRequest, RowT> createReadRowsRawCallable(
ServerStreamingCallSettings<ReqT, Row> readRowsSettings, RowAdapter<RowT> rowAdapter) {

ServerStreamingCallable<ReadRowsRequest, ReadRowsResponse> base =
GrpcRawCallableFactory.createServerStreamingCallable(
GrpcCallSettings.<ReadRowsRequest, ReadRowsResponse>newBuilder()
Expand Down Expand Up @@ -268,10 +328,7 @@ public Map<String, String> extract(ReadRowsRequest readRowsRequest) {
ServerStreamingCallable<ReadRowsRequest, RowT> retrying2 =
Callables.retrying(retrying1, innerSettings, clientContext);

FilterMarkerRowsCallable<RowT> filtering =
new FilterMarkerRowsCallable<>(retrying2, rowAdapter);

return new ReadRowsUserCallable<>(filtering, requestContext);
return new FilterMarkerRowsCallable<>(retrying2, rowAdapter);
}

/**
Expand Down
@@ -0,0 +1,159 @@
/*
* Copyright 2020 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.data.v2.stub;

import static com.google.common.truth.Truth.assertThat;

import com.google.api.gax.core.NoCredentialsProvider;
import com.google.api.gax.grpc.testing.InProcessServer;
import com.google.api.gax.grpc.testing.LocalChannelProvider;
import com.google.api.gax.rpc.ApiCallContext;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.ServerStreamingCallable;
import com.google.bigtable.v2.BigtableGrpc;
import com.google.bigtable.v2.ReadRowsRequest;
import com.google.bigtable.v2.ReadRowsResponse;
import com.google.bigtable.v2.RowSet;
import com.google.cloud.bigtable.admin.v2.internal.NameUtil;
import com.google.cloud.bigtable.data.v2.models.DefaultRowAdapter;
import com.google.cloud.bigtable.data.v2.models.Row;
import com.google.common.collect.Queues;
import com.google.protobuf.ByteString;
import com.google.protobuf.BytesValue;
import com.google.protobuf.StringValue;
import io.grpc.stub.StreamObserver;
import java.io.IOException;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.TimeUnit;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

@RunWith(JUnit4.class)
public class EnhancedBigtableStubTest {

private static final String PROJECT_ID = "fake-project";
private static final String INSTANCE_ID = "fake-instance";
private static final String TABLE_NAME =
NameUtil.formatTableName(PROJECT_ID, INSTANCE_ID, "fake-table");
private static final String FAKE_HOST_NAME = "fake-stub-host:123";

private InProcessServer<?> server;
private FakeDataService fakeDataService;
private EnhancedBigtableStub enhancedBigtableStub;
private EnhancedBigtableStubSettings enhancedBigtableStubSettings;

@Before
public void setUp() throws IOException, IllegalAccessException, InstantiationException {
fakeDataService = new FakeDataService();
server = new InProcessServer<>(fakeDataService, FAKE_HOST_NAME);
server.start();

enhancedBigtableStubSettings =
EnhancedBigtableStubSettings.newBuilder()
.setProjectId(PROJECT_ID)
.setInstanceId(INSTANCE_ID)
.setCredentialsProvider(NoCredentialsProvider.create())
.setEndpoint(FAKE_HOST_NAME)
.setTransportChannelProvider(LocalChannelProvider.create(FAKE_HOST_NAME))
.build();

enhancedBigtableStub = EnhancedBigtableStub.create(enhancedBigtableStubSettings);
}

@After
public void tearDown() {
server.stop();
}

@Test
public void testCreateReadRowsBaseCallable() throws InterruptedException, IOException {
ServerStreamingCallable<ReadRowsRequest, Row> callable =
enhancedBigtableStub.createReadRowsBaseCallable(new DefaultRowAdapter());

ApiCallContext context =
ClientContext.create(enhancedBigtableStubSettings).getDefaultCallContext();

ReadRowsRequest expectedRequest =
ReadRowsRequest.newBuilder()
.setTableName(TABLE_NAME)
.setAppProfileId("app-profile-1")
.setRows(RowSet.newBuilder().addRowKeys(ByteString.copyFromUtf8("test-row-key")))
.build();
callable.call(expectedRequest, context).iterator().next();
assertThat(fakeDataService.popLastRequest()).isEqualTo(expectedRequest);

ReadRowsRequest expectedRequest2 =
ReadRowsRequest.newBuilder()
.setTableName(TABLE_NAME)
.setAppProfileId("app-profile-2")
.build();
callable.call(expectedRequest2, context).iterator().next();
assertThat(fakeDataService.popLastRequest()).isEqualTo(expectedRequest2);
}

@Test
public void testCreateReadRowsRawCallable() throws InterruptedException {
ServerStreamingCallable<ReadRowsRequest, Row> callable =
enhancedBigtableStub.createReadRowsRawCallable(new DefaultRowAdapter());

ReadRowsRequest expectedRequest =
ReadRowsRequest.newBuilder()
.setTableName(TABLE_NAME)
.setAppProfileId("app-profile-1")
.setRows(RowSet.newBuilder().addRowKeys(ByteString.copyFromUtf8("test-row-key")))
.build();
callable.call(expectedRequest).iterator().next();
assertThat(fakeDataService.popLastRequest()).isEqualTo(expectedRequest);

ReadRowsRequest expectedRequest2 =
ReadRowsRequest.newBuilder()
.setTableName(TABLE_NAME)
.setAppProfileId("app-profile-2")
.build();
callable.call(expectedRequest2).iterator().next();
assertThat(fakeDataService.popLastRequest()).isEqualTo(expectedRequest2);
}

private static class FakeDataService extends BigtableGrpc.BigtableImplBase {
final BlockingQueue<Object> requests = Queues.newLinkedBlockingDeque();

@SuppressWarnings("unchecked")
<T> T popLastRequest() throws InterruptedException {
return (T) requests.poll(1, TimeUnit.SECONDS);
}

@Override
public void readRows(
ReadRowsRequest request, StreamObserver<ReadRowsResponse> responseObserver) {
requests.add(request);
// Dummy row for stream
responseObserver.onNext(
ReadRowsResponse.newBuilder()
.addChunks(
ReadRowsResponse.CellChunk.newBuilder()
.setCommitRow(true)
.setRowKey(ByteString.copyFromUtf8("a"))
.setFamilyName(StringValue.getDefaultInstance())
.setQualifier(BytesValue.getDefaultInstance())
.setValueSize(0))
.build());
responseObserver.onCompleted();
}
}
}