You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Spring Cloud Stream calls provisionConsumerDestination and provisionProducerDestination on the Spring Cloud GCP PubSubChannelProvisioner, the method ensureTopicExists is called and invokes pubsubAdmin.getTopic. This can cause GCP quota issues if it occurs too often.
Feature Request: As an alternative, Spring Cloud GCP could provide some mechanism to optionally disable topic existence verification in the Spring Cloud GCP Pub/Sub Binder implementation.
The text was updated successfully, but these errors were encountered:
We had the same issue but for us the SA didn't have view access on the topic. To resolve our issue we just set the auto-create-resources to false and it doesn't do the ensureTopicExists anymore for the consumer part.
Would be nice if the same was possibility for option for the producer part.
When Spring Cloud Stream calls
provisionConsumerDestination
andprovisionProducerDestination
on the Spring Cloud GCPPubSubChannelProvisioner
, the methodensureTopicExists
is called and invokespubsubAdmin.getTopic
. This can cause GCP quota issues if it occurs too often.Workaround: Increase
spring.cloud.stream.dynamic-destination-cache-size
. (Add'l documentation)Feature Request: As an alternative, Spring Cloud GCP could provide some mechanism to optionally disable topic existence verification in the Spring Cloud GCP Pub/Sub Binder implementation.
The text was updated successfully, but these errors were encountered: