https://github.com/elastacloud/livy.net
A C# SDK which accesses Livy and can be used with HDInsight and EMR
https://github.com/elastacloud/livy.net
Last synced: 13 days ago
JSON representation
A C# SDK which accesses Livy and can be used with HDInsight and EMR
- Host: GitHub
- URL: https://github.com/elastacloud/livy.net
- Owner: elastacloud
- License: mit
- Created: 2016-10-15T15:02:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-02-01T11:45:43.000Z (over 2 years ago)
- Last Synced: 2026-02-24T07:44:08.508Z (4 months ago)
- Language: C#
- Homepage:
- Size: 49.8 KB
- Stars: 2
- Watchers: 10
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Livy SDK
A C# SDK facilitate access to Livy and HDInsight (Spark).
See [Livy.io](http://livy.io/) for project home page where [API documentation](https://github.com/cloudera/livy#rest-api) can be found.
See [this page](https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-apache-spark-livy-rest-interface) for more information on how to submit tasks to HDInsight cluster.
## Getting Started
First, initialise the rest clint with Spark cluster credentials:
```csharp
var creds = new NetworkCredential("username", "password", "cluster_name");
ILivyClient client = new LivyRestClient(creds);
```
note that `cluster_name` is not a full url but just an HDInsight cluster name.
Once the client is creating you can start calling methods on `ILivyClient`.