Microsoft.HBase.Client
0.4.0
See the version list below for details.
dotnet add package Microsoft.HBase.Client --version 0.4.0
NuGet\Install-Package Microsoft.HBase.Client -Version 0.4.0
<PackageReference Include="Microsoft.HBase.Client" Version="0.4.0" />
paket add Microsoft.HBase.Client --version 0.4.0
#r "nuget: Microsoft.HBase.Client, 0.4.0"
// Install Microsoft.HBase.Client as a Cake Addin #addin nuget:?package=Microsoft.HBase.Client&version=0.4.0 // Install Microsoft.HBase.Client as a Cake Tool #tool nuget:?package=Microsoft.HBase.Client&version=0.4.0
.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.
**breaking changes**
1. Users must provide RequestOption in all statefull scan requests.
2. Remove all sync APIs
Gateway mode: send scan request to REST server on workernode 0
var client = new HBaseClient(credential);
var scanSettings = new Scanner { batch = 10 };
RequestOptions scanOptions = RequestOptions.GetDefaultOptions();
scanOptions.AlternativeEndpoint = "hbaserest0/";
ScannerInformation scannerInfo = client.CreateScanner(testTableName, scanSettings, scanOptions);
client.DeleteScanner(testTableName, scannerInfo, scanOptions);