Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion query-service-impl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
implementation("org.slf4j:slf4j-api:1.7.32")
implementation("commons-codec:commons-codec:1.15")
implementation("org.hypertrace.core.serviceframework:platform-metrics:0.1.33")
implementation("com.google.protobuf:protobuf-java-util:3.15.6")
implementation("com.google.protobuf:protobuf-java-util:3.19.2")

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Please keep protoc versions aligned if updating:

artifact = "com.google.protobuf:protoc:3.15.6"

implementation("com.google.guava:guava:30.1.1-jre")
implementation("io.reactivex.rxjava3:rxjava:3.0.11")
implementation("com.squareup.okhttp3:okhttp:4.9.1")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,10 +416,11 @@ public Observable<Row> handleRequest(
if (requestTimeMs > slowQueryThreshold) {
try {
LOG.warn(
"Query Execution time: {} ms, sqlQuery: {}, queryRequest: {}",
"Query Execution time: {} ms, sqlQuery: {}, queryRequest: {}, executionStats: {}",
requestTimeMs,
pql.getKey(),
protoJsonPrinter.print(request));
protoJsonPrinter.print(request),
resultSetGroup.getExecutionStats());
} catch (InvalidProtocolBufferException ignore) {
}
}
Expand Down