-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add MessageConsumerImpl class, implement pullAsync, add tests #1043
Merged
Merged
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7693456
Add MessageConsumerImpl class, implement pullAsync, add tests
mziccard 5260293
PullOption.executor option changed to PullOption.executorFactory
mziccard ff4c0a2
Refactor MessageConsumerImpl
mziccard d7ba0aa
Implement consumer restart based on processed callbacks
mziccard 092acfc
Rename RestartPolicy to NextPullPolicy
mziccard 61bdd81
Fix MessageConsumerImpl tests
mziccard 66f273c
Rename TIMER to CONSUMER_EXECUTOR and make it an ExecutorService
mziccard File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
263 changes: 263 additions & 0 deletions
263
gcloud-java-pubsub/src/main/java/com/google/cloud/pubsub/MessageConsumerImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,263 @@ | ||
/* | ||
* Copyright 2016 Google Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.cloud.pubsub; | ||
|
||
import static com.google.cloud.pubsub.spi.v1.SubscriberApi.formatSubscriptionName; | ||
import static com.google.common.base.MoreObjects.firstNonNull; | ||
|
||
import com.google.cloud.GrpcServiceOptions.ExecutorFactory; | ||
import com.google.cloud.pubsub.PubSub.MessageConsumer; | ||
import com.google.cloud.pubsub.PubSub.MessageProcessor; | ||
import com.google.cloud.pubsub.spi.PubSubRpc; | ||
import com.google.cloud.pubsub.spi.PubSubRpc.PullCallback; | ||
import com.google.cloud.pubsub.spi.PubSubRpc.PullFuture; | ||
import com.google.pubsub.v1.PullRequest; | ||
import com.google.pubsub.v1.PullResponse; | ||
|
||
import io.grpc.internal.SharedResourceHolder; | ||
|
||
import java.util.List; | ||
import java.util.concurrent.CancellationException; | ||
import java.util.concurrent.ExecutorService; | ||
import java.util.concurrent.Executors; | ||
import java.util.concurrent.Future; | ||
import java.util.concurrent.ScheduledExecutorService; | ||
import java.util.concurrent.ScheduledThreadPoolExecutor; | ||
import java.util.concurrent.TimeUnit; | ||
import java.util.concurrent.atomic.AtomicInteger; | ||
|
||
/** | ||
* Default implementation for a message consumer. | ||
*/ | ||
final class MessageConsumerImpl implements MessageConsumer { | ||
|
||
private static final int MAX_QUEUED_CALLBACKS = 100; | ||
// shared scheduled executor, used to schedule pulls | ||
private static final SharedResourceHolder.Resource<ScheduledExecutorService> TIMER = | ||
new SharedResourceHolder.Resource<ScheduledExecutorService>() { | ||
@Override | ||
public ScheduledExecutorService create() { | ||
ScheduledThreadPoolExecutor timer = new ScheduledThreadPoolExecutor(1); | ||
timer.setRemoveOnCancelPolicy(true); | ||
return timer; | ||
} | ||
|
||
@Override | ||
public void close(ScheduledExecutorService instance) { | ||
instance.shutdown(); | ||
} | ||
}; | ||
|
||
private final PubSubOptions pubsubOptions; | ||
private final PubSubRpc pubsubRpc; | ||
private final PubSub pubsub; | ||
private final AckDeadlineRenewer deadlineRenewer; | ||
private final String subscription; | ||
private final MessageProcessor messageProcessor; | ||
private final ScheduledExecutorService timer; | ||
private final ExecutorFactory<ExecutorService> executorFactory; | ||
private final ExecutorService executor; | ||
private final AtomicInteger queuedCallbacks; | ||
private final int maxQueuedCallbacks; | ||
private final Object futureLock = new Object(); | ||
private final Runnable consumerRunnable; | ||
private boolean closed; | ||
private Future<?> scheduledFuture; | ||
private PullFuture pullerFuture; | ||
|
||
/** | ||
* Default executor factory for the message processor executor. By default a single-threaded | ||
* executor is used. | ||
*/ | ||
static class DefaultExecutorFactory implements ExecutorFactory<ExecutorService> { | ||
|
||
private final ExecutorService executor = Executors.newSingleThreadExecutor(); | ||
|
||
@Override | ||
public ExecutorService get() { | ||
return executor; | ||
} | ||
|
||
@Override | ||
public void release(ExecutorService executor) { | ||
executor.shutdownNow(); | ||
} | ||
} | ||
|
||
class ConsumerRunnable implements Runnable { | ||
|
||
@Override | ||
public void run() { | ||
if (closed) { | ||
return; | ||
} | ||
pullerFuture = pubsubRpc.pull(createPullRequest()); | ||
pullerFuture.addCallback(new PullCallback() { | ||
@Override | ||
public void success(PullResponse response) { | ||
List<com.google.pubsub.v1.ReceivedMessage> messages = response.getReceivedMessagesList(); | ||
queuedCallbacks.addAndGet(messages.size()); | ||
for (com.google.pubsub.v1.ReceivedMessage message : messages) { | ||
deadlineRenewer.add(subscription, message.getAckId()); | ||
ReceivedMessage receivedMessage = ReceivedMessage.fromPb(pubsub, subscription, message); | ||
executor.execute(ackingRunnable(receivedMessage)); | ||
} | ||
nextPull(); | ||
} | ||
|
||
@Override | ||
public void failure(Throwable error) { | ||
if (!(error instanceof CancellationException)) { | ||
nextPull(); | ||
} | ||
} | ||
}); | ||
} | ||
} | ||
|
||
private MessageConsumerImpl(Builder builder) { | ||
this.pubsubOptions = builder.pubsubOptions; | ||
this.subscription = builder.subscription; | ||
this.messageProcessor = builder.messageProcessor; | ||
this.pubsubRpc = pubsubOptions.rpc(); | ||
this.pubsub = pubsubOptions.service(); | ||
this.deadlineRenewer = builder.deadlineRenewer; | ||
this.queuedCallbacks = new AtomicInteger(); | ||
this.timer = SharedResourceHolder.get(TIMER); | ||
this.executorFactory = firstNonNull(builder.executorFactory, new DefaultExecutorFactory()); | ||
This comment was marked as spam.
Sorry, something went wrong. |
||
this.executor = executorFactory.get(); | ||
this.maxQueuedCallbacks = firstNonNull(builder.maxQueuedCallbacks, MAX_QUEUED_CALLBACKS); | ||
this.consumerRunnable = new ConsumerRunnable(); | ||
nextPull(); | ||
} | ||
|
||
private Runnable ackingRunnable(final ReceivedMessage receivedMessage) { | ||
return new Runnable() { | ||
@Override | ||
public void run() { | ||
try { | ||
messageProcessor.process(receivedMessage); | ||
pubsub.ackAsync(receivedMessage.subscription(), receivedMessage.ackId()); | ||
} catch (Exception ex) { | ||
pubsub.nackAsync(receivedMessage.subscription(), receivedMessage.ackId()); | ||
} finally { | ||
deadlineRenewer.remove(receivedMessage.subscription(), receivedMessage.ackId()); | ||
queuedCallbacks.decrementAndGet(); | ||
// We can now pull more messages. We do not pull immediately to possibly wait for other | ||
// callbacks to end | ||
scheduleNextPull(500, TimeUnit.MILLISECONDS); | ||
This comment was marked as spam.
Sorry, something went wrong. |
||
} | ||
} | ||
}; | ||
} | ||
|
||
private PullRequest createPullRequest() { | ||
This comment was marked as spam.
Sorry, something went wrong. |
||
return PullRequest.newBuilder() | ||
.setSubscription(formatSubscriptionName(pubsubOptions.projectId(), subscription)) | ||
.setMaxMessages(maxQueuedCallbacks - queuedCallbacks.get()) | ||
.setReturnImmediately(false) | ||
.build(); | ||
} | ||
|
||
private void scheduleNextPull(long delay, TimeUnit timeUnit) { | ||
synchronized (futureLock) { | ||
if (closed || scheduledFuture != null) { | ||
return; | ||
} | ||
scheduledFuture = timer.schedule(consumerRunnable, delay, timeUnit); | ||
} | ||
} | ||
|
||
private void nextPull() { | ||
synchronized (futureLock) { | ||
if (closed || queuedCallbacks.get() == maxQueuedCallbacks) { | ||
scheduledFuture = null; | ||
return; | ||
} | ||
scheduledFuture = timer.submit(consumerRunnable); | ||
} | ||
} | ||
|
||
@Override | ||
public void close() { | ||
synchronized (futureLock) { | ||
if (closed) { | ||
return; | ||
} | ||
closed = true; | ||
if (scheduledFuture != null) { | ||
scheduledFuture.cancel(true); | ||
} | ||
if (pullerFuture != null) { | ||
pullerFuture.cancel(true); | ||
} | ||
} | ||
SharedResourceHolder.release(TIMER, timer); | ||
executorFactory.release(executor); | ||
} | ||
|
||
static final class Builder { | ||
private final PubSubOptions pubsubOptions; | ||
private final String subscription; | ||
private final AckDeadlineRenewer deadlineRenewer; | ||
private final MessageProcessor messageProcessor; | ||
private Integer maxQueuedCallbacks; | ||
private ExecutorFactory<ExecutorService> executorFactory; | ||
|
||
Builder(PubSubOptions pubsubOptions, String subscription, AckDeadlineRenewer deadlineRenewer, | ||
MessageProcessor messageProcessor) { | ||
this.pubsubOptions = pubsubOptions; | ||
this.subscription = subscription; | ||
this.deadlineRenewer = deadlineRenewer; | ||
this.messageProcessor = messageProcessor; | ||
} | ||
|
||
/** | ||
* Sets the maximum number of callbacks either being executed or waiting for execution. | ||
*/ | ||
Builder maxQueuedCallbacks(Integer maxQueuedCallbacks) { | ||
this.maxQueuedCallbacks = maxQueuedCallbacks; | ||
return this; | ||
} | ||
|
||
/** | ||
* Sets the executor factory, used to manage the executor that will run message processor | ||
* callbacks message consumer. | ||
*/ | ||
Builder executorFactory(ExecutorFactory<ExecutorService> executorFactory) { | ||
this.executorFactory = executorFactory; | ||
return this; | ||
} | ||
|
||
/** | ||
* Creates a {@code MessageConsumerImpl} object. | ||
*/ | ||
MessageConsumerImpl build() { | ||
return new MessageConsumerImpl(this); | ||
} | ||
} | ||
|
||
/** | ||
* Returns a builder for {@code MessageConsumerImpl} objects given the service options, the | ||
* subscription from which messages must be pulled, the acknowledge deadline renewer and a message | ||
* processor used to process messages. | ||
*/ | ||
static Builder builder(PubSubOptions pubsubOptions, String subscription, | ||
AckDeadlineRenewer deadlineRenewer, MessageProcessor messageProcessor) { | ||
return new Builder(pubsubOptions, subscription, deadlineRenewer, messageProcessor); | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as spam.
Sorry, something went wrong.