Pub/Sub: synchronous pull "Received data on closed stream"
See original GitHub issueI’m using the solution for Issue https://github.com/GoogleCloudPlatform/google-cloud-java/issues/1661 to pull a batch of messages to process asynchronously.
I cannot use the recommended class Subscriber
due to the fact that I need to process / ack messages asynchronously (producer / consumer scenario … consumer processes, then acks the messages.)
Using GrpcSubscriberStub
I get random batches of the following logging INFO
messages …
2017-11-30 05:43:51,545 [grpc-default-worker-ELG-2-2] INFO i.g.internal.AbstractClientStream - Received data on closed stream
2017-11-30 05:43:51,557 [grpc-default-worker-ELG-2-2] INFO i.g.internal.AbstractClientStream - Received data on closed stream
2017-11-30 05:43:51,573 [grpc-default-worker-ELG-2-2] INFO i.g.internal.AbstractClientStream - Received data on closed stream
2017-11-30 05:43:51,593 [grpc-default-worker-ELG-2-2] INFO i.g.internal.AbstractClientStream - Received data on closed stream```
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
i.grpc.internal.AbstractClientStream - Received data on closed ...
I have a Spring boot application (v2.2.10.RELEASE) that subscribes to multiple topics in pubSub and pulls ...
Read more >Pull subscriptions | Cloud Pub/Sub Documentation
You can use the pull mode to perform asynchronous or synchronous message processing. The pull mode runs in a client library that can...
Read more >Things I wish I knew about Google Cloud Pub/Sub: Part 2
Streaming pull establishes a long-running streaming connection to the Pub/Sub service for receiving messages. This differs from synchronous ...
Read more >pubsub - Go Packages
Package pubsub provides an easy way to publish and receive Google Cloud Pub/Sub ... on how streaming pull behaves compared to the synchronous...
Read more >How to use Google Pub/Sub to build an asynchronous ...
Pull delivery type — The subscriber has to pull the messages from a topic by itself. ... To publish and receive messages from...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
What is the status of this? I’m experiencing the same exact issue described above
@techodepot can you please create new issue with full repro?