Buffer pool extension (BPE)
T2
Eg:
ALTER SERVER CONFIGURATION
SET BUFFER POOL EXTENSION ON
SIZE = 50 GB
FILENAME = 'F:\SSDCACHE\EXAMPLE.BPE'
Memory is one of the key assets available for the SQL Server
and especially buffer pool memory, which plays key role in storing data pages
and in turn reducing the I/O demand.
The Buffer
Pool Extension feature (BPE) provides the seamless integration of solid-state
drives (SSD) as a nonvolatile random access memory (NvRAM) extension to the
Database Engine buffer pool to significantly improve I/O throughput.
Solid-state
drives (SSD) have some advantages over direct memory :
·
the
higher flexibility of storage options over memory options;
·
is
the greater price efficiency of available storage vs. memory.
·
Buffer
Pool Extension offer:
- · Performance gains on OLTP workloads, mostly on the read-heavy OLTP.
- · No risk of data loss. BPE only deals with clean pages.
- · No application modification required. Just enable the feature and you’re ready to go.
- · Simple feature syntax
T2
Eg:
ALTER SERVER CONFIGURATION
SET BUFFER POOL EXTENSION ON
SIZE = 50 GB
FILENAME = 'F:\SSDCACHE\EXAMPLE.BPE'
Comments
Post a Comment