Tag: Azure

Azure Synapse Analytics Queries #6 Monitor Data Skew
Azure Synapse Analytics Queries #6 Monitor Data Skew
Blog Posts

Data skew is one of the most important considerations when working with Azure Synapse Analytics. Data skew is the uneven distribution of data across data storage distributions in SQL Dedicated Pools. In this post, you’ll learn how to monitor the data skew in your Azure Synapse Analytics SQL Pool.  About Data Skew  To begin, data skew is when your data is not distributed correctly across different… READ MORE

How to Deploy to Azure with Least Privilege
How to Deploy to Azure with Least Privilege
Blog Posts

In this post we’ll walk through the steps you can take to give a Service Principal a role with “Least Privilege” in Azure. After reading this article you will have a very practical method that you can use over and over again. You will be able to create roles for your Service Principals that will… READ MORE

Deploy Azure Data Services with Terraform
Deploy Azure Data Services with Terraform
Blog Posts

Terraform-based deployment of almost all Azure Data Services (default deployment settings are in the parenthesis): Azure Service Bus (Standard, namespace,topic,subscription, auth. rules) Azure Data Lake Storage (ZRS, Hot, Secured, StandardV2) Azure Data Factory (w/Git or without) Azure Data Factory linked with Data Lake Storage Azure Data Factory Pipeline Azure DataBricks WorkSpace (Standard) Azure EventHub (Standard, namespace) Azure Functions (Dynamic, LRS storage, Python, w/App.Insights or without) Azure Data Explorer (Kusto, Standard_D11_v2, 2 nodes) Azure Analysis Server (backup-enabled, S0, LRS, Standard) Azure Event Grid (domain, EventGridSchema) Azure SQL Server (version 12.0) Azure SQL Database (ElasticPool SKU name, 5 GB max data size) Azure SQL Elastic Pool (StandardPool, LicenseIncluded, 50 eDTU/50GB) Properties and content… READ MORE

Connecting Azure SQL Server with Azure Machine Learning
Connecting Azure SQL Server with Azure Machine Learning
Blog Posts

Accessing data in different data sources is one of the main tasks in machine learning model development life cycle. Let’s discuss one of the most common data accessing scenarios. Scenario : We have to set of relational data points stored in a Azure SQL server to develop a machine learning model using Azure Machine Learning.… READ MORE

Getting Started With Rust and Redis
Getting Started With Rust and Redis
Blog Posts

In this blog post, you will learn how to use the Rust programming language to interact with Redis using the redis-rs client. We will walk through commonly used Redis data structures such as String, Hash, List etc. The Redis client used in the sample code exposes both high and low-level APIs and you will see both these styles in action. Code… READ MORE