synchronous pull pubsub node.js
I have a cloud function which is doing a synchronous pull from a pubsub subscription. the request is configured using the returnImmediately flag set to true so that we do not wait for pubsub messages to be present in the queue.
const request = {
subscription: formattedName,
maxMessages: maxMessages,
returnImmediately: true,
};
...
client.pull(request)
...
When there are some messages pending, the request returns very fast ( 100ms ) but when there is no messages in the queue, the call hangs for about 1.5 second before returning the empty array of messages.
as I am in a cloud function, I am not sure asynchronous pull is possible.
how could I get rid of this 1.5 s delay and get the pull(request) returns immediately when there is no pending messages ? it would feel very natural that a synchronous pull() with returnImmediately set to true, returns immediately
google-cloud-platform google-cloud-functions google-cloud-pubsub
add a comment |
I have a cloud function which is doing a synchronous pull from a pubsub subscription. the request is configured using the returnImmediately flag set to true so that we do not wait for pubsub messages to be present in the queue.
const request = {
subscription: formattedName,
maxMessages: maxMessages,
returnImmediately: true,
};
...
client.pull(request)
...
When there are some messages pending, the request returns very fast ( 100ms ) but when there is no messages in the queue, the call hangs for about 1.5 second before returning the empty array of messages.
as I am in a cloud function, I am not sure asynchronous pull is possible.
how could I get rid of this 1.5 s delay and get the pull(request) returns immediately when there is no pending messages ? it would feel very natural that a synchronous pull() with returnImmediately set to true, returns immediately
google-cloud-platform google-cloud-functions google-cloud-pubsub
Synchronous pubusb pull in Cloud Functions is not a good idea for many reasons. Instead, you should write a pubsub trigger to arrange for your code to run on each message. cloud.google.com/functions/docs/calling/pubsub
– Doug Stevenson
Nov 19 '18 at 21:21
add a comment |
I have a cloud function which is doing a synchronous pull from a pubsub subscription. the request is configured using the returnImmediately flag set to true so that we do not wait for pubsub messages to be present in the queue.
const request = {
subscription: formattedName,
maxMessages: maxMessages,
returnImmediately: true,
};
...
client.pull(request)
...
When there are some messages pending, the request returns very fast ( 100ms ) but when there is no messages in the queue, the call hangs for about 1.5 second before returning the empty array of messages.
as I am in a cloud function, I am not sure asynchronous pull is possible.
how could I get rid of this 1.5 s delay and get the pull(request) returns immediately when there is no pending messages ? it would feel very natural that a synchronous pull() with returnImmediately set to true, returns immediately
google-cloud-platform google-cloud-functions google-cloud-pubsub
I have a cloud function which is doing a synchronous pull from a pubsub subscription. the request is configured using the returnImmediately flag set to true so that we do not wait for pubsub messages to be present in the queue.
const request = {
subscription: formattedName,
maxMessages: maxMessages,
returnImmediately: true,
};
...
client.pull(request)
...
When there are some messages pending, the request returns very fast ( 100ms ) but when there is no messages in the queue, the call hangs for about 1.5 second before returning the empty array of messages.
as I am in a cloud function, I am not sure asynchronous pull is possible.
how could I get rid of this 1.5 s delay and get the pull(request) returns immediately when there is no pending messages ? it would feel very natural that a synchronous pull() with returnImmediately set to true, returns immediately
google-cloud-platform google-cloud-functions google-cloud-pubsub
google-cloud-platform google-cloud-functions google-cloud-pubsub
edited Dec 13 '18 at 15:44
Maxim
1,498210
1,498210
asked Nov 19 '18 at 21:12
amg0amg0
61
61
Synchronous pubusb pull in Cloud Functions is not a good idea for many reasons. Instead, you should write a pubsub trigger to arrange for your code to run on each message. cloud.google.com/functions/docs/calling/pubsub
– Doug Stevenson
Nov 19 '18 at 21:21
add a comment |
Synchronous pubusb pull in Cloud Functions is not a good idea for many reasons. Instead, you should write a pubsub trigger to arrange for your code to run on each message. cloud.google.com/functions/docs/calling/pubsub
– Doug Stevenson
Nov 19 '18 at 21:21
Synchronous pubusb pull in Cloud Functions is not a good idea for many reasons. Instead, you should write a pubsub trigger to arrange for your code to run on each message. cloud.google.com/functions/docs/calling/pubsub
– Doug Stevenson
Nov 19 '18 at 21:21
Synchronous pubusb pull in Cloud Functions is not a good idea for many reasons. Instead, you should write a pubsub trigger to arrange for your code to run on each message. cloud.google.com/functions/docs/calling/pubsub
– Doug Stevenson
Nov 19 '18 at 21:21
add a comment |
1 Answer
1
active
oldest
votes
As @DougStevenson pointed, you should write a Cloud Function to be triggered when there is a new message published in your topic, you can follow this tutorial, then you'll have a very fast response without any delay.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53382708%2fsynchronous-pull-pubsub-node-js%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
As @DougStevenson pointed, you should write a Cloud Function to be triggered when there is a new message published in your topic, you can follow this tutorial, then you'll have a very fast response without any delay.
add a comment |
As @DougStevenson pointed, you should write a Cloud Function to be triggered when there is a new message published in your topic, you can follow this tutorial, then you'll have a very fast response without any delay.
add a comment |
As @DougStevenson pointed, you should write a Cloud Function to be triggered when there is a new message published in your topic, you can follow this tutorial, then you'll have a very fast response without any delay.
As @DougStevenson pointed, you should write a Cloud Function to be triggered when there is a new message published in your topic, you can follow this tutorial, then you'll have a very fast response without any delay.
answered Nov 21 '18 at 15:17
Alex RiquelmeAlex Riquelme
57629
57629
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53382708%2fsynchronous-pull-pubsub-node-js%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Synchronous pubusb pull in Cloud Functions is not a good idea for many reasons. Instead, you should write a pubsub trigger to arrange for your code to run on each message. cloud.google.com/functions/docs/calling/pubsub
– Doug Stevenson
Nov 19 '18 at 21:21