Exam DP203 Hybrid Transactional Analytical: Difference between revisions
Line 30: | Line 30: | ||
I think CosmosDB is implemented with containers. You can enable Azure Synapse Link in them either by configuring this in these containers, or by (as above) configuring it as the resource directly in the portal. | I think CosmosDB is implemented with containers. You can enable Azure Synapse Link in them either by configuring this in these containers, or by (as above) configuring it as the resource directly in the portal. | ||
Or in the Azure CLI: | |||
<pre> | |||
az cosmosdb sql container create --resource-group my-rg --account-name my-cosmos-db --database-name my-db --name my-container --partition-key-path "/productID" --analytical-storage-ttl -1 | |||
</pre> |
Revision as of 21:05, 20 November 2024
Hybrid Transactional / Analytical Processing (HTAP). This is where Azure Synapse Link replicates transactional data into an analysis data store.
From CosmosDB: Azure Synapse Link for CosmosDB
For Azure SQL Database or a SQL Server instance: Azure Synapse Link for SQL (to a dedicated pool, and a spark pool can connect to that dedicated pool).
Azure Synapse Link for Dataverse. Where Dataverse (the Power Platform database) is the OLTP database. Note that here the data goes into Gen2, not a dedicated pool for some reason.
CosmosDB
First need to Enable Azure Synapse Link in the CosmosDBb resource in the Portal by clicking a button.
Alternatively this can be done in the Azure CLI by running:
az cosmosdb update --name my-cosmos-db --resource-group my-rg --enable-analytical-storage true
or Powershell:
Update-AzCosmosDBAccount -Name "my-cosmos-db" -ResourceGroupName "my-rg" -EnableAnalyticalStorage 1
Once enabled it cannot be disabled.
Dynamic Schema Maintenance
As schema changes are made in the upstream OLTP, these get replicated down to the Analysis database. JSON.
There are two types
WellDefined: First instance of data in the JSON determines the data type
FullFidelity: Each instance of data is sent with its data type, so allowing for changes in data type. Is only used with MongoDB.
I think CosmosDB is implemented with containers. You can enable Azure Synapse Link in them either by configuring this in these containers, or by (as above) configuring it as the resource directly in the portal.
Or in the Azure CLI:
az cosmosdb sql container create --resource-group my-rg --account-name my-cosmos-db --database-name my-db --name my-container --partition-key-path "/productID" --analytical-storage-ttl -1