Skip to content

Commit 4280250

Browse files
committed
adding CA
1 parent b576375 commit 4280250

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

articles/storage/files/files-smb-protocol.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ SMB file shares are used for many applications including end-user file shares an
3030

3131
Azure Files supports the major features of SMB and Azure needed for production deployments of SMB file shares:
3232

33+
- SMB Continuous Availability (CA)
3334
- AD domain join and discretionary access control lists (DACLs)
3435
- Integrated serverless backup with Azure Backup
3536
- Network isolation with Azure private endpoints
@@ -55,6 +56,40 @@ You can disable encryption in transit for an Azure file share. When encryption i
5556

5657
Azure Files offers multiple settings that affect the behavior, performance, and security of the SMB protocol. These are configured for all Azure file shares within a storage account.
5758

59+
### SMB Continuous Availability
60+
61+
Azure Files supports SMB Continuous Availability (CA) to help applications remain available during transient infrastructure events. Continuous availability is a capability of the SMB protocol that allows open file handles to survive brief interruptions, such as server failovers or short network disruptions. All Azure Files SMB shares are continuously available by default. This setting can't be disabled.
62+
63+
**What continuous availability provides:**
64+
65+
- Persistent file handles that survive transient failures
66+
- Transparent recovery of I/O operations after failover
67+
- Data consistency during infrastructure transitions
68+
- Reduced risk of application disruption
69+
70+
If a brief connectivity interruption occurs, SMB clients automatically retry operations and reestablish access to open files without requiring the application to reopen them. This behavior is particularly important for workloads that maintain long-running file sessions.
71+
72+
**How continuous availability works**
73+
74+
Continuous availability relies on persistent SMB handles. During a transient interruption (typically lasting up to several minutes):
75+
76+
- Open file handles remain valid.
77+
- The SMB client retries pending I/O operations.
78+
- Azure Files transparently resumes operations once connectivity is restored.
79+
80+
Because Azure Files prioritizes correctness and durability, the client waits and retries instead of immediately failing the operation.
81+
82+
**Timeout behavior during connectivity loss**
83+
84+
Due to the retry behavior required for continuous availability, SMB operations might take longer to time out during network interruptions.
85+
86+
For example:
87+
88+
- Windows SMB clients may retry operations for several minutes before returning an error.
89+
- Applications might appear to pause temporarily while the connection is reestablished.
90+
91+
This behavior is by design and helps preserve handle integrity and prevent data corruption. Workloads that frequently disconnect (such as roaming laptops or unstable network connections) might observe longer wait times before failures are returned.
92+
5893
### SMB Multichannel
5994

6095
SMB Multichannel enables an SMB 3.x client to establish multiple network connections to an SMB file share. Azure Files supports SMB Multichannel on SSD file shares. For Windows clients, SMB Multichannel is now enabled by default in all Azure regions.

0 commit comments

Comments
 (0)