| Class | Description |
|---|---|
| BigtableClient |
Service Description: Service for reading from and writing to existing Bigtable tables.
|
| BigtableSettings |
Settings class to configure an instance of
BigtableClient. |
| BigtableSettings.Builder |
Builder for BigtableSettings.
|
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);
}
Copyright © 2017 Google. All rights reserved.