2017-10-18 10 views
1

1-どのような使用例で、db.getreplicationinfo()との違いはmongodbの とrs.printreplicationinfo()です。私が両方の コマンドを実行した場合、以下のような結果が返されます。誰も私を説明することができます 2つのコマンドとユースケースの違い。文書によるとmongodbのdb.getreplicationinfo()とrs.printreplicationinfo()の使用例と相違点

(mongod-3.4.9)[PRIMARY:s0] local> db.getReplicationInfo()` 
` 

{ 
    "logSizeMB": 6714.337890625, 
    "usedMB": 208.66, 
    "timeDiff": 2152896, 
    "timeDiffHours": 598.03, 
    "tFirst": "Sat Sep 23 2017 17:48:27 GMT+0530 (IST)", 
    "tLast": "Wed Oct 18 2017 15:50:03 GMT+0530 (IST)", 
    "now": "Wed Oct 18 2017 15:50:09 GMT+0530 (IST)" 
} 


(mongod-3.4.9)[PRIMARY:s0] local> db.getReplicationInfo() 

{ 
    "logSizeMB": 6714.337890625, 
    "usedMB": 208.66, 
    "timeDiff": 2152896, 
    "timeDiffHours": 598.03, 
    "tFirst": "Sat Sep 23 2017 17:48:27 GMT+0530 (IST)", 
    "tLast": "Wed Oct 18 2017:50:03 GMT+0530 (IST)", 
    "now": "Wed Oct 18 2017 15:50:09 GMT+0530 (IST)" 
} 

答えて

1

db.printReplicationInfo()フォーマットとdb.getReplicationInfo(によって返されたデータを印刷する):

db.getReplicationInfoは()スクリプトで使用できるオブジェクト/文書を送り返します。

関連する問題