Skip to content

Commit

Permalink
Add runner logs
Browse files Browse the repository at this point in the history
  • Loading branch information
sakthivelmanii committed Jan 6, 2025
1 parent 3d65bca commit 8398f1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -924,6 +924,7 @@ ResultSet readInternalWithOptions(
Iterable<String> columns,
final Options readOptions,
ByteString partitionToken) {
System.out.println("readInternalWithOptions");
beforeReadOrQuery();
final ReadRequest.Builder builder =
ReadRequest.newBuilder()
Expand Down Expand Up @@ -991,6 +992,7 @@ CloseableIterator<PartialResultSet> startStream(
getTransactionChannelHint(),
isRouteToLeader());
session.markUsed(clock.instant());
System.out.println("startStream");
stream.setCall(call, /* withBeginTransaction = */ builder.getTransaction().hasBegin());
call.request(prefetchChunks);
return stream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,7 @@ private void startGrpcStreaming() {
try (IScope scope = tracer.withSpan(span)) {
// When start a new stream set the Span as current to make the gRPC Span a child of
// this Span.
System.out.println("startGrpcStreaming");
stream = checkNotNull(startStream(resumeToken, streamMessageListener));
}
}
Expand Down

0 comments on commit 8398f1d

Please sign in to comment.