Thanks so much, Maxime!
Sure thing. Our MongoDB version is 3.6.23
We have two sharded clusters, one with user data that users regularly interact with (many reads and writes) and this one, which is more write heavy as it’s more of an activity log that holds records of user actions.
As I mentioned we just added this second shard to this activtydb in order to scale for user growth. For this cluster, we’re running 3 config machines, 2 router machines, and 2 shards both in replica sets that are replicated to 2 secondaries each. As mentioned from our sh.status():
{ "_id" : "rs1", "host" : "rs1/shard1a:27018,shard1b:27018,shard1c:27018" }
{ "_id" : "rs2", "host" : "rs2/shard2a:27018,shard2b:27018,shard2c:27018", "state" : 1 }
Unfortunately, we didn’t see anything suspicious in the logs.