There is little documentation available about wiredTiger on MongoDB website and it does not cover many configuration options listed on the wiredTiger website. Based on the wiredtiger documentation (http://source.wiredtiger.com/develop/tune_durability.html#tune_durability_flush_config), I included the transaction durability options as below -
storage: engine: "wiredTiger" wiredTiger: engineConfig: cacheSizeGB: 3 configString: "log=(enabled),transaction_sync=(enabled=true,method=fsync)"
My question is, is this supported? The mongoDB server starts without complaining about this option, but how can I verify that it is in effect?
Thank you