Skip to content

Commit e1bb011

Browse files
authored
Merge pull request #78931 from mhopkins-msft/queues
Updated message TTL parameters
2 parents 5c48635 + 3682e4d commit e1bb011

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

articles/storage/queues/storage-queues-introduction.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ author: mhopkins-msft
66

77
ms.service: storage
88
ms.topic: overview
9-
ms.date: 02/06/2019
9+
ms.date: 06/07/2019
1010
ms.author: mhopkins
1111
ms.reviewer: cbrooks
1212
ms.subservice: queues
1313
---
14+
1415
# What are Azure Queues?
1516

16-
Azure Queue storage is a service for storing large numbers of messages that can be accessed from anywhere in the world via authenticated calls using HTTP or HTTPS. A single queue message can be up to 64 KB in size, and a queue can contain millions of messages, up to the total capacity limit of a storage account.
17+
Azure Queue storage is a service for storing large numbers of messages. You access messages from anywhere in the world via authenticated calls using HTTP or HTTPS. A queue message can be up to 64 KB in size. A queue may contain millions of messages, up to the total capacity limit of a storage account.
1718

1819
## Common uses
1920

@@ -28,18 +29,19 @@ The Queue service contains the following components:
2829

2930
![Queue Concepts](./media/storage-queues-introduction/queue1.png)
3031

31-
* **URL format:** Queues are addressable using the following URL format:
32-
https://`<storage account>`.queue.core.windows.net/`<queue>`
32+
* **URL format:** Queues are addressable using the following URL format:
33+
34+
`https://<storage account>.queue.core.windows.net/<queue>`
3335

3436
The following URL addresses a queue in the diagram:
3537

3638
`https://myaccount.queue.core.windows.net/images-to-download`
3739

3840
* **Storage account:** All access to Azure Storage is done through a storage account. See [Azure Storage Scalability and Performance Targets](../common/storage-scalability-targets.md?toc=%2fazure%2fstorage%2fqueues%2ftoc.json) for details about storage account capacity.
3941

40-
* **Queue:** A queue contains a set of messages. All messages must be in a queue. Note that the queue name must be all lowercase. For information on naming queues, see [Naming Queues and Metadata](https://msdn.microsoft.com/library/azure/dd179349.aspx).
42+
* **Queue:** A queue contains a set of messages. The queue name **must** be all lowercase. For information on naming queues, see [Naming Queues and Metadata](https://msdn.microsoft.com/library/azure/dd179349.aspx).
4143

42-
* **Message:** A message, in any format, of up to 64 KB. The maximum time that a message can remain in the queue is seven days.
44+
* **Message:** A message, in any format, of up to 64 KB. Before version 2017-07-29, the maximum time-to-live allowed is seven days. For version 2017-07-29 or later, the maximum time-to-live can be any positive number, or -1 indicating that the message doesn't expire. If this parameter is omitted, the default time-to-live is seven days.
4345

4446
## Next steps
4547

0 commit comments

Comments
 (0)