From 2d37e9a9e816b5991e6f66e8f0a7e1a789ef3043 Mon Sep 17 00:00:00 2001 From: Qi Zhang <50432983+Zhangqi910@users.noreply.github.com> Date: Tue, 9 Apr 2024 18:15:45 +0800 Subject: [PATCH 1/3] Update the AS client lib msi's and nugets versions and ms.date metadata to the current date --- docs/analysis-services/client-libraries.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/analysis-services/client-libraries.md b/docs/analysis-services/client-libraries.md index dd705b19..4fa010c4 100644 --- a/docs/analysis-services/client-libraries.md +++ b/docs/analysis-services/client-libraries.md @@ -1,7 +1,7 @@ --- title: "Analysis Services client libraries | Microsoft Docs" description: Download and learn how client libraries are necessary for client applications and tools to connect to Analysis Services. -ms.date: 3/18/2024 +ms.date: 4/9/2024 ms.service: analysis-services ms.custom: ms.topic: conceptual @@ -25,10 +25,10 @@ Client libraries are necessary for client applications and tools to connect to A |Download | Version | |---------|---------| -|[MSOLAP (amd64)](https://go.microsoft.com/fwlink/?linkid=829576) | 16.0.127.28 | -|[MSOLAP (x86)](https://go.microsoft.com/fwlink/?linkid=829575) | 16.0.127.28 | -|[AMO](https://go.microsoft.com/fwlink/?linkid=829578) | 19.77.0.0 | -|[ADOMD](https://go.microsoft.com/fwlink/?linkid=829577) | 19.77.0.0 | +|[MSOLAP (amd64)](https://go.microsoft.com/fwlink/?linkid=829576) | 16.0.130.20 | +|[MSOLAP (x86)](https://go.microsoft.com/fwlink/?linkid=829575) | 16.0.130.20 | +|[AMO](https://go.microsoft.com/fwlink/?linkid=829578) | 19.79.0.0 | +|[ADOMD](https://go.microsoft.com/fwlink/?linkid=829577) | 19.79.0.0 | ### NuGet packages @@ -42,15 +42,15 @@ NuGet package assemblies AssemblyVersion follow semantic versioning: MAJOR.MINOR |Package | Version | |---------|---------| -|[AMO](https://www.nuget.org/packages/Microsoft.AnalysisServices.retail.amd64/) | 19.77.0 | -|[ADOMD](https://www.nuget.org/packages/Microsoft.AnalysisServices.AdomdClient.retail.amd64/) | 19.77.0 | +|[AMO](https://www.nuget.org/packages/Microsoft.AnalysisServices.retail.amd64/) | 19.79.0 | +|[ADOMD](https://www.nuget.org/packages/Microsoft.AnalysisServices.AdomdClient.retail.amd64/) | 19.79.0 | #### AMO and ADOMD .Net Core |Package | Version | |---------|---------| -|[AMO .Net Core](https://www.nuget.org/packages/Microsoft.AnalysisServices.NetCore.retail.amd64) | 19.77.0 | -|[ADOMD .Net Core](https://www.nuget.org/packages/Microsoft.AnalysisServices.AdomdClient.NetCore.retail.amd64) | 19.77.0 | +|[AMO .Net Core](https://www.nuget.org/packages/Microsoft.AnalysisServices.NetCore.retail.amd64) | 19.79.0 | +|[ADOMD .Net Core](https://www.nuget.org/packages/Microsoft.AnalysisServices.AdomdClient.NetCore.retail.amd64) | 19.79.0 | Beginning with AMO (AMO/TOM) and ADOMD .Net Core version 19.48.0.0, HTTP-based communications with cloud services like Power BI and Azure Analysis Services are significantly improved. It's recommended you update to the latest version to take advantage of these performance improvements. From 69798dbeba9c72cd1f4be7cc91da6a345b8f4f96 Mon Sep 17 00:00:00 2001 From: Kay Unkroth Date: Tue, 9 Apr 2024 08:41:05 -0700 Subject: [PATCH 2/3] Update table-partitions.md --- docs/analysis-services/tom/table-partitions.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/analysis-services/tom/table-partitions.md b/docs/analysis-services/tom/table-partitions.md index 0e0c0deb..d8fa720d 100644 --- a/docs/analysis-services/tom/table-partitions.md +++ b/docs/analysis-services/tom/table-partitions.md @@ -137,3 +137,9 @@ As mentioned earlier, the `dataCoverageDefinition` property helps eliminate unne The `DataCoverageDefinition` property on *DirectQuery* partitions enables you to optimize even the largest Power BI data models based on hot partitions in import mode and cold partitions in *DirectQuery* mode by avoiding unnecessary querying of the data source. This source query reduction helps to boost report performance when analyzing hot data. It also helps to decrease the load on the data source, and in this way helps to maximize the scale of your data source. Yet, keep in mind that optimizing a data model by using the `dataCoverageDefinition` property is still an advanced scenario. Make sure you verify the results carefully. + +## Known issues and limitations + +- Currently, the `DataCoverageDefinition` property on *DirectQuery* partitions requires static values, such as RELATED('Date'[Year]) = 2020 or RELATED('Date'[Year]) IN {2020, 2021, 2022}. Dynamic assignments are not supported, such as RELATED('Date'[DateKey]) = TODAY(). + +- Incremental Refresh does not leverage the `DataCoverageDefinition` property. Any data coverage definitions must be reapplied programmatically after Incremental Refresh merged, dropped, or recreated partitions. From 2433be0bc4bb8610b2556f22a7535c6d7b856a73 Mon Sep 17 00:00:00 2001 From: Kay Unkroth Date: Tue, 9 Apr 2024 08:49:54 -0700 Subject: [PATCH 3/3] Update table-partitions.md --- docs/analysis-services/tom/table-partitions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/analysis-services/tom/table-partitions.md b/docs/analysis-services/tom/table-partitions.md index d8fa720d..e97b0144 100644 --- a/docs/analysis-services/tom/table-partitions.md +++ b/docs/analysis-services/tom/table-partitions.md @@ -142,4 +142,4 @@ This source query reduction helps to boost report performance when analyzing hot - Currently, the `DataCoverageDefinition` property on *DirectQuery* partitions requires static values, such as RELATED('Date'[Year]) = 2020 or RELATED('Date'[Year]) IN {2020, 2021, 2022}. Dynamic assignments are not supported, such as RELATED('Date'[DateKey]) = TODAY(). -- Incremental Refresh does not leverage the `DataCoverageDefinition` property. Any data coverage definitions must be reapplied programmatically after Incremental Refresh merged, dropped, or recreated partitions. +- Incremental refresh with real-time data does not leverage the `DataCoverageDefinition` property. If you apply a data coverage definition to a DirectQuery (real-time) partition, Incremental Refresh drops the data coverage definition when recreating the partition.