mongodb cant set 3.4 features after upgrade from 3.2
General
Escalation
General
Escalation
Description
I upgraded my Sharded Cluater to version 3.4 with RocksDB storage engine. The problem is when I run the command: db.adminCommand( { setFeatureCompatibilityVersion: "3.4" } )
on the mongos instance I got: { "ok" : 1 } But when I want to check if it really was done with the command: db_.adminCommand( { getParameter: 1, featureCompatibilityVersion: 1 }_I get the answer: { "ok" : 0, "errmsg" : "no option found to get" }And it did not seem to work.
mongos doesn't seem to support getting that parameter. It can be set from mongos and it will upgrade replica sets/shards to new featureCompatibilityVersion but you can only get that parameter from mongod's (config, data servers). So I suggest to just connect to config replica set and check there.
I upgraded my Sharded Cluater to version 3.4 with RocksDB storage engine. The problem is when I run the command:
db.adminCommand( { setFeatureCompatibilityVersion: "3.4" } )
on the mongos instance I got:
{ "ok" : 1 }
But when I want to check if it really was done with the command:
db_.adminCommand( { getParameter: 1, featureCompatibilityVersion: 1 }_I get the answer:
{ "ok" : 0, "errmsg" : "no option found to get" }And it did not seem to work.