Red
Red

Reputation: 1311

Connection to Google Bigtable in Google Dataproc using HBase odbc driver

Has anyone already made a connection to Google Bigtable in Google Cloud Dataproc using any available HBase odbc driver? If yes, can you tell which ODBC you've used? Thanks

Upvotes: 2

Views: 837

Answers (1)

Ramesh Dharan
Ramesh Dharan

Reputation: 895

As noted by Solomon in the comments, we don't have a native ODBC or JDBC driver for Google Cloud Bigtable. If you're building a .NET application and want to interact with Bigtable we recommend using the native client here:

https://github.com/GoogleCloudPlatform/google-cloud-dotnet

Another approach that may work would be to use BigQuery which does have ODBC support and combine that with BigQuery's support for federated data access to Bigtable. That's a bit of a Rube Goldberg construction though, so it may be more painful to set up and debug.

Upvotes: 1

Related Questions