Microsoft.HBase.Client 0.4.3

dotnet add package Microsoft.HBase.Client --version 0.4.3
NuGet\Install-Package Microsoft.HBase.Client -Version 0.4.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.HBase.Client" Version="0.4.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.HBase.Client --version 0.4.3
#r "nuget: Microsoft.HBase.Client, 0.4.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Microsoft.HBase.Client as a Cake Addin
#addin nuget:?package=Microsoft.HBase.Client&version=0.4.3

// Install Microsoft.HBase.Client as a Cake Tool
#tool nuget:?package=Microsoft.HBase.Client&version=0.4.3

.NET Client Library for Azure HDInsight HBase clusters.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.4.3 173,511 3/6/2017
0.4.2 22,600 9/6/2016
0.4.1 5,441 4/12/2016
0.4.0 1,302 3/31/2016
0.3.0.1 1,710 3/1/2016
0.3.0 4,630 11/30/2015
0.2.2 43,816 3/13/2015
0.2.1 2,399 12/4/2014

Release 0.4.3 - 03/06/2017
1. Mono is supported in VNET mode. Users can run .NET applications directly on Linux using "mono <app name>.exe" command.
2. Fix a bug in stateless scanner API regarding rowPrefix this parameter.
3. Add multi get api (contributed by @danzajork)
4. Make default retry policy to NoRetry.

Release 0.4.2 - 09/06/2016
1. In VNET mode, GetCellsAsync can fetch column values and multiple versions.
2. RequestOptions.TimeoutMillis was not honored in async calls in old versions. This is fixed in the new release.

Release 0.4.1 - 04/11/2016
**new APIs**
1. Add stateless scanner API for VNET mode (filters only supported since HDI 3.3 and later).

https://hbase.apache.org/apidocs/org/apache/hadoop/hbase/rest/package-summary.html#operation_stateless_scanner

Refer to VNETClientTest.cs for examples, filter syntax is the same as the one used in thrift, typical usages:
1. List cells = client.StatelessScannerAsync("tableX","", "filter=PrefixFilter(\'row_prefix\')").Result;
2. List cells = client.StatelessScannerAsync("tableX","row_prefix", "startrow=row_prefix_1&limit=1").Result;

Release 0.4.0 - 03/31/2016
**breaking changes**
1. Users must provide RequestOption in all statefull scan requests.
2. Remove all sync APIs