# Google Cloud Bigtable C++ Client Library This directory contains an idiomatic C++ client library for interacting with [Google Cloud Bigtable](https://cloud.google.com/bigtable/), which is Google's NoSQL Big Data database service. It's the same database that powers many core Google services, including Search, Analytics, Maps, and Gmail. While this library is **GA**, please note that the Google Cloud C++ client libraries do **not** follow [Semantic Versioning](http://semver.org/). ## Quickstart The [quickstart/](quickstart/README.md) directory contains a minimal environment to get started using this client library in a larger project. The following "Hello World" program is used in this quickstart, and should give you a taste of this library. ```cc #include "google/cloud/bigtable/table.h" int main(int argc, char* argv[]) try { if (argc != 4) { std::string const cmd = argv[0]; auto last_slash = std::string(cmd).find_last_of('/'); std::cerr << "Usage: " << cmd.substr(last_slash + 1) << " \n"; return 1; } std::string const project_id = argv[1]; std::string const instance_id = argv[2]; std::string const table_id = argv[3]; // Create a namespace alias to make the code easier to read. namespace cbt = ::google::cloud::bigtable; cbt::Table table(cbt::MakeDataConnection(), cbt::TableResource(project_id, instance_id, table_id)); std::string row_key = "r1"; std::string column_family = "cf1"; std::cout << "Getting a single row by row key:" << std::flush; google::cloud::StatusOr> result = table.ReadRow(row_key, cbt::Filter::FamilyRegex(column_family)); if (!result) throw std::move(result).status(); if (!result->first) { std::cout << "Cannot find row " << row_key << " in the table: " << table_id << "\n"; return 0; } cbt::Cell const& cell = result->second.cells().front(); std::cout << cell.family_name() << ":" << cell.column_qualifier() << " @ " << cell.timestamp().count() << "us\n" << '"' << cell.value() << '"' << "\n"; return 0; } catch (google::cloud::Status const& status) { std::cerr << "google::cloud::Status thrown: " << status << "\n"; return 1; } ``` ## More Information - Official documentation about the [Cloud Bigtable][cloud-bigtable-docs] service - [Reference doxygen documentation][doxygen-link] for each release of this client library - Detailed header comments in our \[public `.h`\][source-link] files [cloud-bigtable-docs]: https://cloud.google.com/bigtable/docs/ [doxygen-link]: https://cloud.google.com/cpp/docs/reference/bigtable/latest/