0

在为多维数据集创建分区期间,我强制解决了分区处理时间的问题。处理了 51 分钟的不带分区的整个多维数据集。我为度量值组创建了每月分区。我检查了每个度量组的一个月分区的处理时间(持续时间长达 2.30 分钟)。我手动处理了它们,选择了一个分区(每个度量组在同一个月),总共持续了大约 15 分钟。

我假设,当我并行处理分区时,将花费更少的时间。但是我创建了 SSIS 包,添加了“分析服务处理任务”并选择了所有分区。对于这个任务,我选择了processing order = Parallel。我运行了这个包,它花了大约 16 分钟(比手动的顺序分区处理还要多)。

我还尝试使用 XMLA 脚本并行处理分区:

<Batch xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<Parallel>
<Process xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ddl2="http://schemas.microsoft.com/analysisservices/2003/engine/2" xmlns:ddl2_2="http://schemas.microsoft.com/analysisservices/2003/engine/2/2" xmlns:ddl100_100="http://schemas.microsoft.com/analysisservices/2008/engine/100/100" xmlns:ddl200="http://schemas.microsoft.com/analysisservices/2010/engine/200" xmlns:ddl200_200="http://schemas.microsoft.com/analysisservices/2010/engine/200/200">
  <Object>
    <DatabaseID>OLAP_Partitioning_20130222</DatabaseID>
    <CubeID>Usage</CubeID>
    <MeasureGroupID>Partition1</MeasureGroupID>
    <PartitionID>Partition1_20130101-20130131</PartitionID>
  </Object>
  <Type>ProcessFull</Type>
  <WriteBackTableCreation>UseExisting</WriteBackTableCreation>
</Process>
</Parallel>
<Parallel>
<Process xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ddl2="http://schemas.microsoft.com/analysisservices/2003/engine/2" xmlns:ddl2_2="http://schemas.microsoft.com/analysisservices/2003/engine/2/2" xmlns:ddl100_100="http://schemas.microsoft.com/analysisservices/2008/engine/100/100" xmlns:ddl200="http://schemas.microsoft.com/analysisservices/2010/engine/200" xmlns:ddl200_200="http://schemas.microsoft.com/analysisservices/2010/engine/200/200">
  <Object>
    <DatabaseID>OLAP_Partitioning_20130222</DatabaseID>
    <CubeID>Usage</CubeID>
    <MeasureGroupID>Partition2</MeasureGroupID>
    <PartitionID>Partition2_20130101-20130131</PartitionID>
  </Object>
  <Type>ProcessFull</Type>
  <WriteBackTableCreation>UseExisting</WriteBackTableCreation>
</Process>

也花了15多分钟。谁能给我任何提示,我做错了什么?如何优化分区处理时间?

4

0 回答 0