Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
bigtable
✓ cloud.google.com/go/bigtable
Reads a single row from a Bigtable table.
package main
import (
"context"
"fmt"
"cloud.google.com/go/bigtable"
)
func main() {
ctx := context.Background()
client, err := bigtable.NewClient(ctx, "project", "instance")
if err != nil {
panic(err)
}
defer client.Close()
tbl := client.Open("mytable")
row, _ := tbl.ReadRow(ctx, "r1")
fmt.Println(row)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
1.33.0latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.