Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(pubsub): respect subscription message ordering field in scheduler #3886

Merged
merged 7 commits into from Apr 5, 2021

Conversation

hongalex
Copy link
Member

@hongalex hongalex commented Apr 3, 2021

Fixes #3884

@hongalex hongalex requested review from a team as code owners April 3, 2021 01:05
@product-auto-label product-auto-label bot added the api: pubsub Issues related to the Pub/Sub API. label Apr 3, 2021
@google-cla google-cla bot added the cla: yes This human has signed the Contributor License Agreement. label Apr 3, 2021
Copy link
Member

@codyoss codyoss left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just one small thing, LGTM

pubsub/subscription.go Outdated Show resolved Hide resolved
@indera-shsp
Copy link

@hongalex
Thank you for this fix.

if err != nil {
return fmt.Errorf("sub.Config err: %v", err)
}
s.enableOrdering = cfg.EnableMessageOrdering

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This page does not explicitly call out why we're setting EnableMessageOrdering, aside from the code sample, so I'm inclined to leave this out.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

My comment was more like - look there is an example where this property is mentioned.

This was a good read too:
https://medium.com/google-cloud/google-cloud-pub-sub-ordered-delivery-1e4181f60bc8

These two properties allow publishers and subscribers to decide independently if messages are ordered. If the publisher does not specify ordering keys with messages or the subscriber does not enable ordered delivery, then message delivery is not in order and behaves just like Cloud Pub/Sub without the ordered delivery feature. Not all subscriptions on a topic need to have the same setting for enable_message_ordering. Therefore, different use cases that receive the same messages can determine if they need ordered delivery without impacting each other.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: pubsub Issues related to the Pub/Sub API. cla: yes This human has signed the Contributor License Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

pubsub: messages with ordering keys are processed in order even in subscriptions without ordering enabled
3 participants