Skip to content

Commit a6fbdb9

Browse files
committed
Update
1 parent 67c11d6 commit a6fbdb9

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

docs/database-engine/configure-windows/hardware-offload-enable-configuration-option.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Hardware offload enable server configuration option | Microsoft Docs"
2+
title: "Hardware offload enabled server configuration option | Microsoft Docs"
33
description: 'Learn about the "hardware offload enabled" option. '
44
ms.custom: ""
55
ms.date: 08/17/2022
@@ -22,8 +22,6 @@ ms.author: mikeray
2222

2323
The `hardware offload enabled` configuration option allows integrated acceleration and offloading with validated solutions from partners. For more information, see [Integrated acceleration and offloading](../../relational-databases/integrated-acceleration/overview.md).
2424

25-
This is an advanced option.
26-
2725
Changing option requires a restart.
2826

2927
## Example

docs/relational-databases/backup-restore/configure-backup-compression-sql-server.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ author: MashaMSFT
1313
ms.author: mathoma
1414
---
1515
# Configure Backup Compression (SQL Server)
16-
[!INCLUDE [SQL Server](../../includes/applies-to-version/sqlserver.md)]
17-
At installation, backup compression is off by default. The default behavior for backup compression is defined by the **backup compression default** Option server-level configuration option. However, you can override the server-level default when creating a single backup or scheduling a series of routine backups. To change the server-level default, see [View or Configure the backup compression default Server Configuration Option](../../database-engine/configure-windows/view-or-configure-the-backup-compression-default-server-configuration-option.md).
16+
17+
[!INCLUDE [SQL Server](../../includes/applies-to-version/sqlserver.md)]
18+
19+
At installation, backup compression is off by default. The **backup compression default** server-level configuration option sets the default behavior for backup compression. However, you can override the server-level default when creating a single backup or scheduling a series of routine backups. To change the server-level default, see [View or Configure the backup compression default Server Configuration Option](../../database-engine/configure-windows/view-or-configure-the-backup-compression-default-server-configuration-option.md).
1820

1921
## Use integrated acceleration and offloading
2022

docs/relational-databases/integrated-acceleration/overview.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,28 @@ This article explains offloading and acceleration to hardware devices.
2020

2121
[!INCLUDE [sssql22-md](../../includes/sssql22-md.md)] enables integrated offloading and acceleration with [Intel® QuickAssist Technology (QAT)](https://www.intel.com/content/www/us/en/developer/topic-technology/open/quick-assist-technology/overview.html). You can offload backup compression with Intel® QAT to reduce CPU usage, backup completion times, and reduce storage consumption. To back up or restore databases with accelerated compression, install Intel® QAT drivers. For specific information and instructions to use with SQL Server, see [Configure Intel® QuickAssist Technology (QAT)](use-integrated-acceleration-and-offloading.md).
2222

23-
## Use case - Backup and restore operations
23+
## Back up and restore databases
2424

25-
One use case for integrated acceleration and offloading is [backup compression](../backup-restore/backup-compression-sql-server.md). Compression speeds up backup and restore operations, and saves space. Compression also consumes CPU resources which may impact application performance. Because Intel® QAT is an integrated acceleration and offloading solution, you can use it to back up and restore databases with compression, and reduce the load compression places on the CPU.
25+
One use case for integrated acceleration and offloading is [backup compression](../backup-restore/backup-compression-sql-server.md). Compression speeds up back up and restore operations, and saves space. Compression also consumes CPU resources which may impact application performance. Because Intel® QAT is an integrated acceleration and offloading solution, you can use it to back up and restore databases with compression, and reduce the load compression places on the CPU.
2626

2727
Backup compression is enabled by including the COMPRESSION keyword for BACKUP T-SQL commands, and is now available with an ALGORITHM parameter to choose between MS_XPRESS (default) and QAT_DEFLATE. For information about how to compress backups, see [Configure Backup Compression (SQL Server)](../backup-restore/configure-backup-compression-sql-server.md).
2828

2929
## Edition specific capabilities
3030

31-
Integrated acceleration and offloading is supported starting with [!INCLUDE[sssql22-md](../../includes/sssql22-md.md)] on Windows.
31+
Integrated acceleration and offloading are supported starting with [!INCLUDE[sssql22-md](../../includes/sssql22-md.md)] on Windows.
3232

3333
- Enterprise edition supports hardware offloading - can use a physical device. If no device is available, it falls back to software based compression.
3434

3535
- Standard edition supports software compression. Standard edition does not offload to hardware even if a device is available.
3636

37-
- Express edition allow compressed backups to be restored if the drivers are available. All editions lower than SQL Server Standard edition will only allow backups to be performed with the default MS_XPRESS algorithm.
37+
- Express edition allows compressed backups to be restored if the drivers are available. All editions lower than SQL Server Standard edition will only allow backups to be performed with the default MS_XPRESS algorithm.
3838

3939
> [!NOTE]
4040
> Hardware is not required to successfully restore a previously compressed backup, regardless of the SQL Server edition. However, to back up or restore databases with accelerated compression, you must install product drivers.
4141
4242
## Limitations
4343

44-
Integrated acceleration and offloading requires Windows operating system. It is not available on Linux or containers.
44+
Integrated acceleration and offloading are not available on Linux or containers.
4545

4646
## Next steps
4747

docs/relational-databases/integrated-acceleration/use-integrated-acceleration-and-offloading.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ After the drivers are installed, configure the server instance.
7979
8080
1. Restart the SQL Server instance. You need to restart the SQL Server instance after you run a command to `SET HARDWARE_OFFLOAD = ...`.
8181

82-
1. After you restart the instance, query [sys.dm_server_accelerator_status (Transact-SQL)](../system-dynamic-management-views/sys-dm-server-accelerator-status-transact-sql.md) to verify the configuration..
82+
1. After you restart the instance, query [sys.dm_server_accelerator_status (Transact-SQL)](../system-dynamic-management-views/sys-dm-server-accelerator-status-transact-sql.md) to verify the configuration.
8383

8484
## Disable offloading and acceleration
8585

@@ -94,7 +94,7 @@ SET HARDWARE_OFFLOAD = OFF (ACCELERATOR = QAT);
9494

9595
[!INCLUDE [sssql22-md](../../includes/sssql22-md.md)] introduces an `ALGORITHM` extension for backup compression for [BACKUP (Transact-SQL)](../../t-sql/statements/backup-transact-sql.md#compression).
9696

97-
The T-SQL BACKUP command WITH COMPRESSION has been extended to allow for a specified backup compression algorithm. When using Intel® QAT for backup compression acceleration, the algorithm QAT_DEFLATE initiates an Intel® QAT compressed backup if the drivers are available and the SQL Server configuration has been completed successfully as illustrated in the previously documented steps.
97+
The T-SQL BACKUP command WITH COMPRESSION has been extended to allow for a specified backup compression algorithm. For backup compression acceleration, Intel® QAT uses an algorithm called QAT_DEFLATE. If the drivers are available and the SQL Server configuration has been completed successfully as illustrated in the previously documented steps, WITH COMPRESSION initiates an Intel® QAT compressed backup.
9898

9999
> [!NOTE]
100100
> The standard compression algorithm is MS_XPRESS and is default compression option.
@@ -138,7 +138,7 @@ The SQL Server backup compression default behavior can be adjusted. You can chan
138138

139139
The status of these options is reflected in the [sys.configurations (Transact-SQL)](../system-catalog-views/sys-configurations-transact-sql.md). View the configuration of offload and acceleration configuration with the [sys.dm_server_accelerator_status (Transact-SQL)](../system-dynamic-management-views/sys-dm-server-accelerator-status-transact-sql.md) dynamic management view.
140140

141-
The `backup compression algorithm` configuration changes the backup compression algorithm default for backup compression. Changing this option will change the default algorithm when the algorithm is not specified on the `BACKUP .. WITH COMPRESSION` command.
141+
The `backup compression algorithm` configuration changes the backup compression algorithm default for backup compression. Changing this option will change the default algorithm when the algorithm is not specified on the `BACKUP ... WITH COMPRESSION` command.
142142

143143
You can view the current default settings for the backup compression in [sys.configurations (Transact-SQL)](../system-catalog-views/sys-configurations-transact-sql.md), for example:
144144

0 commit comments

Comments
 (0)