使用事务保证附加/写操作的原子性
为了保证附加/写操作的原子性,我们可以使用事务来封装这些操作。以下代码示例展示了如何将多个附加请求放在同一个事务中,以确保它们要么全部成功,要么全部失败:
from google.cloud import bigquery_storage_v1beta1
client = bigquery_storage_v1beta1.BigQueryStorageClient()
table_reference = bigquery_storage_v1beta1.TableReference()
table_reference.project_id = "my-project"
table_reference.dataset_id = "my_dataset"
table_reference.table_id = "my_table"
# Initialize a transaction.
transaction = client.create_read_session(
table_reference,
"projects/{}".format(table_reference.project_id),
format_=bigquery_storage_v1beta1.DataFormat.ARROW,
).stream.transaction
# Add append requests to the transaction.
append_request_1 = bigquery_storage_v1beta1.AppendRowsRequest()
append_request_2 = bigquery_storage_v1beta1.AppendRowsRequest()
# Set the data for the append requests.
# ...
# Add the requests to the transaction.
transaction.append_requests.extend([append_request_1, append_request_2])
# Execute the transaction.
client.commit_read_session(transaction)
在此示例中,我们首先创建一个读取会话,然后从中获取事务。我们然后创建要添加到事务中的附加请求,并将它们添加到该事务的“append_requests”列表中。最后,我们使用“commit_read_session”方法执行事务。
这将确保在一个事务中发送的所有附加请求都已被提交,要么全部成功,要么全部回滚。如果在事务中的任何时刻发生错误,则所有附加请求都将失败,并且回滚到之前的状态。