You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| IsEnabled |`Boolean`|:heavy_check_mark:| Indicates whether the policy is enabled. |
37
39
| Hot |`Timespan`|:heavy_check_mark:| The hot period defined in the query acceleration policy. Minimum value = 1 d. |
38
40
| HotWindows |`DateTime`|| One or more optional time windows. Delta data files created within these time windows are accelerated. |
39
41
| MaxAge |`Timespan`|| The external table returns accelerated data if the last index refresh time is greater than @now - MaxAge. Otherwise, the external table operates in non-accelerated mode. Default is 5 minutes. Minimum is 1 minute. This property can also be overridden at query time by using the [`external_table()` function's](../query/external-table-function.md)`MaxAgeOverride` parameter. |
40
42
| HotDateTimeColumn |`String`|| Optional. The name of a datetime column in the Delta table whose values will be used to determine hot-cache eligibility. When set, data files whose rows have values within the configured Hot period (and/or HotWindows) are selected for caching. |
| IsEnabled |`Boolean`|:heavy_check_mark:| Indicates whether the policy is enabled. |
@@ -49,9 +53,12 @@ You must have at least [Database Admin](../access-control/role-based-access-cont
49
53
| MaxAge |`Timespan`|| The external table returns accelerated data if the last index refresh time is greater than @now - MaxAge. Otherwise, the external table operates in non-accelerated mode. Default is 5 minutes. Minimum is 1 minute. This property can also be overridden at query time by using the [`external_table()` function's](../query/external-table-function.md)`MaxAgeOverride` parameter. |
50
54
| ManagedIdentity |`string`|| Optional managed identity for which the query acceleration background operations are executed. This identity must have relevant delta table permissions and must be enabled for AutomatedFlows in the cluster / database managed identity policy. For more information, see [Managed identities overview](/azure/data-explorer/managed-identities-overview). |
51
55
| HotDateTimeColumn |`String`|| Optional. The name of a datetime column in the Delta table whose values will be used to determine hot-cache eligibility. When set, data files whose rows have values within the configured Hot period (and/or HotWindows) are selected for caching. |
56
+
52
57
::: moniker-end
58
+
53
59
> [!NOTE]
54
-
> Query acceleration is applied to data within a specific time period, defined as `timespan`, starting from the `modificationTime` as stated for each file in the [delta log](https://github.com/delta-io/delta/blob/master/PROTOCOL.md#add-file-and-remove-file).
60
+
>
61
+
> Query acceleration is applied to data within a specific time period, based on the `modificationTime` as stated for each file in the [delta log](https://github.com/delta-io/delta/blob/master/PROTOCOL.md#add-file-and-remove-file) by default. You can override the default behavior, by specifying the _HotDateTimeColumn_ property in the policy.
55
62
56
63
### Example
57
64
@@ -72,17 +79,23 @@ The command returns a table with one record that includes the modified policy ob
72
79
| EntityType |`string`| The type of the entity the policy applies to - `ExternalTable`|
0 commit comments