An Azure service that offers file shares in the cloud.
Hi reza admin,
Thanks for reaching out in Microsoft Q&A forum,
The main issue boils down to SMB traffic now routing through the slower VPN tunnel and extra network hops instead of zipping directly over the optimized public internet path, and SMB just hates extra latency.
The private endpoint forces all file access (client > VPN > gateway > VNet > storage), adding latency that kills SMB performance Tableau reads tons of small files and metadata, making it extra sensitive. Your split-tunnel setup might also cause inconsistent DNS or routing, where the storage FQDN sometimes hits the public IP instead of private, leading to retransmits. VPN gateway limits and possible MTU fragmentation pile on top.
Check the below steps:
Just run these on a user's machine:
- Check raw SMB speed:
robocopy \\yourstorage.file.core.windows.net\yourshare C:\temp bigfile.bin /MT:32(use a 1GB file). If under 10-20 MB/s, VPN or path is the bottleneck. - Ping latency:
ping <private IP>(find IP withnslookup yourstorage.file.core.windows.net). Over 50ms? That's your SMB killer. - DNS check:
nslookup yourstorage.file.core.windows.net(VPN on vs. off). Must always show private IP when connected. - MTU test:
ping <private IP> -f -l 1400(lower until it passes). Stuck at 1300 or less means fragmentation.
To fix:
- Set VPN adapter MTU to 1400 in Device Manager (under Network Adapters > Advanced).
- In Azure VPN config, force
file.core.windows.netinto the tunnel routes check client'sroute print. - Enable SMB Multichannel on clients (
Enable-WindowsOptionalFeature -Online -FeatureName SMBDirectif needed) for better parallelism. - Monitor gateway metrics in portal for saturation during workflows.
If robocopy is slow but pings are fine, it's probably the gateway SKU consider upgrading. For Tableau, local. hyper caching could bridge the gap short-term.
References:
- Azure Files networking overview
- VPN Gateway FAQ & throughput
- SMB performance tuning
- Private endpoint config
Kindly let us know if the above helps or you need further assistance on this issue.
Please do not forget to
and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.