File tree Expand file tree Collapse file tree 2 files changed +18
-6
lines changed
google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1 Expand file tree Collapse file tree 2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -56,13 +56,13 @@ implementation 'com.google.cloud:google-cloud-bigquerystorage'
56
56
If you are using Gradle without BOM, add this to your dependencies:
57
57
58
58
``` Groovy
59
- implementation 'com.google.cloud:google-cloud-bigquerystorage:2.31.0 '
59
+ implementation 'com.google.cloud:google-cloud-bigquerystorage:2.31.1 '
60
60
```
61
61
62
62
If you are using SBT, add this to your dependencies:
63
63
64
64
``` Scala
65
- libraryDependencies += " com.google.cloud" % " google-cloud-bigquerystorage" % " 2.31.0 "
65
+ libraryDependencies += " com.google.cloud" % " google-cloud-bigquerystorage" % " 2.31.1 "
66
66
```
67
67
68
68
## Authentication
Original file line number Diff line number Diff line change @@ -581,7 +581,17 @@ private void appendLoop() {
581
581
}
582
582
}
583
583
584
- log .fine ("Cleanup starts. Stream: " + streamName + " id: " + writerId );
584
+ log .info (
585
+ "Cleanup starts. Stream: "
586
+ + streamName
587
+ + " id: "
588
+ + writerId
589
+ + " userClose: "
590
+ + userClosed
591
+ + " final exception: "
592
+ + (this .connectionFinalStatus == null
593
+ ? "null"
594
+ : this .connectionFinalStatus .toString ()));
585
595
// At this point, the waiting queue is drained, so no more requests.
586
596
// We can close the stream connection and handle the remaining inflight requests.
587
597
if (streamConnection != null ) {
@@ -590,13 +600,13 @@ private void appendLoop() {
590
600
}
591
601
592
602
// At this point, there cannot be more callback. It is safe to clean up all inflight requests.
593
- log .fine (
603
+ log .info (
594
604
"Stream connection is fully closed. Cleaning up inflight requests. Stream: "
595
605
+ streamName
596
606
+ " id: "
597
607
+ writerId );
598
608
cleanupInflightRequests ();
599
- log .fine ("Append thread is done. Stream: " + streamName + " id: " + writerId );
609
+ log .info ("Append thread is done. Stream: " + streamName + " id: " + writerId );
600
610
}
601
611
602
612
/*
@@ -809,7 +819,9 @@ private void doneCallback(Throwable finalStatus) {
809
819
+ (maxRetryDuration .toMillis ()
810
820
- (System .currentTimeMillis () - connectionRetryStartTime ))
811
821
+ ", for stream "
812
- + streamName );
822
+ + streamName
823
+ + " id:"
824
+ + writerId );
813
825
} else {
814
826
Exceptions .StorageException storageException = Exceptions .toStorageException (finalStatus );
815
827
this .connectionFinalStatus = storageException != null ? storageException : finalStatus ;
You can’t perform that action at this time.
0 commit comments