Bigger than a data warehouse, fast enough for real-time access, and less expensive than running virtual machines. The world-renowned database that powers Google is now available to you worldwide.
Google Cloud Bigtable offers you a fast, fully managed, almost infinitely scalable NoSQL database service that's ideal for web, mobile, and IoT applications requiring terabytes to petabytes of data. Unlike comparable market offerings, Cloud Bigtable doesn't require you to sacrifice speed, scale, or cost efficiency when your applications grow. Cloud Bigtable has been battle-tested at Google for more than 10 years—it's the database driving major applications such as Google Analytics and Gmail.
Cloud Bigtable is a high-availability, fully managed NoSQL database service. Google's experienced engineers work around the clock to keep your Cloud Bigtable servers up and running. With Cloud Bigtable, you'll spend more time developing valuable applications and less time architecting solutions that scale.
Data can be imported to or exported from Cloud Bigtable through simple bulk ingestion tools. You can transition to Cloud Bigtable from privately managed Apache HBase instances, and it's easy to export Cloud Bigtable data to an industry-standard format.
Cloud Bigtable scales to hundreds of petabytes seamlessly and automatically. It delivers low response times to support real-time data ingestion.
Cloud Bigtable is offered through the standard Apache HBase open-source API with simple bulk ingestion and export.
Your data is protected through redundant storage at multiple physical locations. OAuth and granular access controls provide strong, configurable security.
Cloud Bigtable has been used by Google for 10+ years for its largest applications, including search, Gmail, Google Maps, Google Earth, and many others.
There are a few things you need to do to get a working Bigtable project before you can execute code against it:
- Create a Cloud Bigtable cluster
- It's recommended to install the Cloud SDK for Cloud Bigtable
You can create a Maven project with the following dependency:
<dependency>
<groupId>com.google.cloud.bigtable</groupId>
<artifactId>bigtable-hbase-1.0</artifactId>
<version>0.2.2</version>
</dependency>
You'll need Java, Maven, Google Cloud Platform project with a Bigtable cluster (see above for details) and the Google Cloud SDK (see above).
You can run mvn clean install
to create a local version of all of the Cloud Bigtable client binaries.
Additionally, see our example project.
You can run the unit tests via mvn clean install
. There is also a suite of integration tests that connect to a cluster you have access to via the authentication credentials that were loaded via the cloud SDK configuration.
You can run the following command for Java 7:
mvn clean integration-test \
-PbigtableIntegrationTest \
-Dgoogle.bigtable.project.id=[your cloud project id] \
-Dgoogle.bigtable.zone.name=[the zone your cluster is in] \
-Dgoogle.bigtable.cluster.name=[your cluster id] \
-Dgoogle.bigtable.auth.service \
-Dgoogle.bigtable.auth.service.account.enable=true
There is a possiblity that the versions of ALPN supplied above does not work with your JDK. If so, you can see more alternatives on the ALPN version table.
TODO
TODO
TODO
TODO
TODO
- See CONTRIBUTING.md
- See LICENSE