Skip navigation links

Package com.google.cloud.bigtable.v2

A client to Google Cloud Bigtable API.

See: Description

Package com.google.cloud.bigtable.v2 Description

A client to Google Cloud Bigtable API.

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

============== BigtableClient ==============

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

Sample for BigtableClient:

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

Copyright © 2017 Google. All rights reserved.