How to know current storage engine in MongoDB ?
Ideally, db.serverStatus() gives the all the server related information including storage engine details, however below command will specifically tell you the storage engine details. Connect to the respective Replica set member and execute below command. rs1:PRIMARY> db.serverStatus().storageEngine.name wiredTiger OR…