You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
-
Great, as at the moment, I am using an Azure Function, which triggers every minute to check if any operation time has been reached, e.g. Every Friday at 10 am. But if Function App was down at 10 am for any reason, then that operation would not take place. So would I be correct in understanding with ASB this message would remain in the buffer till everything restarts again, even though it would be past the delay duration? In regards to Max attempts, what is the duration between each attempt?user8400863– user84008632022-12-22 14:36:28 +00:00Commented Dec 22, 2022 at 14:36
-
Yes, messages that are not yet marked as consumed, will get processed immaterial of that time passed or not. When you create the queue, you can configure that max attempt, and lock duration. However, the duration between each attempt is not exposed as a configuration parameter though.Anand Sowmithiran– Anand Sowmithiran2022-12-22 14:41:20 +00:00Commented Dec 22, 2022 at 14:41
-
Thanks So when I send a message, I will set the lock duration. Once a function is triggered, can I set another service bus message with a delay within the same function? For example, I might want to check the status of a device. If the status is not what I require, I might need to recheck again after 30 seconds. So I would need to come back to that function.user8400863– user84008632022-12-22 21:29:34 +00:00Commented Dec 22, 2022 at 21:29
Add a comment
|
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-cs