Microsoft.HBase.Client
0.4.1
See the version list below for details.
dotnet add package Microsoft.HBase.Client --version 0.4.1
NuGet\Install-Package Microsoft.HBase.Client -Version 0.4.1
<PackageReference Include="Microsoft.HBase.Client" Version="0.4.1" />
paket add Microsoft.HBase.Client --version 0.4.1
#r "nuget: Microsoft.HBase.Client, 0.4.1"
// Install Microsoft.HBase.Client as a Cake Addin #addin nuget:?package=Microsoft.HBase.Client&version=0.4.1 // Install Microsoft.HBase.Client as a Cake Tool #tool nuget:?package=Microsoft.HBase.Client&version=0.4.1
.NET Client Library for Azure HDInsight HBase clusters.
Product | Versions 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. |
-
- 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.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