TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Interviews
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
Java
Learn iOS Programming
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
What are the differences between the Azure Storage Queue and the Azure Service Bus Queue?
By
Sagar Lad
in
.NET
on
Jul 11
2021
0
1.4k
1
Post Your Answer
Submit
Aug, 2021
2
Foundational capabilities
Comparison Criteria
Storage queues
Service Bus queues
Ordering guarantee
No
For more information, see the first note in the
Additional Information
section.
Yes - First-In-First-Out (FIFO)
(by using
message sessions
)
Delivery guarantee
At-Least-Once
At-Least-Once
(using PeekLock receive mode. It’s the default)
At-Most-Once
(using ReceiveAndDelete receive mode)
Learn more about various
Receive modes
Atomic operation support
No
Yes
Receive behavior
Non-blocking
(completes immediately if no new message is found)
Blocking with or without a timeout
(offers long polling, or the
“Comet technique”
)
Non-blocking
(using .NET managed API only)
Push-style API
No
Yes
Our .NET, Java, JavaScript, and Go SDKs provide push-style API.
Receive mode
Peek & Lease
Peek & Lock
Receive & Delete
Exclusive access mode
Lease-based
Lock-based
Lease/Lock duration
30 seconds (default)
7 days (maximum)
(You can renew or release a message lease using the
UpdateMessage
API.)
30 seconds (default)
You can renew the message lock for the same lock duration each time manually or use the automatic lock renewal feature where the client manages lock renewal for you.
Lease/Lock precision
Message level
Each message can have a different timeout value, which you can then update as needed while processing the message, by using the
UpdateMessage
API.
Queue level
(each queue has a lock precision applied to all of its messages, but the lock can be renewed as described in the previous row)
Batched receive
Yes
(explicitly specifying message count when retrieving messages, up to a maximum of 32 messages)
Yes
(implicitly enabling a pre-fetch property or explicitly by using transactions)
Batched send
No
Yes
(by using transactions or client-side batching)
0
Most Popular Job Functions
Developer (2375)
Programmer (1288)
Sr. Developer (827)
Sr. Programmer (449)
Fresher (398)
Tech Lead (377)
DBA (244)
Team Lead (187)
Project Lead (83)
Architect (28)
View All
MOST LIKED QUESTIONS
Why do you want to leave your current company?
What are the advantages of using REST in Web API?
What is ASP.NET Core?
How to iterate through ArrayList in jQuery?
What is the difference between TempData keep() and peek() function?
A class provides a default constructor for me. I write a constructor that takes a string as...
Can multiple catch blocks be executed in a C# program?
what is Sealed class
What were your responsibilities in your previous job ?
What Operating Systems Node.js Supports