You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-blobs-introduction.md
+33-3Lines changed: 33 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ author: tamram
7
7
8
8
ms.service: storage
9
9
ms.topic: overview
10
-
ms.date: 03/15/2022
10
+
ms.date: 08/18/2022
11
11
ms.author: tamram
12
12
ms.subservice: blobs
13
13
---
@@ -54,8 +54,17 @@ To learn how to create a storage account, see [Create a storage account](../comm
54
54
55
55
A container organizes a set of blobs, similar to a directory in a file system. A storage account can include an unlimited number of containers, and a container can store an unlimited number of blobs.
56
56
57
-
> [!NOTE]
58
-
> The container name must be lowercase. For more information about naming containers, see [Naming and Referencing Containers, Blobs, and Metadata](/rest/api/storageservices/Naming-and-Referencing-Containers--Blobs--and-Metadata).
57
+
A container name must be a valid DNS name, as it forms part of the unique URI used to address the container or its blobs. Follow these rules when naming a container:
58
+
59
+
- Container names can be between 3 and 63 characters long.
60
+
- Container names must start with a letter or number, and can contain only lowercase letters, numbers, and the dash (-) character.
61
+
- Two or more consecutive dash characters aren't permitted in container names.
For more information about naming containers, see [Naming and Referencing Containers, Blobs, and Metadata](/rest/api/storageservices/Naming-and-Referencing-Containers--Blobs--and-Metadata).
59
68
60
69
### Blobs
61
70
@@ -67,6 +76,27 @@ Azure Storage supports three types of blobs:
67
76
68
77
For more information about the different types of blobs, see [Understanding Block Blobs, Append Blobs, and Page Blobs](/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs).
- A blob name can contain any combination of characters.
90
+
- A blob name must be at least one character long and cannot be more than 1,024 characters long, for blobs in Azure Storage.
91
+
- Blob names are case-sensitive.
92
+
- Reserved URL characters must be properly escaped.
93
+
- The number of path segments comprising the blob name cannot exceed 254. A path segment is the string between consecutive delimiter characters (*e.g.*, the forward slash '/') that corresponds to the name of a virtual directory.
94
+
95
+
> [!NOTE]
96
+
> Avoid blob names that end with a dot (.), a forward slash (/), or a sequence or combination of the two. No path segments should end with a dot (.).
97
+
98
+
For more information about naming blobs, see [Naming and Referencing Containers, Blobs, and Metadata](/rest/api/storageservices/Naming-and-Referencing-Containers--Blobs--and-Metadata).
99
+
70
100
## Move data to Blob storage
71
101
72
102
A number of solutions exist for migrating existing data to Blob storage:
0 commit comments