Skip to content

Latest commit

 

History

History
66 lines (49 loc) · 2.29 KB

README.md

File metadata and controls

66 lines (49 loc) · 2.29 KB

Google Cloud Bigtable

Documentation

This directory contains the implementation of the Google Cloud Bigtable C++ client.

Status

This library support Google Cloud Bigtable at the Beta quality level.

Documentation

Full documentation, including a quick start guide is available online.

Release Notes

v0.5.x - TBD

v0.4.x - 2018-12

  • More experimental asynchronous APIs, note that we expect to change all these experimental APIs as described in #1543.
  • Most of the admin operations now have asynchronous APIs.
  • All asynchronous APIs in noex::* return an object through which applications can request cancellation of pending requests.
  • Prototype asynchronous APIs returning a google::cloud::future<T>, applications can attach callbacks and/or block on a google::cloud::future<T>.

v0.3.0 - 2018-11

  • Include an example that illustrates how to use OpenCensus and the Cloud Bigtable C++ client library.
  • Experimental asynchronous APIs.
  • Several cleanups around dependency management with CMake.
  • Jason Zaman contributed improvements and fixes to support soversion numbers with CMake.
  • Lots of improvements to the code coverage in the examples and tests.
  • Fixed multiple documentation issues, including a much better landing page in the Doxygen documentation.

v0.2.0 - 2018-08

  • First Beta release.
  • Completed instance admin APIs.
  • Completed documentation and examples.
  • The API is considered stable, we do not expect any changes before 1.0

v0.1.0 - 2018-03

  • This release implements all the APIs for table and data manipulation in Cloud Bigtable.
  • This release does not implement APIs to manipulate instances, please use the Google Cloud Bigtable command line tool or any of the other programming language APIs instead.
  • Only synchronous (blocking) APIs are implemented, asynchronous APIs are in our roadmap.