Josh Radcliff

Results 33 comments of Josh Radcliff

Apologies for the delayed response. I just sent you an email on the support thread and will continue to follow up there.

I'm closing this since it's not library-specific, but rest assured I'll continue to follow up with you on the support thread with updates.

Hi, Please make sure you are closing the `GoogleAdsServiceClient` when you are done making requests. You can do this with a try-with-resources block as shown in [examples](https://github.com/googleads/google-ads-java/blob/7dda56bed67a9e47391e199940bb8e1568844875/google-ads-examples/src/main/java/com/google/ads/googleads/examples/basicoperations/GetCampaigns.java#L87): ``` try (GoogleAdsServiceClient...

Hi, Just calling `serviceClient.close()` should suffice. Are you sure that you are closing _all_ of the service clients you create, even if you encounter exceptions at some point in the...

Thanks, @PeterLavetsky . I've been trying mightily to get this error to occur in my local tests, but haven't been able to so far. Are you saying that immediately after...

Hi, I'll look into upgrading the library's requirements in an upcoming release. However, if you are personally trying to upgrade within your project, there's a long list of dependencies that...

Hi, The result set for that request is going to contain over 750,000 rows, so it will be extremely large. A few questions I have are: 1. I see that...

Hi, Could you provide an answer to my first question of how long it takes for requests to fail? Thanks

Hi, We're looking into reducing these `UNAVAILABLE` errors, but in the meantime I recommend retrying with an exponential backoff policy when you encounter `UNAVAILABLE`. You can adjust the timeout settings...

Current status is that the addition of the `Retryable` interface was released in google-auth-library 1.5.3, and that needs to be incorporated into grpc-java. That was attempted in https://github.com/grpc/grpc-java/pull/9102, but then...