db.runCommand({ create: "tscoll", timeseries:{timeField: 'time', metaField: 'id' }})
db.adminCommand({ shardCollection: "test.tscoll", key:
{ time: "hashed" }, numInitialChunks: 6 } ) ** returns
{ "ok" : 0, "errmsg" : "Invalid index spec for time-series collection: \{ time: \"hashed\" }. Indexes on the time field must be ascending or descen\
ding (numbers only): time: \"hashed\"",
"code" : 2,
"codeName" : "BadValue",
"$clusterTime" : {
"clusterTime" : Timestamp(1634110955, 1),
"signature" :
{ "hash" : BinData(0,"AAAAAAAAAAAAAAAAAAAAAAAAAAA="), "keyId" : NumberLong(0) }
},
"operationTime" : Timestamp(1634110952, 1)
}
Rather the user should be asked to shard the collection using range if the shard key happens to be the timeField.
- is duplicated by
-
SERVER-60642 shard time series collection using hash of timefield should return better error message
-
- Closed
-
-
SERVER-60643 shard time series collection using hash of timefield should return better error message
-
- Closed
-
-
SERVER-60644 sharding time series on timeField should return better error message
-
- Closed
-