This page shows how to get started with the Cloud Client Libraries for the Cloud Bigtable API. Client libraries make it easier to access Google Cloud APIs from a supported language. Although you can use Google Cloud APIs directly by making raw requests to the server, client libraries provide simplifications that significantly reduce the amount of code you need to write.
Read more about the Cloud Client Libraries and the older Google API Client Libraries in Client libraries explained.
Install the client library
C++
See the Setting up a C++ development environment guide for details about this client library's requirements and install dependencies.
C#
Install-Package Google.Cloud.Bigtable.V2 -Pre Install-Package Google.Cloud.Bigtable.Admin.V2 -Pre
For more information, see Setting Up a C# Development Environment.
Go
go get cloud.google.com/go/bigtable
For more information, see Setting Up a Go Development Environment.
Java
If you are using Maven, add
the following to your pom.xml
file. For more information about
BOMs, see The Google Cloud Platform Libraries BOM.
If you are using Gradle, add the following to your dependencies:
If you are using sbt, add the following to your dependencies:
For more information, see Setting Up a Java Development Environment.
HBase
The Cloud Bigtable HBase client for Java includes the following Maven
artifacts that you can choose to use in your project, depending on your use
case. The 2.x
versions include an HBase async client that the
1.x
versions do not have.
-
bigtable-hbase-1.x
orbigtable-hbase-2.x
: Use one of these artifacts for standalone applications where you control your dependencies. -
bigtable-hbase-1.x-hadoop
orbigtable-hbase-2.x-hadoop
: Use one of these artifacts for Hadoop environments. -
bigtable-hbase-1.x-shaded
orbigtable-hbase-2.x-shaded
: Use one of these artifacts for environments other than Hadoop that require older versions of the HBase client for Java's dependencies, such as protobuf and Guava.
The Bigtable Maven artifacts include the
netty-tcnative-boringssl-static
library, which requires that you use Linux, macOS, or Windows on an x86
64-bit processor.
If your application runs in the App Engine standard environment, you must use a current version of the Java runtime. The Java 7 runtime is deprecated and does not support the HBase client for Java.
The following examples assume that you are using the
bigtable-hbase-1.x
artifact.
If you are using Maven, add
the following to your pom.xml
file. For more information about
BOMs, see The Google Cloud Platform Libraries BOM.
If you are using Gradle, add the following to your dependencies:
If you are using sbt, add the following to your dependencies:
Node.js
npm install --save @google-cloud/bigtable
For more information, see Setting Up a Node.js Development Environment.
PHP
Install and enable the gRPC extension for PHP, then run the following command:composer require google/cloud-bigtable
For more information, see Using PHP on Google Cloud.
Python
pip install --upgrade google-cloud-bigtable
For more information, see Setting Up a Python Development Environment.
Ruby
gem install google-cloud-bigtable
For more information, see Setting Up a Ruby Development Environment.
Set up authentication
To authenticate calls to Google Cloud APIs, client libraries support Application Default Credentials (ADC); the libraries look for credentials in a set of defined locations and use those credentials to authenticate requests to the API. With ADC, you can make credentials available to your application in a variety of environments, such as local development or production, without needing to modify your application code.For production environments, the way you set up ADC depends on the service and context. For more information, see Set up Application Default Credentials.
For a local development environment, you can set up ADC with the credentials that are associated with your Google Account:
-
Install the Google Cloud CLI, then initialize it by running the following command:
gcloud init
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
A sign-in screen appears. After you sign in, your credentials are stored in the local credential file used by ADC.
Use the client library
The following example shows how to use the client library. The example connects to a Bigtable instance and reads a row from a table.
If you haven't stored any data in Bigtable yet, you can use the
cbt
CLI
to create a table and add some data. See the quickstart using
the
cbt
CLI
for
instructions.
C++
C#
Go
Java
HBase
Read more in the API Reference Documentation for the Cloud Bigtable HBase Client for Java.
Node.js
PHP
Python
The Python client library for Bigtable offers two APIs, asyncio
and a synchronous API. If your application is asynchronous, use asyncio
.
Python asyncio
The Python client library for Bigtable offers two APIs, asyncio
and a synchronous API. If your application is asynchronous, use asyncio
.
Ruby
Additional resources
C++
The following list contains links to more resources related to the client library for C++:
C#
The following list contains links to more resources related to the client library for C#:
Go
The following list contains links to more resources related to the client library for Go:
Java
The following list contains links to more resources related to the client library for Java:
HBase
Node.js
The following list contains links to more resources related to the client library for Node.js:
PHP
The following list contains links to more resources related to the client library for PHP:
Python
The following list contains links to more resources related to the client library for Python:
Ruby
The following list contains links to more resources related to the client library for Ruby:
Third-party Cloud Bigtable API client libraries
Scio
The Scio client library provides a Scala API for Dataflow, which can read from and write to Bigtable. The Scio repository provides sample code for a Dataflow pipeline that uses Bigtable.