sdk/synapse/Microsoft.Azure.Synapse/README.md
Azure Synapse is a limitless analytics service that brings together enterprise data warehousing and Big Data analytics. It gives you the freedom to query data on your terms, using either serverless on-demand or provisioned resources—at scale. Azure Synapse brings these two worlds together with a unified experience to ingest, prepare, manage, and serve data for immediate BI and machine learning needs.
This directory contains the open source subset of the .NET SDK. For documentation of the complete Azure SDK, please see the Microsoft Azure .NET Developer Center.
Use the client library for Synapse to:
The complete Microsoft Azure SDK can be downloaded from the Microsoft Azure Downloads Page and ships with support for building deployment packages, integrating with tooling, rich command line tooling, and more.
For the best development experience, developers should use the official Microsoft NuGet packages for libraries. NuGet packages are regularly updated with new functionality and hotfixes.
Install the Azure Synapse client library for .NET with [NuGet][nuget]:
dotnet add package Microsoft.Azure.Synapse --prerelease
Microsoft Azure Subscription: To call Microsoft Azure services, including Azure Synapse, you need to first create an account. If you do not have an existing Azure account, you may sign up for a free trial or use your MSDN subscriber benefits.
The Azure Synapse client library shares the same Prerequisites as the Microsoft Azure SDK for .NET.
The Microsoft.Azure.Synapse supports the CRUD of spark batch job.
List the spark batch job under the specific spark pool of a specific synapse workspace
ExtendedLivyListBatchResponse listBatchResponse = synapseClient.SparkBatch.List(workspaceName, sparkPoolName);
Console.WriteLine(listBatchResponse.Total);
Create spark batch job under specific workspace and spark pool.
ExtendedLivyBatchRequest batchRequest = new ExtendedLivyBatchRequest()
{
Name = "WordCount_Java",
ClassName = "WordCount",
// The abfss path of the file
File = "abfss://yourfilesystem@{your adlsgen2 account name}.dfs.core.windows.net/{your path}/wordcount.jar",
Args= new List<string>
{
"abfss://yourfilesystem@{your adlsgen2 account name}.dfs.core.windows.net/{your path}/input.txt",
"abfss://yourfilesystem@{your adlsgen2 account name}.dfs.core.windows.net/{your path}/result"
},
DriverCores = 2,
DriverMemory = "4G",
ExecutorCores = 2,
NumExecutors = 2,
ExecutorMemory = "4G",
};
var batchJob = synapseClient.SparkBatch.Create(workspaceName, sparkPoolName, batchRequest);
Console.WriteLine(ExtractSparkBatchJobInfomation(batchJob));
}
Delete a spark batch job with spark batch id under specific workspace and spark pool.
synapseClient.SparkBatch.Delete(workspaceName, sparkPoolName, sparkBatchId);
For information on building the Azure Synapse client library, please see Building the Microsoft Azure SDK for .NET
For information about the target frameworks of the Azure Synapse client library, please refer to the Target Frameworks of the Microsoft Azure SDK for .NET.
Submit spark job.
Please open issue in github.
The next step is adding more examples
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.