Retrieve sample keys

Retrieve sample row keys.

Code sample

C++

To learn how to install and use the client library for Bigtable, see Bigtable client libraries.

To authenticate to Bigtable, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

namespace cbt = ::google::cloud::bigtable;
using ::google::cloud::StatusOr;
[](cbt::Table table) {
  StatusOr<std::vector<cbt::RowKeySample>> samples = table.SampleRows();
  if (!samples) throw std::move(samples).status();
  for (auto const& sample : *samples) {
    std::cout << "key=" << sample.row_key << " - " << sample.offset_bytes
              << "\n";
  }
}

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.