SQL Server found 1 instance(s) of I/O requests taking more than 15 seconds to complete in file [C:\Program Files\Microsoft SQL Server\MSSQL14.SQLEXPRESS\ MSSQL\DATA\tempdb.mdf] from database 2. The OS file identifier is 0x0000000000000A68. The longest I/O offset is: 0x00000007a90000
Any tips, second time it happens? I'm thinking about changing VMs.
Solved! Go to Solution.
Your SQL Server Express instance is experiencing severe delays (over 15 seconds) when working with the tempdb.mdf
file. This indicates a storage performance bottleneck. Your SQL Server Express instance is experiencing severe delays (over 15 seconds) when working with the tempdb.mdf
file. This indicates a storage performance bottleneck.
Troubleshooting SQL Express running on GCE
Check Disk Health:
tempdb.mdf
resides.Review GCE Instance Type:
Optimize tempdb:
tempdb
data files on separate disks for increased I/O bandwidth. Ensure the files are equally sized.tempdb
– their superior random I/O performance is ideal.tempdb
to a suitable size to minimize performance-impacting auto-growth events.Investigate Workload:
sys.dm_exec_requests
and sys.dm_os_wait_stats
to identify queries heavily using tempdb
.Additional Considerations
If the Issue Persists:
Your SQL Server Express instance is experiencing severe delays (over 15 seconds) when working with the tempdb.mdf
file. This indicates a storage performance bottleneck. Your SQL Server Express instance is experiencing severe delays (over 15 seconds) when working with the tempdb.mdf
file. This indicates a storage performance bottleneck.
Troubleshooting SQL Express running on GCE
Check Disk Health:
tempdb.mdf
resides.Review GCE Instance Type:
Optimize tempdb:
tempdb
data files on separate disks for increased I/O bandwidth. Ensure the files are equally sized.tempdb
– their superior random I/O performance is ideal.tempdb
to a suitable size to minimize performance-impacting auto-growth events.Investigate Workload:
sys.dm_exec_requests
and sys.dm_os_wait_stats
to identify queries heavily using tempdb
.Additional Considerations
If the Issue Persists: