Vertaa semanttisen mallin skaalautuvaa replikaa
Tässä artikkelissa annetaan muutamia Visual Studio -sovellusesimerkkejä semanttisen mallin ominaisuuksien vertailuun, kun Power BI:n semanttisen mallin skaalaus on käytössä.
syncStatus
REST-ohjelmointirajapinta näyttää, onko semanttinen luku- ja vain luku -replikot synkronoitu. Voit myös käyttää Taulukkomuotoinen objektimalli (TOM) -mallia luodaksesi mukautetun sovelluksen, joka muodostaa yhteyden sekä semanttisiin malleihin että vertaa niiden välisiä aikaleima-, metatieto- ja kyselytuloksia.
Sovellus 1 – Tarkista tietokantaobjektin ominaisuudet
Luo alla olevan koodin avulla sovellus, joka tarkistaa semanttisten mallien LastUpdate-, LastProcessed - ja LastSchemaUpdate-ominaisuudet . Ennen kuin sovellus suorittaa tarkistukset, sen on kutsuttava - Refresh()
menetelmää, jotta se saa replikan metatiedot.
Korvaa <WorkspaceUrl>
työtilan URL-osoitteella ja <Semantic modelName>
semanttisen mallisi nimellä.
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();
Sovellus 2 – Vertaa semanttisen mallin metatietoja
Vertaa alla olevan koodin avulla ensisijaisen semanttisen luku/kirjoitusmallin metatietoja vain luku -replikan metatietoihin. Korvaa <WorkspaceUrl>
työtilan URL-osoitteella ja <DatasetName>
semanttisen mallisi nimellä.
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();
Sovellus 3 – Kysele semanttisen mallin tietoja
Käytä tätä ADOMD.NET
replikoiden tietojen kyselemiseen. Korvaa <WorkspaceUrl>
työtilan URL-osoitteella ja <DatasetName>
semanttisen mallisi nimellä.
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();