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`|| Indicates whether the policy is enabled. This property is required if no query acceleration policy is defined on the external table. |
41
-
| Hot |`Timespan`|| The hot period defined in the query acceleration policy. Minimum value = 1 d. This property is required if no query acceleration policy is defined on the external table. |
42
-
| HotWindows |`DateTime`|| One or more optional time windows. Delta data files created within these time windows are accelerated. |
43
-
| MaxAge |`Timespan`|| The external table returns accelerated data if the last index refresh time is greater than @now - MaxAge. Otherwise, external table operates in nonaccelerated mode. Default is 5 minutes. Minimum is 1 minute. |
| IsEnabled |`Boolean`|| Indicates whether the policy is enabled. This property is required if no query acceleration policy is defined on the external table. |
41
+
| Hot |`Timespan`|| The hot period defined in the query acceleration policy. Minimum value = 1 d. This property is required if no query acceleration policy is defined on the external table. |
42
+
| HotWindows |`DateTime`|| One or more optional time windows. Delta data files created within these time windows are accelerated. |
43
+
| MaxAge |`Timespan`|| The external table returns accelerated data if the last index refresh time is greater than @now - MaxAge. Otherwise, external table operates in nonaccelerated mode. Default is 5 minutes. Minimum is 1 minute. |
44
+
| HotDateTimeColumn |`String`|| 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. |
44
45
45
46
> [!NOTE]
46
47
> 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).
@@ -50,7 +51,7 @@ You must have at least [Database Admin](../access-control/role-based-access-cont
50
51
In case the external table has query acceleration policy defined:
51
52
52
53
```json
53
-
{ "Hot": "1.00:00:00" }
54
+
{ "HotDateTimeColumn": "Col1" }
54
55
```
55
56
56
57
In case the external table doesn't have query acceleration policy defined:
| IsEnabled |`Boolean`|:heavy_check_mark:| Indicates whether the policy is enabled. |
37
-
| Hot |`Timespan`|:heavy_check_mark:| The hot period defined in the query acceleration policy. Minimum value = 1 d. |
38
-
| HotWindows |`DateTime`|| One or more optional time windows. Delta data files created within these time windows are accelerated. |
39
-
| 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. |
40
-
| 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. |
37
+
| Hot |`Timespan`|:heavy_check_mark:| The hot period defined in the query acceleration policy. Minimum value = 1 d. |
38
+
| HotWindows |`DateTime`|| One or more optional time windows. Delta data files created within these time windows are accelerated. |
39
+
| 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
+
| 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. |
47
-
| Hot |`Timespan`|:heavy_check_mark:| The hot period defined in the query acceleration policy. Minimum value = 1 d. |
48
-
| HotWindows |`DateTime`|| One or more optional time windows. Delta data files created within these time windows are accelerated. |
49
-
| 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. |
50
-
| 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
-
| 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. |
47
+
| Hot |`Timespan`|:heavy_check_mark:| The hot period defined in the query acceleration policy. Minimum value = 1 d. |
48
+
| HotWindows |`DateTime`|| One or more optional time windows. Delta data files created within these time windows are accelerated. |
49
+
| 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
+
| 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
+
| 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. |
52
52
::: moniker-end
53
53
> [!NOTE]
54
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).
0 commit comments