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

BREAKING pubsub: fix and simplify deadline extension #2604

Merged
merged 2 commits into from
Nov 13, 2017
Merged

BREAKING pubsub: fix and simplify deadline extension #2604

merged 2 commits into from
Nov 13, 2017

Conversation

pongad
Copy link
Contributor

@pongad pongad commented Nov 9, 2017

This commit simplifies deadline extension
and fixes at least one known issue: modack storm.

In the previous implementation, setting padding time too high
can cause us to schedule deadline extension into the past.
We have observed cases where 4 modacks were sent per message
immediately upon receipt.
With this change, such problems should be impossible.

The breaking change: this commit removes the user's ability
to set padding. Instead, we set it at 5 seconds, the same
with current Go implementation.
As described earlier, padding is subtle and
difficult to use/implement correctly.
We can add it back later,
so plumbing code was not entirely removed.
Either way, this should not block stabilization.

Other major changes:

  • Deadline adjustment is removed to simplify deadline extension.
    This can also be added back later.
    Currently the stream deadline is set to 60s.
  • Deadline extension runs on schedule and modacks all pending
    messages regardless of when they expire.
    This is clearly suboptimal, but does not greatly matter right now,
    since it runs only once a minute.

This commit also introduces MessageDispatcherTest.
It should be simpler and flakes less than SubscriberTest,
since we can tightly control the timing.
SubscriberTest should eventually go away,
replaced by both MessageDispatcherTest and integration tests.

This commit simplifies deadline extension
and fixes at least one known issue: modack storm.

In the previous implementation, setting padding time too high
can cause us to schedule deadline extension into the past.
We have observed cases where 4 modacks were sent per message
immediately upon receipt.
With this change, such problems should be impossible.

The breaking change: this commit removes the user's ability
to set padding. Instead, we set it at 5 seconds, the same
with current Go implementation.
As described earlier, padding is subtle and
difficult to use/implement correctly.
We can add it back later,
so plumbing code was not entirely removed.
Either way, this should not block stabilization.

Other major changes:
- Deadline adjustment is removed to simplify deadline extension.
This can also be added back later.
Currently the stream deadline is set to 60s.
- Deadline extension runs on schedule and modacks all pending
messages regardless of when they expire.
This is clearly suboptimal, but does not greatly matter right now,
since it runs only once a minute.

This commit also introduces MessageDispatcherTest.
It should be simpler and flakes less than SubscriberTest,
since we can tightly control the timing.
SubscriberTest should eventually go away,
replaced by both MessageDispatcherTest and integration tests.
@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Nov 9, 2017
@pongad
Copy link
Contributor Author

pongad commented Nov 9, 2017

SubscriberTest is flakey, but looks like MessageDispatcherTest isn't :)

@pongad
Copy link
Contributor Author

pongad commented Nov 9, 2017

cc @mdietz94

List<PendingModifyAckDeadline> ackDeadlineExtensions) {
List<PendingModifyAckDeadline> modifyAckDeadlinesToSend =
Lists.newArrayList(ackDeadlineExtensions);
@VisibleForTesting

This comment was marked as spam.

This comment was marked as spam.

@mdietz94
Copy link

mdietz94 commented Nov 9, 2017

Looks good as an emergency fix to prevent mod ack storm

@pongad pongad merged commit 9454a02 into googleapis:master Nov 13, 2017
@pongad pongad deleted the pubsub-modack branch November 13, 2017 03:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla: yes This human has signed the Contributor License Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants