Assigned
Status Update
Comments
pu...@google.com <pu...@google.com>
ja...@google.com <ja...@google.com> #2
Hello,
Thank you for reaching out to us with your request.
We have duly noted your feedback and will thoroughly validate it. While we cannot provide an estimated time of implementation or guarantee the fulfillment of the issue, please be assured that your input is highly valued. Your feedback enables us to enhance our products and services.
We appreciate your continued trust and support in improving our Google Cloud Platform products. In case you want to report a new issue, please do not hesitate to create a new issue on the
Once again, we sincerely appreciate your valuable feedback; Thank you for your understanding and collaboration.
Description
Problem you have encountered:
Cannot create a Pubsub avro schema using PubSub Emulator.
We are using
gcr.io/google.com/cloudsdktool/cloud-sdk:emulators
image and golang pubsub library "cloud.google.com/go/pubsub"We have no issues creating topics and subscriptions using
client.CreateTopic(ctx, topicID)
But if doing
We are getting
What you expected to happen:
I would expect schema to be crated in the emulator.
Steps to reproduce:
gcr.io/google.com/cloudsdktool/cloud-sdk:emulators
gcloud beta emulators pubsub start --host-port=0.0.0.0:8085
PUBSUB_EMULATOR_HOST
env variable tolocalhost:8085
Other information (workarounds you have tried, documentation consulted, etc):
Tried
schemaClient, err := pubsub.NewSchemaClient(ctx, projectID, option.WithEndpoint("localhost:8085"))
but I am getting a timeout in such case when pubsub client goes gRPC call to execute the schema creationDocs