Szemantikai modell kibővített replikáinak összehasonlítása
Ez a cikk néhány Visual Studio-alkalmazást mutat be a szemantikai modell tulajdonságainak összehasonlítására, ha engedélyezve van a Power BI szemantikai modell vertikális felskálázása.
A syncStatus
REST API megmutatja, hogy az írásvédett szemantikai modell és az írásvédett replikák szinkronban vannak-e. A táblázatos objektummodell (TOM) használatával olyan egyéni alkalmazást is létrehozhat, amely mindkét szemantikai modellhez csatlakozik, és összehasonlítja az időbélyegeket, a metaadatokat és a lekérdezési eredményeket közöttük.
1. alkalmazás – Az adatbázis-objektum tulajdonságainak ellenőrzése
Az alábbi kóddal létrehozhat egy alkalmazást, amely ellenőrzi a szemantikai modellek LastUpdate, LastProcessed és LastSchemaUpdate tulajdonságait. Mielőtt az alkalmazás elvégzi az ellenőrzéseket, meg kell hívnia a Refresh()
metódust a replika metaadatainak lekéréséhez.
Cserélje le <WorkspaceUrl>
a munkaterület URL-címét és <Semantic modelName>
a szemantikai modell nevét.
string workspaceUrl = "<WorkspaceUrl>"; // Replace <WorkspaceUrl> with the URL of your workspace
string datasetName = "<Semantic modelName>"; // Replace <Semantic modelName> with the name of your semantic model
using (var workspace_readwrite = new Microsoft.AnalysisServices.Tabular.Server())
using (var workspace_readonly = new Microsoft.AnalysisServices.Tabular.Server())
{
workspace_readwrite.Connect(workspaceUrl + "?readwrite");
workspace_readonly.Connect(workspaceUrl + "?readonly");
var datasetRW = workspace_readwrite.Databases.FindByName(semantic modelName);
var datasetRO = workspace_readonly.Databases.FindByName(semantic modelName);
if (datasetRW == null || datasetRO == null)
{
throw new ApplicationException("Database cannot be found!");
}
datasetRW.Refresh();
datasetRO.Refresh();
Console.WriteLine($"LastUpdated: {datasetRW.LastUpdate} (readwrite) {datasetRO.LastUpdate} (readonly)");
Console.WriteLine($"LastProcessed: {datasetRW.LastProcessed} (readwrite) {datasetRO.LastProcessed} (readonly)");
Console.WriteLine($"LastSchemaUpdate: {datasetRW.LastSchemaUpdate} (readwrite) {datasetRO.LastSchemaUpdate} (readonly)\n");
}
Console.WriteLine("Test completed. Press any key to exit.");
Console.Read();
2. alkalmazás – A szemantikai modell metaadatainak összehasonlítása
Az alábbi kóddal összehasonlíthatja az elsődleges írásvédett szemantikai modell metaadatait egy írásvédett replika metaadataival. Cserélje le <WorkspaceUrl>
a munkaterület URL-címét és <DatasetName>
a szemantikai modell nevét.
string workspaceUrl = "<WorkspaceUrl>"; // Replace <WorkspaceUrl> with the URL of your workspace
string datasetName = "<DatasetName>"; // Replace <DatasetName> with the name of your semantic model
using (var workspace_readwrite = new Microsoft.AnalysisServices.Tabular.Server())
using (var workspace_readonly = new Microsoft.AnalysisServices.Tabular.Server())
{
workspace_readwrite.Connect(workspaceUrl + "?readwrite");
workspace_readonly.Connect(workspaceUrl + "?readonly");
var datasetRW = workspace_readwrite.Databases.FindByName(datasetName);
var datasetRO = workspace_readonly.Databases.FindByName(datasetName);
if (datasetRW == null || datasetRO == null)
{
throw new ApplicationException("Database cannot be found!");
}
string tmslRW = Microsoft.AnalysisServices.Tabular.JsonSerializer.SerializeDatabase(datasetRW);
string tmslRO = Microsoft.AnalysisServices.Tabular.JsonSerializer.SerializeDatabase(datasetRO);
if (tmslRW != tmslRO)
{
Console.WriteLine("The replicas are out of sync.\n");
}
else
{
Console.WriteLine("The replicas are in sync.\n");
}
}
Console.WriteLine("Test completed. Press any key to exit.");
Console.Read();
3. alkalmazás – A szemantikai modell adatainak lekérdezése
A replikákban lévő adatok lekérdezésére használható ADOMD.NET
. Cserélje le <WorkspaceUrl>
a munkaterület URL-címét és <DatasetName>
a szemantikai modell nevét.
string workspaceUrl = "<WorkspaceUrl>"; // Replace WorkspaceUrl with the URL of your workspace
string datasetName = "<DatasetName>"; // Replace DatasetName with the name of your semantic model
string daxQuery = "Evaluate SUMMARIZECOLUMNS(RefreshTimeTable[Time])";
using (var connectionRW = new Microsoft.AnalysisServices.AdomdClient.AdomdConnection())
using (var connectionRO = new Microsoft.AnalysisServices.AdomdClient.AdomdConnection())
{
connectionRW.ConnectionString = $"Data Source={workspaceUrl}?readwrite;Catalog={datasetName}";
connectionRO.ConnectionString = $"Data Source={workspaceUrl}?readonly;Catalog={datasetName}";
connectionRW.Open();
connectionRO.Open();
var cmd = new Microsoft.AnalysisServices.AdomdClient.AdomdCommand(daxQuery);
string resultRW = string.Empty;
string resultRO = string.Empty;
cmd.Connection = connectionRW;
using (var reader = cmd.ExecuteReader())
{
while (reader.Read())
{
resultRW = reader.GetString(0);
}
}
cmd.Connection = connectionRO;
using (var reader = cmd.ExecuteReader())
{
while (reader.Read())
{
resultRO = reader.GetString(0);
}
}
if (resultRW != resultRO)
{
Console.WriteLine("The replicas are out of sync.\n");
}
else
{
Console.WriteLine("The replicas are in sync.\n");
}
}
Console.WriteLine("Test completed. Press any key to exit.");
Console.Read();