Hello everyone
Today I upgraded my local app to meteor 1.4.1.1 and everything went fine until I tried to change the mongo storage engine to WiredTiger.
This is what i’ve done so far:
-‘meteor update’ the project (updated successfully to 1.4.1.1)
-‘meteor’ the project (it run without issues)
-make a mongodump of the database (as stated here: Migrating to Meteor 1.4 )
-‘meteor reset’ the project (according to the migration guide, this should suffice to change to WiredTiger on next startup)
-‘meteor’ the project, to run it again and recreate the database.
But then if I do ‘meteor mongo’ and then ‘db.serverStatus().storageEngine’ it outputs:
{ “name” : “mmapv1”, “supportsCommittedReads” : false, “persistent” : true }
Also if I check the mongo version with ‘db.version()’ it outputs:
3.2.6
So mongo appears to have updated successfully to 3.2.6 but I cannot get meteor to recreate the project db with WiredTiger. I tried this a couple of times for good measure but it stays the same.
Also, this might be a stupid question but I cannot find where the mongo executable that meteor uses is located, where can i find it?
Btw, i’m running this on Windows 10
Thanks!