如何与Microsoft.AnalysisServices.Tabular并行处理表

时间:2019-05-31 14:40:55

标签: c# multithreading ssas-tabular azure-analysis-services

我需要创建一个程序来并行处理表格模型中包含的表列表的过程。

这是我正在使用的代码:

Server[] svrList = new Server[tables.getTables.Count];
Parallel.For(0, tables.getTables.Count, i =>
            {
                svrList[i] = ServerConnect(connectionString);
                Model m = svrList[i].Databases[database].Model;
                log.Info("process table " + tables.getTables.ElementAt(i).Name);
                Table t = m.Tables[tables.getTables.ElementAt(i).Name];
                t.RequestRefresh(Microsoft.AnalysisServices.Tabular.RefreshType.Full);
                m.SaveChanges();
                log.Info("Finish " + tables.getTables.ElementAt(i).Name);
                svrList[i].Disconnect();
            }
            );

如果一个表失败,则其他表必须正确加载。

在此代码中,表已正确处理,但它们是按顺序处理的。

我为每个表使用与服务器的不同连接,因为如果我使用相同的连接,则会出现此错误:

the connection cannot be used while an xmlreader object is open

我该如何解决这个问题?

谢谢

1 个答案:

答案 0 :(得分:0)

只需将Parallel.For更改为常规for循环,然后将SaveChanges移到循环外即可。 SaveChanges执行所有您排队的命令。默认情况下,它在事务内并行执行此操作。

var conn = ServerConnect(connectionString);
Model m = conn.Databases[database].Model;
for (int i=0; i<tables.getTables.Count; i++)
{
     log.Info("process table " + tables.getTables.ElementAt(i).Name);
     Table t = m.Tables[tables.getTables.ElementAt(i).Name];
     t.RequestRefresh(Microsoft.AnalysisServices.Tabular.RefreshType.Full);
}
m.SaveChanges();
conn.Disconnect();