Overview
在本指南中,您可以了解如何使用 C 驱动程序执行事务。事务允许您执行一系列操作,这些操作仅在整个事务提交后才会更改数据。如果事务中的任何操作不成功,库就会停止事务,并在所有数据更改变得可见之前将其丢弃。这种功能称为原子性。
在MongoDB中,事务在逻辑会话中运行。 会话是您打算按顺序运行的一组相关读取或写入操作。 会话可为一群组操作启用因果一致性,并允许您在符合ACID的ACID 事务中运行操作,该ACID 事务满足原子性、一致性、隔离性性和持久性的预期。 MongoDBACID 一致性保证ACID 事务操作中涉及的数据保持一致,即使操作遇到意外错误。
使用C驱动程序时,您可以从 mongoc_client_t实例创建新会话。然后,您可以使用生成的 mongoc_client_session_t实例来执行事务。
警告
仅应将 mongoc_client_session_t 与创建它的 mongoc_client_t(或关联的 mongoc_database_t 或 mongoc_collection_t)一起使用。将 mongoc_client_session_t 与其他 mongoc_client_t 一起使用会导致操作错误。
事务 API
在本节中,您可以了解 C 驱动程序提供的事务 API。在开始事务之前,您必须使用 mongoc_client_start_session() 函数在 mongoc_client_t 实例上创建 mongoc_client_session_t。然后,您可以使用以下任一 API 执行事务:
Convenient API
C 驱动程序提供了一个便捷事务 API 来管理事务生命周期。通过使用 mongoc_client_session_with_transaction() 函数实现此 API,以在事务中运行自定义回调。mongoc_client_session_with_transaction() 函数执行以下任务:
启动ACID 事务
通过结束ACID 事务或重试来处理错误,例如当操作导致
TransientTransactionError提交ACID 事务
本指南的事务示例部分演示了如何使用此API来执行ACID 事务。
Core API
或者,您可以在 mongoc_client_session_t实例中使用以下函数,更好地控制ACID 事务生命周期:
function | 说明 |
|---|---|
| Starts a new transaction, configured with the given options, on
this session. Returns false and sets the provided error if there are
invalid arguments, such as a session with a transaction already in progress. To
learn more about this function, see the startTransaction() page in the Server manual. |
| Ends the active transaction for this session. Returns false and sets the provided
error if there is no active transaction for the session or the
transaction has been committed or ended. To learn more about
this function, see the abortTransaction() page in the Server manual. |
| Commits the active transaction for this session. Returns an
error if there is no active transaction for the session or if the
transaction was ended. To learn more about
this function, see the commitTransaction() page in the Server manual. |
| Aborts any transactions in progress and ends this session. Frees
all client resources associated with this session. |
mongoc_client_session_t要学习;了解有关检索 属性和修改可变会话属性的函数的更多信息,请参阅API文档。
事务示例
此示例定义了一个回调函数,用于修改sample_bank数据库集合中银行ACID 事务的数据。 该代码执行以下操作:
定义回调函数,该函数接收
mongoc_client_session_t实例作为参数。创建
mongoc_collection_t实例以访问权限目标集合。指定帐号和账户之间转账的金额。
更新客户余额以反映转账情况。
记录带有时间戳的ACID 事务收据。
如果ACID 事务提交成功,则打印一条消息。
bool transaction_callback (mongoc_client_session_t *session, void *ctx, bson_t **reply, bson_error_t *error) { BSON_UNUSED(ctx); BSON_UNUSED(reply); mongoc_client_t *client = mongoc_client_session_get_client (session); mongoc_collection_t *checking = mongoc_client_get_collection (client, "sample_bank", "checking"); mongoc_collection_t *savings = mongoc_client_get_collection (client, "sample_bank", "savings"); mongoc_collection_t *receipts = mongoc_client_get_collection (client, "sample_bank", "receipts"); const char *account_id = "123456"; int transfer_amount = 1000; bson_t *filter = BCON_NEW ("account_id", BCON_UTF8 (account_id)); bson_t *update_decrement = BCON_NEW ("$inc", "{", "balance", BCON_INT32 (-transfer_amount), "}"); bson_t *update_increment = BCON_NEW ("$inc", "{", "balance", BCON_INT32 (transfer_amount), "}"); if (!mongoc_collection_update_one (checking, filter, update_decrement, NULL, NULL, &error)) { fprintf (stderr, "Failed to update checking account: %s\n", error.message); return false; } if (!mongoc_collection_update_one (savings, filter, update_increment, NULL, NULL, &error)) { fprintf (stderr, "Failed to update savings account: %s\n", error.message); return false; } bson_t *receipt = BCON_NEW ("account_id", BCON_UTF8 (account_id), "amount", BCON_INT32 (transfer_amount), "timestamp", BCON_DATE_TIME (bson_get_monotonic_time ())); if (!mongoc_collection_insert_one (receipts, receipt, NULL, NULL, &error)) { fprintf (stderr, "Failed to insert receipt: %s\n", error.message); return false; } mongoc_collection_destroy (checking); mongoc_collection_destroy (savings); mongoc_collection_destroy (receipts); bson_destroy (filter); bson_destroy (update_decrement); bson_destroy (update_increment); bson_destroy (receipt); printf ("Transaction successful!"); return true; }
然后,运行以下代码以执行ACID 事务。 此代码完成以下操作:
使用
mongoc_client_start_session()函数从客户端创建会话。调用
mongoc_client_session_with_transaction()函数来管理ACID 事务,并将会话和回调作为参数传递。
mongoc_client_session_t *session = mongoc_client_start_session (client, NULL, NULL); if (!session) { fprintf (stderr, "Failed to start session\n"); mongoc_client_destroy (client); return EXIT_FAILURE; } bool result = mongoc_client_session_with_transaction (session, (mongoc_client_session_with_transaction_cb_t) transaction_callback, NULL, NULL, NULL, &error); if (!result) { fprintf (stderr, "Transaction error: %s\n", error.message); } mongoc_client_session_destroy (session); mongoc_client_destroy (client); mongoc_cleanup ();
Transaction successful!
更多信息
要学习;了解有关本指南中提到的概念的更多信息,请参阅MongoDB Server手册中的以下页面:
要学习;了解有关ACID compliance的更多信息,请参阅什么是数据库管理系统中的ACID属性? MongoDB网站上的文章。
API 文档
要学习;了解有关本指南中讨论的任何类型或函数的更多信息,请参阅以下API文档: