# The client must be created with admin=True because it will create a# table.client=bigtable.Client(project=project_id,admin=True)instance=client.instance(instance_id)connection=happybase.Connection(instance=instance)
print("Creating the {} table.".format(table_name))column_family_name="cf1"connection.create_table(table_name,{column_family_name:dict()}# Use default options.)
print("Writing some greetings to the table.")table=connection.table(table_name)column_name="{fam}:greeting".format(fam=column_family_name)greetings=["Hello World!","Hello Cloud Bigtable!","Hello HappyBase!",]fori,valueinenumerate(greetings):# Note: This example uses sequential numeric IDs for simplicity,# but this can result in poor performance in a production# application. Since rows are stored in sorted order by key,# sequential keys can result in poor distribution of operations# across nodes.## For more information about how to design a Bigtable schema for# the best performance, see the documentation:## https://cloud.google.com/bigtable/docs/schema-designrow_key="greeting{}".format(i)table.put(row_key,{column_name.encode("utf-8"):value.encode("utf-8")})
print("Getting a single greeting by row key.")key="greeting0".encode("utf-8")row=table.row(key)print("\t{}: {}".format(key,row[column_name.encode("utf-8")]))
print("Deleting the {} table.".format(table_name))connection.delete_table(table_name)
すべてを組み合わせる
コメントなしの例を以下に示します。
"""Demonstrates how to connect to Cloud Bigtable and run some basic operations.Prerequisites:- Create a Cloud Bigtable cluster. https://cloud.google.com/bigtable/docs/creating-cluster- Set your Google Application Default Credentials. https://developers.google.com/identity/protocols/application-default-credentials"""importargparsefrom..utilsimportwait_for_tablefromgoogle.cloudimportbigtablefromgoogle.cloudimporthappybasedefmain(project_id,instance_id,table_name):client=bigtable.Client(project=project_id,admin=True)instance=client.instance(instance_id)connection=happybase.Connection(instance=instance)try:print("Creating the {} table.".format(table_name))column_family_name="cf1"connection.create_table(table_name,{column_family_name:dict()}# Use default options.)wait_for_table(instance.table(table_name))print("Writing some greetings to the table.")table=connection.table(table_name)column_name="{fam}:greeting".format(fam=column_family_name)greetings=["Hello World!","Hello Cloud Bigtable!","Hello HappyBase!",]fori,valueinenumerate(greetings):row_key="greeting{}".format(i)table.put(row_key,{column_name.encode("utf-8"):value.encode("utf-8")})print("Getting a single greeting by row key.")key="greeting0".encode("utf-8")row=table.row(key)print("\t{}: {}".format(key,row[column_name.encode("utf-8")]))print("Scanning for all greetings:")forkey,rowintable.scan():print("\t{}: {}".format(key,row[column_name.encode("utf-8")]))finally:print("Deleting the {} table.".format(table_name))connection.delete_table(table_name)connection.close()if__name__=="__main__":parser=argparse.ArgumentParser(description=__doc__,formatter_class=argparse.ArgumentDefaultsHelpFormatter)parser.add_argument("project_id",help="Your Cloud Platform project ID.")parser.add_argument("instance_id",help="ID of the Cloud Bigtable instance to connect to.")parser.add_argument("--table",help="Table to create and destroy.",default="Hello-Bigtable")args=parser.parse_args()main(args.project_id,args.instance_id,args.table)
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["わかりにくい","hardToUnderstand","thumb-down"],["情報またはサンプルコードが不正確","incorrectInformationOrSampleCode","thumb-down"],["必要な情報 / サンプルがない","missingTheInformationSamplesINeed","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-04-02 UTC。"],[[["This guide demonstrates a simple \"hello world\" application using the HappyBase API to interact with Bigtable, showcasing how to set up authentication, connect to an instance, and perform basic table operations."],["The HappyBase package, part of the Google Cloud Client Library for Python, is used for communicating with Bigtable, especially beneficial when moving existing HBase workloads."],["Authentication for a local environment requires installing and initializing the gcloud CLI and setting up Application Default Credentials."],["The application illustrates core functionalities like creating a table with column families, writing data using `Table.put()`, reading data with `Table.row()` and `Table.scan()`, and finally deleting the table."],["The sample uses `Connection.create_table()` to create a table and `Connection.delete_table()` to delete a table, and it also shows how to define column families for organizing data."]]],[]]