Skip to content

Latest commit

 

History

History
66 lines (47 loc) · 2.17 KB

data-lake-analytics.md

File metadata and controls

66 lines (47 loc) · 2.17 KB
title description author ms.author ms.data ms.topic ms.devlang ms.service ms.date
Azure Data Lake Analytics SDK for .NET
Reference for Azure Data Lake Analytics SDK for .NET
pallavit
pallavit
01/17/2023
reference
dotnet
datalakeanalytics
10/19/2017

Azure Data Lake Analytics libraries for .NET

Overview

Azure Data Lake Analytics is an on-demand analytics job service to simplify big data analytics.

To learn more, see Overview of Microsoft Azure Data Lake Analytics.

Management library

Use the management library to connect to the service and manage analytics jobs.

Install the NuGet package directly from the Visual Studio Package Manager console or with the .NET Core CLI.

Visual Studio Package Manager

Install-Package Microsoft.Azure.Management.DataLake.Analytics
dotnet add package Microsoft.Azure.Management.DataLake.Analytics

Code Example

This example creates the clients to connect with and manage the analytics account.

/*
using AdlClient 
*/

// Setup authentication for this demo
Authentication auth = new Authentication("microsoft.onmicrosoft.com"); // change this to YOUR tenant
auth.Authenticate();

// Identify the accounts
AnalyticsAccountRef adla_account = new AnalyticsAccountRef(subscriptionId, resourceGroup, userName);

// Create the clients
AzureClient az = new AzureClient(auth);
AnalyticsClient adla = new AnalyticsClient(auth, adla_account);

[!div class="nextstepaction"] Explore the management APIs

Samples

Explore more sample .NET code you can use in your apps.