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
<PackageReference Include="Microsoft.HBase.Client" Version="0.4.3" />
paket add Microsoft.HBase.Client --version 0.4.3
#r "nuget: Microsoft.HBase.Client, 0.4.3"
// 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 | Versions |
---|---|
.NET Framework | net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481 |
-
- EnterpriseLibrary.TransientFaultHandling (>= 6.0.1304)
- protobuf-net (>= 2.0.0.668)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
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