Skip navigation links

Package com.google.cloud.bigtable.data.v2

A client to Cloud Bigtable API.

See: Description

Package com.google.cloud.bigtable.data.v2 Description

A client to Cloud Bigtable API.

The interfaces provided are listed below, along with usage samples.

====================== BaseBigtableDataClient ======================

Service Description: Service for reading from and writing to existing Bigtable tables.

Sample for BaseBigtableDataClient:

 
 try (BaseBigtableDataClient baseBigtableDataClient = BaseBigtableDataClient.create()) {
   TableName tableName = TableName.of("[PROJECT]", "[INSTANCE]", "[TABLE]");
   ByteString rowKey = ByteString.copyFromUtf8("");
   List<Mutation> mutations = new ArrayList<>();
   MutateRowResponse response = baseBigtableDataClient.mutateRow(tableName, rowKey, mutations);
 }
 
 
Skip navigation links

Copyright © 2019 Google LLC. All rights reserved.