【Mongodb】事務

 

概述html

  • Mongodb 4.0 支持副本集的多文檔事務
  • Mongodb 4.2 支持分片集羣的多文檔事務

單個Server是不支持使用事務,因此要學習事務,須要搭建一個副本集/分片集羣mongodb

另外須要說明是,單個文檔操做是原子操做,而mongodb是文檔型數據庫,在單個文檔上,能夠嵌入對象/數組這種格式來維護數據的關係,而不該該使用多個集合來維護數據之間的關係。因爲mongodb的這種特性,因此單個文檔操做消除了不少須要事務的需求。shell

 

搭建副本集數據庫

下面以最簡單的方式搭建一個副本集數組

1.  啓動多個mongod實例,這裏使用cmd命令啓動session

start "Mongodb Service - 27017" /min mongod --port 27017 --replSet "rs0" --dbpath "F:\Database\Mongodb\Data27017" --logpath "F:\Database\Mongodb\Log\mongod.27017.log"
start "Mongodb Service - 27018" /min mongod --port 27018 --replSet "rs0" --dbpath "F:\Database\Mongodb\Data27018" --logpath "F:\Database\Mongodb\Log\mongod.27018.log"

參數說明學習

  • replSet : 設置副本集名稱
  • port : 設置端口,由於我是單機,因此只能設置不一樣端口
  • dbpath: 數據文件路徑,注:文件夾必須是存在,mongod不會自動建立
  • logpath: 日誌文件名稱,這個不須要提早新建,若不存在mongod會自動建立

2.  鏈接任意一個實例,這裏就選擇27017這個默認端口測試

mongo

 

3. 啓動副本集url

rs.initiate({
    _id: "rs0",
    members: [
        { _id: 0, host: "127.0.0.1:27017" },
        { _id: 1, host: "127.0.0.1:27018" }
    ]
})

參數說明spa

  • _id : 副本集名稱,就是啓動實例時指定那個名稱
  • members : 這個就是全部成員,_id每一個成員的標識,整數型[0,255]

返回字段"ok" : 1 表明建立成功

rs.initiate({}),這裏除了幾個必須的,都是使用默認配置去啓動,更多配置參數能夠參考replica-configuration

 

4. 查看當前配置信息

rs.conf()

 

5. 查看副本集信息

rs.status()

 

到這,副本集就搭建完成

 

事務

1. 鏈接副本集

mongo mongodb://127.0.0.1:27017,127.0.0.1:27018/?replicaSet=rs0

能夠直接鏈接主副本的實例,也能夠用這種url形式能夠自動鏈接主副本(推薦使用後者)

 

2. 準備2條數據

db.balance.insert({ name: "Wilson", balance: 100 }, { writeConcern: { w: "majority", wtimeout: 2000 } });
db.record.insert({ name: "Wilson", change: 100, balance: 100, }, { writeConcern: { w: "majority", wtimeout: 2000 } });

 

測試正常提交

模擬一個扣錢動做,其中扣款和流水在一個事務裏

session = db.getMongo().startSession({ readPreference: { mode: "primary" } });
balanceCol = session.getDatabase("mongo").balance;
recordCol = session.getDatabase("mongo").record;
session.startTransaction({ readConcern: { level: "local" }, writeConcern: { w: "majority" } });

try {
    balanceCol.updateOne({ "name": "Wilson" }, { $set: { "balance": 50 } });
    recordCol.insertOne({ "name": "Wilson", change: -50, balance: 50 });
} catch (error) {
    session.abortTransaction();
} 
session.commitTransaction();
session.endSession();

 

查看餘額狀況

db.balance.aggregate([
    { $lookup: { from: "record", localField: "name", foreignField: "name", as: "changs" } },
    { $project: { "_id": 0, "changs._id": 0, "changs.name": 0 } },
]);

結果,能夠看到餘額扣了,多了一條流水

{ "name" : "Wilson", "balance" : 50, "changs" : [ { "change" : 100, "balance" : 100 }, { "change" : -50, "balance" : 50 } ] }

 

 

測試失敗回滾

事務內多增長一個插入不存在的集合操做,讓事務報錯

session.startTransaction({ readConcern: { level: "local" }, writeConcern: { w: "majority" } });
try {
    balanceCol.updateOne({ "name": "Wilson" }, { $set: { "balance": -50 } });
    recordCol.insertOne({ "name": "Wilson", change: -50, balance: 0 });
    session.getDatabase("mongo").user.insert({ "time": new Date() });    //多增長操做一個不存在的表
} catch (error) {
    session.abortTransaction();
    throw error;
}
session.commitTransaction();
session.endSession();

 

返回報錯信息,顯示事務被中斷了

2020-04-15T21:37:05.576+0800 E  QUERY    [js] uncaught exception: Error: command failed: {
        "errorLabels" : [
                "TransientTransactionError"
        ],
        "operationTime" : Timestamp(1586957825, 1),
        "ok" : 0,
        "errmsg" : "Transaction 0 has been aborted.",
        "code" : 251,
        "codeName" : "NoSuchTransaction",
        "$clusterTime" : {
                "clusterTime" : Timestamp(1586957825, 1),
                "signature" : {
                        "hash" : BinData(0,"AAAAAAAAAAAAAAAAAAAAAAAAAAA="),
                        "keyId" : NumberLong(0)
                }
        }
} :
_getErrorWithCode@src/mongo/shell/utils.js:25:13
doassert@src/mongo/shell/assert.js:18:14
_assertCommandWorked@src/mongo/shell/assert.js:583:17
assert.commandWorked@src/mongo/shell/assert.js:673:16
commitTransaction@src/mongo/shell/session.js:971:17
@(shell):1:1
 
 

再查看當前餘額狀況

db.balance.aggregate([
    { $lookup: { from: "record", localField: "name", foreignField: "name", as: "changs" } },
    { $project: { "_id": 0, "changs._id": 0, "changs.name": 0 } },
]);

能夠看到,餘額和流水都沒變化。

{ "name" : "Wilson", "balance" : 50, "changs" : [ { "change" : 100, "balance" : 100 }, { "change" : -50, "balance" : 50 } ] }

 

 參考文章


Replication — MongoDB Manual

Transactions — MongoDB Manual

相關文章
相關標籤/搜索